Projects
Extra
yad
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 24
View file
yad.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Fri Nov 25 00:00:00 UTC 2011 - detlef@links2linux.de + +- new upstream version <0.16.1> + + * add initial sorting to yad icon browser + * remove some deprecated calls + * fix build with gtk+-3.0 + +------------------------------------------------------------------- Tue Nov 22 00:00:00 UTC 2011 - detlef@links2linux.de - new upstream version <0.16.0>
View file
yad.spec
Changed
@@ -1,7 +1,7 @@ # norootforbuild Name: yad -Version: 0.16.0 +Version: 0.16.1 Release: 1 Summary: A fork of Zenity with many improvements
View file
yad-0.16.0.tar.bz2/ChangeLog -> yad-0.16.1.tar.bz2/ChangeLog
Changed
@@ -1,3 +1,16 @@ +2011-11-23 19:47 ananasik + + * configure.ac, src/browser.c, src/print.c: add initial sorting to + icon browser. remove deprecated calls + +2011-11-22 05:04 ananasik + + * src/entry.c: fix build with gtk3 + +2011-11-21 15:56 ananasik + + * ChangeLog, NEWS: release 0.16.0 + 2011-11-21 15:48 ananasik * configure.ac, src/print.c: prepare to release
View file
yad-0.16.0.tar.bz2/NEWS -> yad-0.16.1.tar.bz2/NEWS
Changed
@@ -1,3 +1,8 @@ +Version 0.16.1 + - add initial sorting to yad icon browser + - remove some deprecated calls + - fix build with gtk+-3.0 + Version 0.16.0 - add printing dialog - add callbacks for dialog buttons
View file
yad-0.16.0.tar.bz2/configure -> yad-0.16.1.tar.bz2/configure
Changed
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for YAD 0.16.0. +# Generated by GNU Autoconf 2.68 for YAD 0.16.1. # # Report bugs to <http://code.google.com/p/yad/issues/entry>. # @@ -560,8 +560,8 @@ # Identity of this package. PACKAGE_NAME='YAD' PACKAGE_TARNAME='yad' -PACKAGE_VERSION='0.16.0' -PACKAGE_STRING='YAD 0.16.0' +PACKAGE_VERSION='0.16.1' +PACKAGE_STRING='YAD 0.16.1' PACKAGE_BUGREPORT='http://code.google.com/p/yad/issues/entry' PACKAGE_URL='http://code.google.com/p/yad' @@ -1312,7 +1312,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 YAD 0.16.0 to adapt to many kinds of systems. +\`configure' configures YAD 0.16.1 to adapt to many kinds of systems. Usage: $0 OPTION... VAR=VALUE... @@ -1378,7 +1378,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of YAD 0.16.0:";; + short | recursive ) echo "Configuration of YAD 0.16.1:";; esac cat <<\_ACEOF @@ -1488,7 +1488,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -YAD configure 0.16.0 +YAD configure 0.16.1 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1857,7 +1857,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by YAD $as_me 0.16.0, which was +It was created by YAD $as_me 0.16.1, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2672,7 +2672,7 @@ # Define the identity of the package. PACKAGE='yad' - VERSION='0.16.0' + VERSION='0.16.1' cat >>confdefs.h <<_ACEOF @@ -6931,7 +6931,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by YAD $as_me 0.16.0, which was +This file was extended by YAD $as_me 0.16.1, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6998,7 +6998,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/\\""\`\$/\\\\&/g'`" ac_cs_version="\\ -YAD config.status 0.16.0 +YAD config.status 0.16.1 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\"
View file
yad-0.16.0.tar.bz2/configure.ac -> yad-0.16.1.tar.bz2/configure.ac
Changed
@@ -1,4 +1,4 @@ -AC_INIT(YAD, 0.16.0, http://code.google.com/p/yad/issues/entry, yad, http://code.google.com/p/yad) +AC_INIT(YAD, 0.16.1, http://code.google.com/p/yad/issues/entry, yad, http://code.google.com/p/yad) AM_INIT_AUTOMAKE(1.11 foreign dist-xz no-dist-gzip) AM_SILENT_RULES(yes)
View file
yad-0.16.0.tar.bz2/src/browser.c -> yad-0.16.1.tar.bz2/src/browser.c
Changed
@@ -92,6 +92,8 @@ } g_list_free (icons); + gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store), 1, GTK_SORT_ASCENDING); + return store; } @@ -304,8 +306,6 @@ gtk_widget_show_all (data->win); - /* add callbacks for category and icon lists */ - /* run it */ gtk_main ();
View file
yad-0.16.0.tar.bz2/src/entry.c -> yad-0.16.1.tar.bz2/src/entry.c
Changed
@@ -33,7 +33,11 @@ static gboolean combo_activate_cb (GtkWidget *w, GdkEventKey *ev, gpointer data) { +#if GTK_CHECK_VERSION(3,0,0) + if (ev->keyval == GDK_KEY_Return || ev->keyval == GDK_KEY_KP_Enter) +#else if (ev->keyval == GDK_Return || ev->keyval == GDK_KP_Enter) +#endif { gtk_dialog_response (GTK_DIALOG (data), YAD_RESPONSE_OK); return TRUE;
View file
yad-0.16.0.tar.bz2/src/print.c -> yad-0.16.1.tar.bz2/src/print.c
Changed
@@ -335,7 +335,7 @@ case GTK_RESPONSE_OK: /* run print */ print_settings = gtk_print_unix_dialog_get_settings (GTK_PRINT_UNIX_DIALOG (dlg)); page_setup = gtk_print_unix_dialog_get_page_setup (GTK_PRINT_UNIX_DIALOG (dlg)); - job_name = g_strdup_printf ("yad-%s-%d", g_basename (options.common_data.uri), getpid ()); + job_name = g_strdup_printf ("yad-%s-%d", g_path_get_basename (options.common_data.uri), getpid ()); gtk_print_settings_to_file (print_settings, "print-settings", NULL); if (options.print_data.type != YAD_PRINT_RAW) {
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.