Hello community, here is the log from the commit of package gnome-tetravex for openSUSE:Factory checked in at 2014-07-13 17:16:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-tetravex (Old) and /work/SRC/openSUSE:Factory/.gnome-tetravex.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-tetravex" Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-tetravex/gnome-tetravex.changes 2014-05-20 14:25:24.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-tetravex.new/gnome-tetravex.changes 2014-07-13 17:16:20.000000000 +0200 @@ -1,0 +2,6 @@ +Wed Jul 2 16:36:43 UTC 2014 - [email protected] + +- Update to version 3.12.3: + + Restore Ctrl+Arrow hotkeys for moving all pieces at once. + +------------------------------------------------------------------- Old: ---- gnome-tetravex-3.12.2.tar.xz New: ---- gnome-tetravex-3.12.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-tetravex.spec ++++++ --- /var/tmp/diff_new_pack.v4Feek/_old 2014-07-13 17:16:21.000000000 +0200 +++ /var/tmp/diff_new_pack.v4Feek/_new 2014-07-13 17:16:21.000000000 +0200 @@ -17,7 +17,7 @@ Name: gnome-tetravex -Version: 3.12.2 +Version: 3.12.3 Release: 0 Summary: Tetravex Game for GNOME License: GPL-2.0+ ++++++ gnome-tetravex-3.12.2.tar.xz -> gnome-tetravex-3.12.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/Makefile.in new/gnome-tetravex-3.12.3/Makefile.in --- old/gnome-tetravex-3.12.2/Makefile.in 2014-05-12 21:14:48.000000000 +0200 +++ new/gnome-tetravex-3.12.3/Makefile.in 2014-05-30 19:14:46.000000000 +0200 @@ -78,7 +78,7 @@ subdir = . DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) COPYING NEWS \ - compile depcomp install-sh missing + compile install-sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/NEWS new/gnome-tetravex-3.12.3/NEWS --- old/gnome-tetravex-3.12.2/NEWS 2014-05-12 21:14:12.000000000 +0200 +++ new/gnome-tetravex-3.12.3/NEWS 2014-05-30 19:11:24.000000000 +0200 @@ -1,3 +1,8 @@ +GNOME Tetravex 3.12.3 +===================== + +* Restore Ctrl+Arrow hotkeys for moving all pieces at once + GNOME Tetravex 3.12.2 ===================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/aclocal.m4 new/gnome-tetravex-3.12.3/aclocal.m4 --- old/gnome-tetravex-3.12.2/aclocal.m4 2014-05-12 21:14:46.000000000 +0200 +++ new/gnome-tetravex-3.12.3/aclocal.m4 2014-05-30 19:14:45.000000000 +0200 @@ -20,6 +20,146 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) +# gnome-common.m4 +# +# serial 3 +# + +dnl GNOME_COMMON_INIT + +AU_DEFUN([GNOME_COMMON_INIT], +[ + dnl this macro should come after AC_CONFIG_MACRO_DIR + AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0]) + + dnl ensure that when the Automake generated makefile calls aclocal, + dnl it honours the $ACLOCAL_FLAGS environment variable + ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" + if test -n "$ac_macro_dir"; then + ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS" + fi + + AC_SUBST([ACLOCAL_AMFLAGS]) +], +[[$0: This macro is deprecated. You should set put "ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}" +in your top-level Makefile.am, instead, where "m4" is the macro directory set +with AC_CONFIG_MACRO_DIR() in your configure.ac]]) + +AC_DEFUN([GNOME_DEBUG_CHECK], +[ + AC_ARG_ENABLE([debug], + AC_HELP_STRING([--enable-debug], + [turn on debugging]),, + [enable_debug=no]) + + if test x$enable_debug = xyes ; then + AC_DEFINE(GNOME_ENABLE_DEBUG, 1, + [Enable additional debugging at the expense of performance and size]) + fi +]) + +dnl GNOME_MAINTAINER_MODE_DEFINES () +dnl define DISABLE_DEPRECATED +dnl +AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES], +[ + AC_REQUIRE([AM_MAINTAINER_MODE]) + + DISABLE_DEPRECATED="" + if test $USE_MAINTAINER_MODE = yes; then + DOMAINS="GCONF BONOBO BONOBO_UI GNOME LIBGLADE GNOME_VFS WNCK LIBSOUP" + for DOMAIN in $DOMAINS; do + DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES" + done + fi + + AC_SUBST(DISABLE_DEPRECATED) +]) + +dnl GLIB_GSETTINGS +dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether +dnl the schema should be compiled +dnl + +AC_DEFUN([GLIB_GSETTINGS], +[ + m4_pattern_allow([AM_V_GEN]) + AC_ARG_ENABLE(schemas-compile, + AS_HELP_STRING([--disable-schemas-compile], + [Disable regeneration of gschemas.compiled on install]), + [case ${enableval} in + yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; + no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; + *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-compile]) ;; + esac]) + AC_SUBST([GSETTINGS_DISABLE_SCHEMAS_COMPILE]) + PKG_PROG_PKG_CONFIG([0.16]) + AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas]) + if test x$cross_compiling != xyes; then + GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable glib_compile_schemas gio-2.0` + else + AC_PATH_PROG(GLIB_COMPILE_SCHEMAS, glib-compile-schemas) + fi + AC_SUBST(GLIB_COMPILE_SCHEMAS) + if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then + ifelse([$2],,[AC_MSG_ERROR([glib-compile-schemas not found.])],[$2]) + else + ifelse([$1],,[:],[$1]) + fi + + GSETTINGS_RULES=' +.PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas + +mostlyclean-am: clean-gsettings-schemas + +gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE)) + +%.gschema.valid: %.gschema.xml $(gsettings__enum_file) + $(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$< && mkdir -p [$](@D) && touch [$]@ + +all-am: $(gsettings_SCHEMAS:.xml=.valid) +uninstall-am: uninstall-gsettings-schemas +install-data-am: install-gsettings-schemas + +.SECONDARY: $(gsettings_SCHEMAS) + +install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file) + @$(NORMAL_INSTALL) + if test -n "$^"; then \ + test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \ + $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \ + test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \ + fi + +uninstall-gsettings-schemas: + @$(NORMAL_UNINSTALL) + @list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files + test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir) + +clean-gsettings-schemas: + rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) + +ifdef gsettings_ENUM_NAMESPACE +$(gsettings__enum_file): $(gsettings_ENUM_FILES) + $(AM_V_GEN) glib-mkenums --comments '\''<!-- @comment@ -->'\'' --fhead "<schemalist>" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " <value nick='\''@valuenick@'\'' value='\''@valuenum@'\''/>" --vtail " </@type@>" --ftail "</schemalist>" [$]^ > [$]@.tmp && mv [$]@.tmp [$]@ +endif +' + _GSETTINGS_SUBST(GSETTINGS_RULES) +]) + +dnl _GSETTINGS_SUBST(VARIABLE) +dnl Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST +AC_DEFUN([_GSETTINGS_SUBST], +[ +AC_SUBST([$1]) +m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) +] +) + dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) # serial 42 IT_PROG_INTLTOOL @@ -483,146 +623,6 @@ AS_VAR_IF([$1], [""], [$5], [$4])dnl ])# PKG_CHECK_VAR -# gnome-common.m4 -# -# serial 3 -# - -dnl GNOME_COMMON_INIT - -AU_DEFUN([GNOME_COMMON_INIT], -[ - dnl this macro should come after AC_CONFIG_MACRO_DIR - AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0]) - - dnl ensure that when the Automake generated makefile calls aclocal, - dnl it honours the $ACLOCAL_FLAGS environment variable - ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" - if test -n "$ac_macro_dir"; then - ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS" - fi - - AC_SUBST([ACLOCAL_AMFLAGS]) -], -[[$0: This macro is deprecated. You should set put "ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}" -in your top-level Makefile.am, instead, where "m4" is the macro directory set -with AC_CONFIG_MACRO_DIR() in your configure.ac]]) - -AC_DEFUN([GNOME_DEBUG_CHECK], -[ - AC_ARG_ENABLE([debug], - AC_HELP_STRING([--enable-debug], - [turn on debugging]),, - [enable_debug=no]) - - if test x$enable_debug = xyes ; then - AC_DEFINE(GNOME_ENABLE_DEBUG, 1, - [Enable additional debugging at the expense of performance and size]) - fi -]) - -dnl GNOME_MAINTAINER_MODE_DEFINES () -dnl define DISABLE_DEPRECATED -dnl -AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES], -[ - AC_REQUIRE([AM_MAINTAINER_MODE]) - - DISABLE_DEPRECATED="" - if test $USE_MAINTAINER_MODE = yes; then - DOMAINS="GCONF BONOBO BONOBO_UI GNOME LIBGLADE GNOME_VFS WNCK LIBSOUP" - for DOMAIN in $DOMAINS; do - DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES" - done - fi - - AC_SUBST(DISABLE_DEPRECATED) -]) - -dnl GLIB_GSETTINGS -dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether -dnl the schema should be compiled -dnl - -AC_DEFUN([GLIB_GSETTINGS], -[ - m4_pattern_allow([AM_V_GEN]) - AC_ARG_ENABLE(schemas-compile, - AS_HELP_STRING([--disable-schemas-compile], - [Disable regeneration of gschemas.compiled on install]), - [case ${enableval} in - yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; - no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; - *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-compile]) ;; - esac]) - AC_SUBST([GSETTINGS_DISABLE_SCHEMAS_COMPILE]) - PKG_PROG_PKG_CONFIG([0.16]) - AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas]) - if test x$cross_compiling != xyes; then - GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable glib_compile_schemas gio-2.0` - else - AC_PATH_PROG(GLIB_COMPILE_SCHEMAS, glib-compile-schemas) - fi - AC_SUBST(GLIB_COMPILE_SCHEMAS) - if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then - ifelse([$2],,[AC_MSG_ERROR([glib-compile-schemas not found.])],[$2]) - else - ifelse([$1],,[:],[$1]) - fi - - GSETTINGS_RULES=' -.PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas - -mostlyclean-am: clean-gsettings-schemas - -gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE)) - -%.gschema.valid: %.gschema.xml $(gsettings__enum_file) - $(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$< && mkdir -p [$](@D) && touch [$]@ - -all-am: $(gsettings_SCHEMAS:.xml=.valid) -uninstall-am: uninstall-gsettings-schemas -install-data-am: install-gsettings-schemas - -.SECONDARY: $(gsettings_SCHEMAS) - -install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file) - @$(NORMAL_INSTALL) - if test -n "$^"; then \ - test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \ - $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \ - test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \ - fi - -uninstall-gsettings-schemas: - @$(NORMAL_UNINSTALL) - @list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files - test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir) - -clean-gsettings-schemas: - rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) - -ifdef gsettings_ENUM_NAMESPACE -$(gsettings__enum_file): $(gsettings_ENUM_FILES) - $(AM_V_GEN) glib-mkenums --comments '\''<!-- @comment@ -->'\'' --fhead "<schemalist>" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " <value nick='\''@valuenick@'\'' value='\''@valuenum@'\''/>" --vtail " </@type@>" --ftail "</schemalist>" [$]^ > [$]@.tmp && mv [$]@.tmp [$]@ -endif -' - _GSETTINGS_SUBST(GSETTINGS_RULES) -]) - -dnl _GSETTINGS_SUBST(VARIABLE) -dnl Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST -AC_DEFUN([_GSETTINGS_SUBST], -[ -AC_SUBST([$1]) -m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) -] -) - AC_DEFUN([YELP_HELP_INIT], [ AC_REQUIRE([AC_PROG_LN_S]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/configure new/gnome-tetravex-3.12.3/configure --- old/gnome-tetravex-3.12.2/configure 2014-05-12 21:14:47.000000000 +0200 +++ new/gnome-tetravex-3.12.3/configure 2014-05-30 19:14:46.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for GNOME Tetravex 3.12.2. +# Generated by GNU Autoconf 2.69 for GNOME Tetravex 3.12.3. # # Report bugs to <https://bugzilla.gnome.org/>. # @@ -639,8 +639,8 @@ # Identity of this package. PACKAGE_NAME='GNOME Tetravex' PACKAGE_TARNAME='gnome-tetravex' -PACKAGE_VERSION='3.12.2' -PACKAGE_STRING='GNOME Tetravex 3.12.2' +PACKAGE_VERSION='3.12.3' +PACKAGE_STRING='GNOME Tetravex 3.12.3' PACKAGE_BUGREPORT='https://bugzilla.gnome.org/' PACKAGE_URL='https://wiki.gnome.org/Apps/Tetravex' @@ -1356,7 +1356,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures GNOME Tetravex 3.12.2 to adapt to many kinds of systems. +\`configure' configures GNOME Tetravex 3.12.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1422,7 +1422,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GNOME Tetravex 3.12.2:";; + short | recursive ) echo "Configuration of GNOME Tetravex 3.12.3:";; esac cat <<\_ACEOF @@ -1535,7 +1535,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -GNOME Tetravex configure 3.12.2 +GNOME Tetravex configure 3.12.3 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1703,7 +1703,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by GNOME Tetravex $as_me 3.12.2, which was +It was created by GNOME Tetravex $as_me 3.12.3, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2566,7 +2566,7 @@ # Define the identity of the package. PACKAGE='gnome-tetravex' - VERSION='3.12.2' + VERSION='3.12.3' cat >>confdefs.h <<_ACEOF @@ -5785,7 +5785,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by GNOME Tetravex $as_me 3.12.2, which was +This file was extended by GNOME Tetravex $as_me 3.12.3, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -5843,7 +5843,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -GNOME Tetravex config.status 3.12.2 +GNOME Tetravex config.status 3.12.3 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/configure.ac new/gnome-tetravex-3.12.3/configure.ac --- old/gnome-tetravex-3.12.2/configure.ac 2014-05-12 21:13:30.000000000 +0200 +++ new/gnome-tetravex-3.12.3/configure.ac 2014-05-30 19:11:37.000000000 +0200 @@ -1,5 +1,5 @@ AC_PREREQ([2.63]) -AC_INIT([GNOME Tetravex], [3.12.2], [https://bugzilla.gnome.org/], +AC_INIT([GNOME Tetravex], [3.12.3], [https://bugzilla.gnome.org/], [gnome-tetravex], [https://wiki.gnome.org/Apps/Tetravex]) AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz foreign]) AM_SILENT_RULES([yes]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/src/gnome-tetravex.c new/gnome-tetravex-3.12.3/src/gnome-tetravex.c --- old/gnome-tetravex-3.12.2/src/gnome-tetravex.c 2014-05-12 21:16:12.000000000 +0200 +++ new/gnome-tetravex-3.12.3/src/gnome-tetravex.c 2014-05-30 19:15:24.000000000 +0200 @@ -1,4 +1,4 @@ -/* gnome-tetravex.c generated by valac 0.24.0.38-0a8fb, the Vala compiler +/* gnome-tetravex.c generated by valac 0.24.0, the Vala compiler * generated from gnome-tetravex.vala, do not modify */ /* @@ -480,6 +480,10 @@ gtk_application_add_accelerator ((GtkApplication*) self, "Pause", "app.pause", NULL); gtk_application_add_accelerator ((GtkApplication*) self, "F1", "app.help", NULL); gtk_application_add_accelerator ((GtkApplication*) self, "<Primary>q", "app.quit", NULL); + gtk_application_add_accelerator ((GtkApplication*) self, "<Primary>Up", "app.move-up", NULL); + gtk_application_add_accelerator ((GtkApplication*) self, "<Primary>Down", "app.move-down", NULL); + gtk_application_add_accelerator ((GtkApplication*) self, "<Primary>Left", "app.move-left", NULL); + gtk_application_add_accelerator ((GtkApplication*) self, "<Primary>Right", "app.move-right", NULL); _tmp1_ = gtk_builder_new (); builder = _tmp1_; { @@ -504,7 +508,7 @@ e = _inner_error_; _inner_error_ = NULL; _tmp4_ = e->message; - g_error ("gnome-tetravex.vala:76: Unable to build menus: %s", _tmp4_); + g_error ("gnome-tetravex.vala:80: Unable to build menus: %s", _tmp4_); _g_error_free0 (e); } __finally0: @@ -1156,7 +1160,7 @@ _inner_error_ = NULL; _tmp3_ = e; _tmp4_ = _tmp3_->message; - g_warning ("gnome-tetravex.vala:315: Failed to show help: %s", _tmp4_); + g_warning ("gnome-tetravex.vala:319: Failed to show help: %s", _tmp4_); _g_error_free0 (e); } __finally1: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/src/gnome-tetravex.vala new/gnome-tetravex-3.12.3/src/gnome-tetravex.vala --- old/gnome-tetravex-3.12.2/src/gnome-tetravex.vala 2014-03-03 23:44:03.000000000 +0100 +++ new/gnome-tetravex-3.12.3/src/gnome-tetravex.vala 2014-05-30 02:59:02.000000000 +0200 @@ -64,6 +64,10 @@ add_accelerator ("Pause", "app.pause", null); add_accelerator ("F1", "app.help", null); add_accelerator ("<Primary>q", "app.quit", null); + add_accelerator ("<Primary>Up", "app.move-up", null); + add_accelerator ("<Primary>Down", "app.move-down", null); + add_accelerator ("<Primary>Left", "app.move-left", null); + add_accelerator ("<Primary>Right", "app.move-right", null); var builder = new Gtk.Builder (); try diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/src/history.c new/gnome-tetravex-3.12.3/src/history.c --- old/gnome-tetravex-3.12.2/src/history.c 2014-05-12 21:16:12.000000000 +0200 +++ new/gnome-tetravex-3.12.3/src/history.c 2014-05-30 19:15:24.000000000 +0200 @@ -1,4 +1,4 @@ -/* history.c generated by valac 0.24.0.38-0a8fb, the Vala compiler +/* history.c generated by valac 0.24.0, the Vala compiler * generated from history.vala, do not modify */ /* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/src/puzzle-view.c new/gnome-tetravex-3.12.3/src/puzzle-view.c --- old/gnome-tetravex-3.12.2/src/puzzle-view.c 2014-05-12 21:16:12.000000000 +0200 +++ new/gnome-tetravex-3.12.3/src/puzzle-view.c 2014-05-30 19:15:24.000000000 +0200 @@ -1,4 +1,4 @@ -/* puzzle-view.c generated by valac 0.24.0.38-0a8fb, the Vala compiler +/* puzzle-view.c generated by valac 0.24.0, the Vala compiler * generated from puzzle-view.vala, do not modify */ /* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/src/puzzle.c new/gnome-tetravex-3.12.3/src/puzzle.c --- old/gnome-tetravex-3.12.2/src/puzzle.c 2014-05-12 21:16:12.000000000 +0200 +++ new/gnome-tetravex-3.12.3/src/puzzle.c 2014-05-30 19:15:24.000000000 +0200 @@ -1,4 +1,4 @@ -/* puzzle.c generated by valac 0.24.0.38-0a8fb, the Vala compiler +/* puzzle.c generated by valac 0.24.0, the Vala compiler * generated from puzzle.vala, do not modify */ /* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/src/score-dialog.c new/gnome-tetravex-3.12.3/src/score-dialog.c --- old/gnome-tetravex-3.12.2/src/score-dialog.c 2014-05-12 21:16:13.000000000 +0200 +++ new/gnome-tetravex-3.12.3/src/score-dialog.c 2014-05-30 19:15:24.000000000 +0200 @@ -1,4 +1,4 @@ -/* score-dialog.c generated by valac 0.24.0.38-0a8fb, the Vala compiler +/* score-dialog.c generated by valac 0.24.0, the Vala compiler * generated from score-dialog.vala, do not modify */ /* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tetravex-3.12.2/src/theme.c new/gnome-tetravex-3.12.3/src/theme.c --- old/gnome-tetravex-3.12.2/src/theme.c 2014-05-12 21:16:13.000000000 +0200 +++ new/gnome-tetravex-3.12.3/src/theme.c 2014-05-30 19:15:24.000000000 +0200 @@ -1,4 +1,4 @@ -/* theme.c generated by valac 0.24.0.38-0a8fb, the Vala compiler +/* theme.c generated by valac 0.24.0, the Vala compiler * generated from theme.vala, do not modify */ /* -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
