Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Fixing glade file. | Arx Cruz | 2015-10-02 |
| | | | | The entry dialog was with wrong box position | ||
* | This is a simple build fix | Arx Cruz | 2015-09-21 |
| | |||
* | Fix zenity --list | Arx Cruz | 2015-06-23 |
| | | | | For some reason, glade is removing some properties from the xml file | ||
* | Bug #751332 - zenity --forms does not center in the screen | Arx Cruz | 2015-06-23 |
| | |||
* | Bug #638582 - zenity --notification --listen can't show multi line tooltip | Arx Cruz | 2015-06-03 |
| | | | | | This create a new function to call the notify_notification_new handling properly the multi line parser | ||
* | Add the possibility to pass title and the summary to zenity notification | Arx Cruz | 2015-06-03 |
| | | | | | | Now you can use zenity --notification --text="Title\nSummary" and it will use the first string before the first escape \n as the title, and the rest of the string as summary text. | ||
* | Bug #672090 - Impossible to confirm --text-info | Arx Cruz | 2015-05-29 |
| | |||
* | Bug #742963 - Basic notifications do not return | Arx Cruz | 2015-05-29 |
| | |||
* | Fix GLib critical messages | Arx Cruz | 2015-05-29 |
| | |||
* | Fixing deprecated declarations | Arx Cruz | 2015-05-29 |
| | |||
* | Fix uninitialized progress_bar error | Arx Cruz | 2015-05-29 |
| | |||
* | Port to webkit2gtk | Hristo Venev | 2015-05-29 |
| | |||
* | Bug #749359 zenity --list produces incorrect output | Arx Cruz | 2015-05-14 |
| | |||
* | Do not make zenity_util_show_dialog() X11 specific | Javier Jardón | 2015-04-23 |
| | |||
* | Improve some strings | Piotr Drąg | 2015-04-22 |
| | |||
* | option.c: Fixing typo in extra-button option | Arx Cruz | 2015-04-21 |
| | |||
* | Merge branch 'jjardon/no_deprecated' | Arx Cruz | 2015-04-21 |
|\ | | | | | | | | | Conflicts: src/msg.c | ||
| * | src/tree.c: avoid a compilation warning | Javier Jardón | 2015-03-22 |
| | | |||
| * | src/tree.c: Do not use deprecated gtk_tree_view_set_rules_hint() | Javier Jardón | 2015-03-22 |
| | | |||
| * | src/notification.c: Remove non-used variable | Javier Jardón | 2015-03-22 |
| | | |||
| * | Use GtkScale instead deprecated GtkHScale | Javier Jardón | 2015-03-22 |
| | | |||
| * | src/zenity.ui: Use GtkBox instead deprecated Gtk[H|V]Box | Javier Jardón | 2015-03-22 |
| | | |||
| * | forms: Use GtkGrid instead deprecated GtkTable/GtkAlignment | Javier Jardón | 2015-03-22 |
| | | |||
| * | src/password.c: Do not use deprecated GtkAlignment widget | Javier Jardón | 2015-03-22 |
| | | |||
| * | password: Use gtk_box instead gtk_[v|h]box | Javier Jardón | 2015-03-22 |
| | | |||
| * | src/text.c: gtk_widget_override_font instead gtk_widget_modify_font | Javier Jardón | 2015-03-22 |
| | | |||
| * | src/color.c: Port to GtkColorChooserDialog | Javier Jardón | 2015-03-22 |
| | | |||
| * | Rework zenity_util_set_window_icon* to not use stock images | Javier Jardón | 2015-03-22 |
| | | |||
| * | Do not use a stock answer for yes/no buttons | Javier Jardón | 2015-03-22 |
| | | |||
| * | Do not use stock dialog | Javier Jardón | 2015-03-22 |
| | | |||
| * | Do not use an icon for Cancel/OK buttons | Javier Jardón | 2015-03-22 |
| | | | | | | | | | | GTK+ documentation recommends to not use an icons, but use "_OK"/"_Cancel" labels instead | ||
| * | src/zenity.ui: Do not use deprecated stock images | Javier Jardón | 2015-03-22 |
| | | |||
| * | src/zenity.ui: Do not use deprecated stock buttons | Javier Jardón | 2015-03-22 |
| | | |||
| * | src/zenity.ui: Changes when open with Glade 3.18.3 | Javier Jardón | 2015-03-22 |
| | | |||
* | | ADD gchar **extra_label TO struct ZenityData | Gama Anderson | 2015-04-21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this is done to keep the name of the extra buttons ADD general option "extra-button" with string array as argument This will upon consecutive calls save the name of buttons in an array of strings To all MODES, except notification.c and about.c ADD if (data->extra_label) { gint i=0; while(data->extra_label[i]!=NULL){ gtk_dialog_add_button (GTK_DIALOG (dialog), data->extra_label[i], i); i++; } } This add the extra buttons to the dialog. The response is the number of the button To all MODES response, except notification.c and about.c ADD default: if (response < g_strv_length(zen_data->extra_label)) printf("%s\n",zen_data->extra_label[response]); This will print the button name to stdout when they are pressed ADD question option "switch" This will suppress the standard "ok" and "cancel" button in question. This just wort in combination with --extra-button, otherwise error is raised. https://bugzilla.gnome.org/show_bug.cgi?id=118016 | ||
* | | allow build if GDK_WINDOWING_X11 not set | Jason Penney | 2015-04-21 |
| | | |||
* | | Bug #734196 | Andreas Mohr | 2015-04-21 |
|/ | | | | --info destroys X11 primary selection content, and does not document that either | ||
* | Allow user to interact with --text-info --html WebView | Kernc | 2014-10-22 |
| | | | | | | | | | This commit changes the default --text-view behavior (when --html is also in effect) so that the clicked links are opened in the default browser (closes #732626). Additionally, a new option is introduced, --prevent-interaction, which disables above behavior. | ||
* | Bug #700249 - Progress dialog does not wrap | Arx Cruz | 2014-10-22 |
| | |||
* | Better sollution for wrap text | Arx Cruz | 2014-10-22 |
| | | | | | | | This fix is a better sollution for info, error, warning and question dialog. Now the dialog wraps the text properly, and don't allocate a lot of height | ||
* | Bug #734049 - zenity --text-info chokes on some UTF-8 string | Arx Cruz | 2014-10-22 |
| | | | | text-info is now seting the text to UTF-8 properly | ||
* | Allow --text-info to load resources also from relative file:// URIs | Kernc | 2014-10-22 |
| | |||
* | Bug #685051 Adding --mid-search option to --list | Arx Cruz | 2014-10-21 |
| | | | | | | | | | | | | | | This will enable users to find a row with a text matching the middle of the row. Consider the following list: Little piggy one Little piggy two Little piggy three As a user I would expect that entering 'th' would focus the last row, because it's the first one that contains 'th' | ||
* | Fixing g_timeout_add calls | Arx Cruz | 2014-10-21 |
| | |||
* | Fixing remain g_timeout_add | Arx Cruz | 2014-10-21 |
| | | | | Finish switch g_timeout_add for g_timeout_add_seconds | ||
* | Allow --text-info to load resources from absolute file:// URIs | Kernc | 2014-10-21 |
| | |||
* | Added time-remaining support to progress bars | Scott Pakin | 2014-10-21 |
| | | | | | | Introduced a --time-remaining command-line option that uses the time and percent complete to extrapolate the time remaining until progress reaches 100%. | ||
* | Don't quit zenity when the input stream is closed | Emilio Pozuelo Monfort | 2014-10-21 |
| | | | | | | | | When using --listen for a notification, zenity quits when the stream ends. This makes it impossible to read commands from a pipe as in `echo icon:info | zenity --notification --listen'. https://bugzilla.gnome.org/show_bug.cgi?id=525596 | ||
* | Bug 733870 - Segmentation fault on zenity --notification | Arx Cruz | 2014-08-29 |
| | | | | | This fix a problem when user calls --hint=urgency without specify a :NOTIFY_URGENCY | ||
* | Bug #670496 and #673643 | Arx Cruz | 2014-05-29 |
| | | | | | This fix the size of GtkLabel width when you have a big text in the dialog. |