Projects
Extra
yad
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 20
View file
yad.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Fri Sep 09 00:00:00 UTC 2011 - detlef@links2linux.de + +- new upstream version <0.14.2> + + * fix broken dialog text placement + +------------------------------------------------------------------- Mon Sep 05 00:00:00 UTC 2011 - detlef@links2linux.de - new upstream version <0.14.1>
View file
yad.spec
Changed
@@ -1,7 +1,7 @@ # norootforbuild Name: yad -Version: 0.14.1 +Version: 0.14.2 Release: 1 Summary: A fork of Zenity with many improvements
View file
yad-0.14.1.tar.bz2/NEWS -> yad-0.14.2.tar.bz2/NEWS
Changed
@@ -1,3 +1,9 @@ +Version 0.14.2 + - fix broken dialog text placement + +Version 0.14.1 + - fix build with gtk3 + Version 0.14.0 - add regex search to list dialog - add --page option for scale dialog
View file
yad-0.14.1.tar.bz2/README -> yad-0.14.2.tar.bz2/README
Changed
@@ -1,6 +1,6 @@ Yet Another Dialog ======================= -Program allows you to display GTK+ dialog boxes from commandline or +Program allows you to display GTK+ dialog boxes from command line or shell scripts. YAD depends on GTK+ only. Minimal GTK+ version is 2.16.0 This software is licensed under the GPL v.3
View file
yad-0.14.1.tar.bz2/TODO -> yad-0.14.2.tar.bz2/TODO
Changed
@@ -1,4 +1,4 @@ -- Parse ESC sequences in text-info dialog -- Add ability to cutomize yad's look&feel through gtkrc - - +- Parse ESC sequences in text-info dialog (or something like wiki syntax) +- Add multiple progressbars +- DBus support (?) +- Common search dialog for list and text dialogs
View file
yad-0.14.1.tar.bz2/configure -> yad-0.14.2.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.14.1. +# Generated by GNU Autoconf 2.68 for YAD 0.14.2. # # 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.14.1' -PACKAGE_STRING='YAD 0.14.1' +PACKAGE_VERSION='0.14.2' +PACKAGE_STRING='YAD 0.14.2' PACKAGE_BUGREPORT='http://code.google.com/p/yad/issues/entry' PACKAGE_URL='http://code.google.com/p/yad' @@ -1311,7 +1311,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.14.1 to adapt to many kinds of systems. +\`configure' configures YAD 0.14.2 to adapt to many kinds of systems. Usage: $0 OPTION... VAR=VALUE... @@ -1377,7 +1377,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of YAD 0.14.1:";; + short | recursive ) echo "Configuration of YAD 0.14.2:";; esac cat <<\_ACEOF @@ -1485,7 +1485,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -YAD configure 0.14.1 +YAD configure 0.14.2 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1854,7 +1854,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.14.1, which was +It was created by YAD $as_me 0.14.2, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2669,7 +2669,7 @@ # Define the identity of the package. PACKAGE='yad' - VERSION='0.14.1' + VERSION='0.14.2' cat >>confdefs.h <<_ACEOF @@ -6971,7 +6971,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.14.1, which was +This file was extended by YAD $as_me 0.14.2, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -7038,7 +7038,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.14.1 +YAD config.status 0.14.2 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\"
View file
yad-0.14.1.tar.bz2/configure.ac -> yad-0.14.2.tar.bz2/configure.ac
Changed
@@ -1,4 +1,4 @@ -AC_INIT(YAD, 0.14.1, http://code.google.com/p/yad/issues/entry, yad, http://code.google.com/p/yad) +AC_INIT(YAD, 0.14.2, 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.14.1.tar.bz2/src/main.c -> yad-0.14.2.tar.bz2/src/main.c
Changed
@@ -133,6 +133,13 @@ else if (options.data.mouse) gtk_window_set_position (GTK_WINDOW (dlg), GTK_WIN_POS_MOUSE); } + else + { + /* parse geometry, if given. must be after showing widget */ + gtk_widget_realize (dlg); + gtk_window_parse_geometry (GTK_WINDOW (dlg), options.data.geometry); + } + /* create timeout indicator widget */ if (options.data.timeout) @@ -244,7 +251,7 @@ if (options.data.image_on_top) gtk_box_pack_start (GTK_BOX (hbox2), text, TRUE, TRUE, 2); else - gtk_box_pack_start (GTK_BOX (vbox), text, TRUE, TRUE, 2); + gtk_box_pack_start (GTK_BOX (vbox), text, FALSE, FALSE, 2); g_signal_connect (G_OBJECT (text), "size-allocate", G_CALLBACK (text_size_allocate_cb), NULL); @@ -338,13 +345,7 @@ else gtk_widget_hide (gtk_dialog_get_action_area (GTK_DIALOG (dlg))); - gtk_widget_show_all (hbox); - - /* parse geometry, if given. must be after showing widget */ - if (options.data.geometry) - gtk_window_parse_geometry (GTK_WINDOW (dlg), options.data.geometry); - - gtk_widget_show (dlg); + gtk_widget_show_all (dlg); /* set timeout */ if (options.data.timeout)
View file
yad-0.14.1.tar.bz2/src/scale.c -> yad-0.14.2.tar.bz2/src/scale.c
Changed
@@ -59,11 +59,12 @@ page = options.scale_data.page == -1 ? options.scale_data.step * 10 : options.scale_data.page; + /* this type conversion needs only for gtk-2.0 */ adj = (GtkAdjustment *) gtk_adjustment_new ((double) options.scale_data.value, - (double) options.scale_data.min_value, - (double) options.scale_data.max_value, - (double) options.scale_data.step, - (double) page, 0.0); + (double) options.scale_data.min_value, + (double) options.scale_data.max_value, + (double) options.scale_data.step, + (double) page, 0.0); if (options.scale_data.vertical) { w = scale = gtk_vscale_new (GTK_ADJUSTMENT (adj));
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
.