summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* ADD gchar **extra_label TO struct ZenityDataGama Anderson2015-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 setJason Penney2015-04-21
|
* Bug #734196Andreas Mohr2015-04-21
| | | | --info destroys X11 primary selection content, and does not document that either
* Bump to 3.16.1Arx Cruz2015-04-21
|
* Bump to 3.16.0Arx Cruz2015-04-21
|
* Updated Russian translationStas Solovey2015-03-31
|
* Updated Slovak translationDušan Kazik2015-03-23
|
* Updated Danish translationAsk H. Larsen2015-03-21
|
* Updated Italian translationClaudio Arseni2015-03-19
|
* Updated Vietnamese translationTrần Ngọc Quân2015-03-16
| | | | Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
* Updated Swedish translationJosef Andersson2015-03-15
|
* Updated Swedish translationJosef Andersson2015-03-15
|
* Updated Bosnian translationSamir Ribic2015-03-13
|
* Updated Latvian translationRūdolfs Mazurs2015-03-13
|
* Updated Korean translationChangwoo Ryu2015-03-08
|
* Updated Serbian translationМирослав Николић2015-03-04
|
* Updated Galician translationsFran Dieguez2015-03-04
|
* Updated Polish translationPiotr Drąg2015-03-02
|
* Updated Greek translationNick Mantas2015-03-01
|
* Updated Lithuanian translationAurimas Černius2015-02-28
|
* Updated French translationClaude Paroz2015-02-22
|
* Updated Slovenian translationMatej Urbančič2015-02-21
|
* Updated Chinese (Taiwan) translationChao-Hsiung Liao2015-02-21
|
* Updated Swedish translationAnders Jonsson2015-02-19
|
* Updated Brazilian Portuguese translationRafael Ferreira2015-01-09
|
* Updated Basque languageInaki Larranaga Murgoitio2015-01-08
|
* Updated Turkish translationNecdet Yücel2014-12-24
|
* Updated Turkish translationMuhammet Kara2014-12-08
|
* Updated Romanian TranslationDaniel Șerbănescu2014-12-08
|
* Updated Hungarian translationBalázs Úr2014-12-07
|
* Updated Czech translationMarek Černocký2014-11-27
|
* Updated Czech translationMarek Černocký2014-11-26
|
* Update Vietnamese translationTrần Ngọc Quân2014-11-16
| | | | Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
* Updated Norwegian bokmål translation.Kjartan Maraas2014-11-15
|
* update zh_CN translationYunQiang Su2014-11-15
|
* Change Finnish translation team web page to l10n.gnome.orgTimo Jyrinki2014-11-03
|
* Updated Spanish translationDaniel Mustieles2014-10-24
|
* Allow user to interact with --text-info --html WebViewKernc2014-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 wrapArx Cruz2014-10-22
|
* Better sollution for wrap textArx Cruz2014-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 stringArx Cruz2014-10-22
| | | | text-info is now seting the text to UTF-8 properly
* Allow --text-info to load resources also from relative file:// URIsKernc2014-10-22
|
* Bug #685051 Adding --mid-search option to --listArx Cruz2014-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 callsArx Cruz2014-10-21
|
* Fixing remain g_timeout_addArx Cruz2014-10-21
| | | | Finish switch g_timeout_add for g_timeout_add_seconds
* Updated Brazilian Portuguese translationRafael Ferreira2014-10-21
|
* Allow --text-info to load resources from absolute file:// URIsKernc2014-10-21
|
* Added time-remaining support to progress barsScott Pakin2014-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 closedEmilio Pozuelo Monfort2014-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
* Updated Italian translationClaudio Arseni2014-10-05
|
bgstack15