forked from GNOME/zenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.pre-git
2419 lines (1495 loc) · 67.8 KB
/
ChangeLog.pre-git
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-03-16 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2009-03-16 Lucas Rocha <[email protected]>
* NEWS: release 2.26.0
2009-03-08 Lucas Rocha <[email protected]>
* configure.in, src/about.c: disable monk easter egg in order to
remove gnome-canvas dependency (Fixes #571741).
2009-03-08 Lucas Rocha <[email protected]>
* configure.in, src/notification.c: replace deprecated
GTK+ calls (fixes bug #571869).
Patch from Felix Riemann <[email protected]>.
2009-03-08 Lucas Rocha <[email protected]>
* src/zenity.glade: remove deprecated/obsoleted dialog
definition (fixes bug #571869).
Patch from Felix Riemann <[email protected]>.
2008-01-12 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2008-01-12 Lucas Rocha <[email protected]>
* NEWS: release 2.24.1
2009-01-09 Lucas Rocha <[email protected]>
* configure.in: depend on intltool 0.40.0.
2009-01-09 Lucas Rocha <[email protected]>
* src/option.c: translator comment for file-filter option string
(Fixes bug #547202). Patch from Frederic Peters <[email protected]>.
2009-01-09 Lucas Rocha <[email protected]>
* src/tree.c:
GNOME Goal: Remove deprecated GLib symbols (Fixes bug #560452).
Patch from Frederic Peters <[email protected]>.
2009-01-09 Lucas Rocha <[email protected]>
* src/main.c:
* src/option.h:
GNOME Goal: Clean up GLib and GTK+ includes (Fixes bug #563855).
Patch from Pedro Fragoso <[email protected]>.
2009-01-09 Lucas Rocha <[email protected]>
* src/fileselection.c (zenity_fileselection): correctly handle
--filename option on file selection mode (Fixes bug #564552).
Patch from Gilles Detillieux.
2009-01-08 Lucas Rocha <[email protected]>
* data/zenity.1: document --timeout (Fixes bug #565133).
Patch from Luca Bruno <[email protected]>.
2008-09-23 Vincent Untz <[email protected]>
* configure.in: post-release bump to 2.24.1.
==================== 2.24.0 ====================
2008-09-22 Vincent Untz <[email protected]>
* NEWS:
* configure.in: version 2.24.0
2008-06-16 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2008-06-16 Lucas Rocha <[email protected]>
* NEWS: release 2.23.3.1
* configure.in: depend on intltool 0.40.0.
2008-06-16 Lucas Rocha <[email protected]>
* NEWS: release 2.23.3
2008-06-16 Lucas Rocha <[email protected]>
* NEWS: release 2.23.3
2008-06-03 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2008-06-03 Lucas Rocha <[email protected]>
* NEWS: release 2.23.2
2008-05-31 Lucas Rocha <[email protected]>
* src/zenity.glade: set all dialogs in glade file as resizable in
order to have them respecting the --width and --height command-line
options (Fixes bug #529452).
2008-04-21 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2008-04-21 Lucas Rocha <[email protected]>
* NEWS: release 2.23.1
2008-04-21 Lucas Rocha <[email protected]>
Add support for file filter in file selection dialog through the new
--file-filter command line option (Fixes bug #409843). Patch from
Ricardo Cruz <[email protected]>.
* src/option.c, src/zenity.h: added supporting variable and new
GOptionEntry entry for the new command line option.
* src/fileselection.c (zenity_fileselection): add file filters based
on command line input.
2008-04-12 Karsten Braeckelmann <[email protected]>
* HACKING: Fix typo and remove obsolete freeze note.
Fixes bug #527345. Patch by [email protected].
2008-04-10 Lucas Rocha <[email protected]>
* src/tree.c (zenity_tree_dialog_get_selected,
zenity_tree_dialog_toggle_get_selected): use g_value_dup_string when
applicable (Fixes bug #527258). Patch from [email protected].
2008-03-30 Lucas Rocha <[email protected]>
* src/msg.c (zenity_msg_construct_question_dialog): fix memory leak on
custom labels (Fixes bug #526627). Patch by [email protected].
2008-03-30 Lucas Rocha <[email protected]>
Allow question dialogs to use custom button label text (Fixes
bug #335763). Patch from Cosimo Cecchi <[email protected]> and
Thomas Thurman <[email protected]>.
* src/msg.c (zenity_msg_construct_question_dialog), (zenity_msg):
dynamically add dialog buttons with provided labels.
* src/option.c (zenity_option_free): free input labels.
(zenity_question_post_callback): set button labels provided by the
respective command line options.
* src/zenity.glade: remove pre-defined dialog button from question
dialog.
* src/zenity.h: added ok_label and cancel_label to ZenityMsgData.
2008-03-17 Lucas Rocha <[email protected]>
* src/option.c: added arg_description for --timeout option (Fixes
bug #516876). Patch from Luca Ferretti <[email protected]>.
2008-03-17 Lucas Rocha <[email protected]>
* src/scale.c (zenity_scale): set value range before setting value
in order to correctly set initial state (Fixes bug #521574).
2008-03-17 Lucas Rocha <[email protected]>
* src/option.c: added comment on a string in order clarify its
meaning for translators (Fixes bug #520847).
2008-03-10 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2008-03-10 Lucas Rocha <[email protected]>
* NEWS: release 2.22.0
2007-02-25 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2008-02-25 Lucas Rocha <[email protected]>
* NEWS: release 2.21.1
2007-12-05 Claude Paroz <[email protected]>
* NEWS: Converted to UTF-8.
2007-09-17 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-09-17 Lucas Rocha <[email protected]>
* NEWS: release 2.20.0
2007-09-04 Lucas Rocha <[email protected]>
* MAINTAINERS: use new standard/required format.
2007-08-13 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-08-13 Lucas Rocha <[email protected]>
* NEWS: release 2.19.2
2007-08-13 Lucas Rocha <[email protected]>
* src/*.c: added timeout option to all dialogs (Fixes bug #160654).
Based on patch from Muthiah Annamalai <[email protected]>.
2007-08-13 Lucas Rocha <[email protected]>
* src/tree.c: fix critical warning when using checkbox and radiobox in
list dialog (Fixes bug #453713).
2007-05-27 Lucas Rocha <[email protected]>
* src/tree.c: fix broken handling of input from pipes in list
dialog (Fixes bug #343684).
2007-05-27 Lucas Rocha <[email protected]>
* src/text.c: correctly handle UTF-8 input text in the text info
dialog (Fixes bug #407275).
2007-05-27 Lucas Rocha <[email protected]>
* src/main.c: initialize GTK+ before parsing command line options to
better handle errors on display setting (Fixes bug #410055).
2007-05-15 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-05-15 Lucas Rocha <[email protected]>
* NEWS: release 2.19.1
2007-05-15 Lucas Rocha <[email protected]>
* src/text.c (zenity_text_dialog_response): fix seg fault when
outputing files with special printf format strings (Fixes
bug #405006). Patch from Mariano Suárez-Alvarez.
2007-05-15 Lucas Rocha <[email protected]>
* src/tree.c (zenity_tree_dialog_toggle_get_selected): fix index
handling for --print-column (Fixes bug #420396).
2007-05-15 Lucas Rocha <[email protected]>
* configure.ac: make libnotify support an option (Fixes bug #346843).
Patch from Saleem Abdulrasool <[email protected]>.
2007-05-15 Lucas Rocha <[email protected]>
* src/calendar.c (zenity_calendar, zenity_calendar_double_click):
double-click on day results in dialog response (Fixes bug #395152).
Patch from Tom Tromey <[email protected]>.
2007-05-14 Lucas Rocha <[email protected]>
* src/progress.c (zenity_progress_handle_stdin), src/option.c
(zenity_create_context), src/about.c, src/notification.c
(zenity_notification_handle_stdin): general cleanups for
build warnings (Fixes bug #416196). Patch from Kjartan
Maraas <[email protected]>.
2007-05-14 Lucas Rocha <[email protected]>
* data/zenity.1: man page update (Fixes bug #436187). Patch from
Sven Arvidsson <[email protected]>.
2007-04-09 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-04-09 Lucas Rocha <[email protected]>
* NEWS: release 2.18.1
2007-03-11 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-03-11 Lucas Rocha <[email protected]>
* NEWS: release 2.18.0
2007-02-26 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-02-26 Lucas Rocha <[email protected]>
* NEWS: release 2.17.92
2007-02-12 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-02-12 Lucas Rocha <[email protected]>
* NEWS: release 2.17.91
2007-01-22 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-01-22 Lucas Rocha <[email protected]>
* NEWS: release 2.17.90
2007-01-08 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2007-01-08 Lucas Rocha <[email protected]>
* NEWS: release 2.17.3
2006-12-18 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2006-12-18 Lucas Rocha <[email protected]>
* NEWS: release 2.17.2
2006-12-04 Lucas Rocha <[email protected]>
* configure.in: post-release version bump.
2006-12-04 Lucas Rocha <[email protected]>
* NEWS: release 2.17.1
2006-12-04 Lucas Rocha <[email protected]>
* src/option.c: complete list dialog options with respective arguments
(Fixes bug #353320). Patch from Glynn Foster <[email protected]>.
2006-12-04 Lucas Rocha <[email protected]>
* src/zenity.glade: make dialog text selectable on message dialogs
(error, warning, info, and question) (Fixes bug #352910). Patch
from Greg Hudson <[email protected]>.
2006-12-03 Lucas Rocha <[email protected]>
* src/zenity.glade: merged identic i18n strings (Fixes bug #334361).
2006-12-02 Lucas Rocha <[email protected]>
* COPYING: revert back to GNU LGPL.
2006-12-02 Lucas Rocha <[email protected]>
* src/zenity.h, src/progress.c, src/option.c: add "auto-kill" option
to progress dialog. Now the user can choose whether to kill parent
process or not (Fixes bug #310824). Patch from Diego Escalante Urrelo
2006-12-02 Lucas Rocha <[email protected]>
* src/zenity.glade: don't show cancel button on warning dialog (Fixes
bug #324100). Patch from Claudio Saavedra
2006-10-02 Guilherme de S. Pastore <[email protected]>
* configure.in: post-release version bump.
2006-10-02 Guilherme de S. Pastore <[email protected]>
* NEWS: release 2.16.1.
2006-09-04 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-09-04 Lucas Rocha <[email protected]>
* NEWS: Release 2.16.0
2006-08-21 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-08-21 Lucas Rocha <[email protected]>
* NEWS: Release 2.15.92
2006-08-15 Kjartan Maraas <[email protected]>
* configure.in: Fix intltool req.
* po/nb.po: Update this.
2006-08-08 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-07-28 Lucas Rocha <[email protected]>
* configure.in: Release 2.15.91
* NEWS: Update.
2006-07-28 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-07-28 Lucas Rocha <[email protected]>
* configure.in: Release 2.15.90
* NEWS: Update.
* po/POTFILES.in: remove eggtrayicon.c reference.
2006-07-27 Lucas Rocha <[email protected]>
* src/notification.c (-set_scaled_pixbuf,
+zenity_notification_icon_update,
-zenity_notification_icon_press_callback,
+zenity_notification_icon_size_changed_cb,
-zenity_notification_icon_expose_callback,
-zenity_notification_icon_destroy_callback,
+zenity_notification_icon_activate_cb,
zenity_notification_handle_stdin, zenity_notification),
src/util.[ch] (+zenity_util_stock_from_filename,
zenity_util_pixbuf_new_from_file), Makefile.am, configure.in:
Migration to gtk_status_icon (Fixes bug #341451). Patch from
Christian Persch <[email protected]>.
* src/eggtrayicon.[ch]: removed.
2006-07-27 Lucas Rocha <[email protected]>
* src/text.c (zenity_text_handle_stdin): correctly stdin input for
text info dialog (Fixes bug #336736).
2006-07-27 Lucas Rocha <[email protected]>
* src/entry.c (zenity_entry): entry activation makes dialog
return OK (Fixes bug #347340).
2006-07-26 Lucas Rocha <[email protected]>
* src/tree.c (zenity_tree_fill_entries_from_stdin, zenity_tree): fix
small build warnings on 64-bit architectures (Fixes bug #344125).
* src/zenity.h: fix small build warning.
2006-06-10 Francisco Javier F. Serrador <[email protected]>
* src/about.c: Replaced FSF postal address with the current.
2006-05-19 Lucas Rocha <[email protected]>
* src/about.c (zenity_about): about dialog update.
2006-05-16 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-05-16 Lucas Rocha <[email protected]>
* configure.in: Release 2.15.2
* NEWS: Update.
2006-05-10 Lucas Rocha <[email protected]>
* src/entry.c (zenity_entry_fill_entries, zenity_entry),
src/main.c, src/option.c, src/zenity.glade, src/zenity.h:
add optional dropdown menu to entry dialog (Fixed bug #311038).
Patch from Diego Escalante Urrelo <[email protected]>.
2006-05-10 Lucas Rocha <[email protected]>
* .cvsignore, Makefile.am, autogen.sh, configure.in,
data/Makefile.am, po/.cvsignore, src/Makefile.am: move to
automake 1.9 and several cleanups (Fixes bug #341056).
Patch from Christian Persch <[email protected]>.
2006-04-29 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-04-24 Lucas Rocha <[email protected]>
* configure.in: Release 2.15.1
* NEWS: Update.
2006-04-17 Lucas Rocha <[email protected]>
* configure.in: remove X libs checks because zenity
doesn't use X includes directly (Fixes bug #338102).
2006-04-16 Lucas Rocha <[email protected]>
* src/tree.c (zenity_tree_extract_column_indexes):
don't ignore return value from g_renew() (Fixes
bug #338038). Patch from Behdad Esfahbod
2006-04-16 Lucas Rocha <[email protected]>
* configure.in:
* po/LINGUAS:
Convert to use po/LINGUAS.
2006-03-31 Lucas Rocha <[email protected]>
* data/zenity.1: fix example on progress dialog (Fixed
bug #336751).
2006-03-31 Lucas Rocha <[email protected]>
* src/about.c (zenity_about_dialog_response): quit zenity
on dialog response (Fixes bug #336505).
2006-03-23 Lucas Rocha <[email protected]>
* src/fileselection.c, zenity.h, option.c: add
--confirm-overwrite to file selection dialog to pop a
confirmation dialog when selecting an existing filename.
2006-03-22 Lucas Rocha <[email protected]>
Implement the "message" command on notification icon
with libnotify bubbles. Patch from Davyd Madeley
* configure.in: add libnotify checking.
* src/notification.c (zenity_notification_handle_stdin,
zenity_notification): initialize libnotify and implement
"message" command.
2006-03-21 Gora Mohanty <[email protected]>
* configure.in: Added or (Oriya) to ALL_LINGUAS.
2006-03-13 Lucas Rocha <[email protected]>
* configure.in: Post release bump, for unstable
2.15.x development.
2006-03-13 Lucas Rocha <[email protected]>
* configure.in: Release 2.14.0
* THANKS, NEWS: Update.
2006-03-07 Lucas Rocha <[email protected]>
* src/option.c: add G_OPTION_FLAG_NOALIAS to separator
option for list dialog. Patch from Glynn
Foster <[email protected]>.
2006-01-29 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-01-29 Lucas Rocha <[email protected]>
* configure.in: Release 2.13.90
* THANKS, NEWS: Update.
2006-01-16 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-01-16 Lucas Rocha <[email protected]>
* configure.in: Release 2.13.5
* NEWS: Update.
2006-01-05 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2006-01-05 Lucas Rocha <[email protected]>
* configure.in: Release 2.13.4
* THANKS, NEWS: Update.
2005-12-18 Lucas Rocha <[email protected]>
* src/about.c: use GtkAboutDialog instead of custom
dialog (Fixes bug #309405).
* src/zenity.glade: remove zenity_about_dialog.
* configure.in: zenity now depends on GTK+ >= 2.6.x
because now it uses GtkAboutDialog.
2005-12-16 Lucas Rocha <[email protected]>
* src/zenity.glade: make all dialogs HIG compliant
by fixing spaces and removing separator (Fixes bug
#324211). Patch by Christian Persch <[email protected]>.
2005-12-15 Lucas Rocha <[email protected]>
* src/option.c, src/scale.c, src/zenity.h: add
--hide-value to scale dialog.
2005-12-13 Lucas Rocha <[email protected]>
* src/zenity.glade: make the hscale discontinuous.
2005-12-13 Lucas Rocha <[email protected]>
* data/Makefile.am, data/zenity-scale.png,
src/Makefile.am, src/main.c, src/option.c,
src/option.h, src/scale.c, src/zenity.glade,
src/zenity.h: new scale dialog for selecting a
value from a range (Fixes #322399).
2005-12-12 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2005-12-12 Lucas Rocha <[email protected]>
* configure.in: Release 2.13.3
* NEWS: Update.
* MAINTAINERS: Update my e-mail address.
2005-11-15 Lucas Rocha <[email protected]>
* src/calendar.c, src/progress.c, src/tree.c: make
it possible to add new lines and markup in the dialog
text.
2005-11-13 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2005-11-13 Lucas Rocha <[email protected]>
* configure.in: Release 2.13.2
* NEWS, THANKS, src/about.c: Update.
2005-11-13 Lucas Rocha <[email protected]>
* src/msg.c: make it possible to add new lines in the
in the msg dialog (Fixes bug #320787).
2005-10-27 Erdal Ronahi <[email protected]>
* configure.in: Added ku (Kurdish) to ALL_LINGUAS
2005-10-24 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2005-10-24 Lucas Rocha <[email protected]>
* configure.in: Release 2.13.1
* NEWS, THANKS, src/about.c: Update.
2005-10-18 Lucas Rocha <[email protected]>
* src/zenity.glade: by default, focus is on tree
view in list dialogs. Fixes #317263. Patch from
Aleksey Kliger <[email protected]>
2005-10-18 Lucas Rocha <[email protected]>
* help/zenity.omf.in: refile zenity to GNOME|Utilities.
Fixes #318831. Patch from Brent Smith <[email protected]>.
* help/C/zenity.xml: more meaningful abstract and
standardized title. Fixes #318915. Patch from
Brent Smith <[email protected]>.
2005-09-24 Lucas Rocha <[email protected]>
* data/zenity.1: bug fix for #315020.
2005-09-24 Lucas Rocha <[email protected]>
* src/option.c: bug fix for #317033.
2005-09-21 Guilherme de S. Pastore <[email protected]>
* data/zenity.1: escaped "-"s; they're supposed to be
minus signs, not hyphens.
2005-09-17 Lucas Rocha <[email protected]>
* TODO: add a Zenity wiki page reference.
2005-09-06 Lucas Rocha <[email protected]>
* configure.in: Post release bump, for unstable
2.13.x development.
2005-09-06 Lucas Rocha <[email protected]>
* configure.in: Release 2.12.0
* NEWS, THANKS, src/about.c: Update.
2005-08-23 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2005-08-23 Lucas Rocha <[email protected]>
* configure.in: Release 2.11.92
* NEWS, THANKS, src/about.c: Update.
2005-08-07 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2005-08-07 Lucas Rocha <[email protected]>
* configure.in: Release 2.11.91
* NEWS, THANKS, src/about.c: Update.
2005-07-25 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2005-07-25 Lucas Rocha <[email protected]>
* configure.in: Release 2.11.90
* NEWS, THANKS, src/about.c: Update.
2005-07-24 Lucas Rocha <[email protected]>
* .cvsignore: added gnome-doc-utils.make.
* configure.in: added GNOME_DOC_INIT and
removed help/C/Makefile and help/sr/Makefile
from AC_OUTPUT.
* Makefile.am: added gnome-doc-utils.make to
EXTRA_DIST and DISTCLEANFILES. Added
DISTCHECK_CONFIGURE_FLAGS.
* help/Makefile.am: migration to gnome-doc-utils.
* help/zenity.omf.in: new OMF file to be used by
gnome-doc-utils.
* help/C/Makefile.am, help/C/zenity-C.omf: No
longer needed. Removed.
* help/C/zenity.xml: updates to be gnome-doc-utils
compliant.
* help/ChangeLog: new ChangeLog to keep track
of doc updates.
2005-07-14 Yair Hershkovitz <[email protected]>
* configure.in: Added Hebrew translation.
2005-07-13 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2005-07-13 Lucas Rocha <[email protected]>
* configure.in: Release 2.11.1
* HACKING: Add note about feature frozen-ness.
* NEWS, THANKS, src/about.c: Update.
2005-07-12 Lucas Rocha <[email protected]>
* configure.in: dependency on glib >= 2.7.3
* src/option.c: Add G_OPTION_FLAG_NOALIAS flag
on options that are present in more than on
group.
2005-07-12 Lucas Rocha <[email protected]>
* src/option.c: activate option help translations
in GOption.
2005-07-08 Lucas Rocha <[email protected]>
* src/about.c, src/calendar.c, src/fileselection.c,
src/option.c, src/progress.c, src/text.c, src/tree.c,
src/util.c: general code cleanups. Contribution from
Benoît Dejean.
2005-07-08 Lucas Rocha <[email protected]>
* src/about.c, src/option.c, src/fileselection.c:
marks static many functions and global variables.
Contribution from Benoît Dejean.
2005-07-06 Lucas Rocha <[email protected]>
* THANKS, src/about.c: Update.
2005-07-06 Lucas Rocha <[email protected]>
* src/calendar.c, src/entry.c, src/fileselection.c,
src/msg.c, src/notification.c, src/option.c,
src/progress.c, src/text.c, src/tree.c, src/util.c:
include cleanups (config.h). Contribution from
Benoît Dejean.
2005-07-04 Lucas Rocha <[email protected]>
* THANKS, src/about.c: Update.
* NEWS: Fix Martin Hansen name on 2.11.0
release announce.
2005-07-01 Lucas Rocha <[email protected]>
* configure.in: post release version bump.
2005-07-01 Lucas Rocha <[email protected]>
* configure.in: Release 2.11.0
2005-07-01 Lucas Rocha <[email protected]>
* src/tree.c, src/option.c, src/zenity.h: new
--hide-column option. Uses the same syntax of
--print-column option.
2005-06-30 Lucas Rocha <[email protected]>
* src/tree.c: some data structure improvements.
Created zenity_tree_extract_indexes function for
--print-column option and others.
2005-06-28 Lucas Rocha <[email protected]>
* src/tree.c: new --print-column option syntax.
Now it's possible to pass a comma-separated list
of column indexes (i.e. --print-column=1,3,4)
2005-06-28 Lucas Rocha <[email protected]>
* src/tree.c: error handling when trying to
use checklist and radiolist at the same List
dialog.
2005-06-27 Lucas Rocha <[email protected]>
* src/tree.c, src/about.c: add double-clicking on
list dialog only for normal list (not on radio and
check lists) based on contribution from Norman Rasmussen
* THANKS: Update.
2005-06-26 Lucas Rocha <[email protected]>
* src/zenity.h, src/option.c: new multiple option on list
dialog
* src/tree.c: now the default behavior is the single
selection. when --multiple is used, then multiple
rows can be selected. For radiolist and checklist,
normal selection is disabled (buttons = selection).
2005-06-17 Lucas Rocha <[email protected]>
* src/notification.c: don't use parent widget for
hiding the tray icon because it breaks the 'visible'
command.
2005-06-13 Lucas Rocha <[email protected]>
* MAINTAINERS: adding myself as a new maintainer
* README: no more popt dependency.
2005-04-25 Glynn Foster <[email protected]>
* COPYING, src/about.c, src/calendar.c, src/eggtrayicon.c,
* src/entry.c, src/fileselection.c, src/main.c, src/msg.c,
* src/notification.c, src/option.c, src/progress.c,
* src/text.c, src/tree.c, src/util.c: Update the FSF address
to point to 51 Franklin Street, Fifth Floor as per forwarded
mail from Alvaro Lopez Ortega.
2005-04-20 Glynn Foster <[email protected]>
* src/fileselection.c: Fix for #171838, from Carlos
Parra.
2005-04-20 Glynn Foster <[email protected]>
* src/entry.c, src/option.c, src/zenity.h: Clean
up the code a little bit.
2005-04-20 Glynn Foster <[email protected]>
* src/msg.c, src/option.c, src/zenity.h: Bug fix for
#149290, based on contributions from Timo Aaltonen,
Lucas Rocha, and Carlos Parra.
* THANKS: Update.
2005-04-06 Christian Rose <[email protected]>
* configure.in: Added "ug" to ALL_LINGUAS.
2005-04-01 Adi Attar <[email protected]>
* configure.in: Added "xh" to ALL_LINGUAS.
2005-03-31 Steve Murphy <[email protected]>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-08 Glynn Foster <[email protected]>
* configure.in: post release version bump.
* HACKING: We're open for business again.
2005-03-08 Glynn Foster <[email protected]>
* configure.in: Release 2.10.0
2005-02-28 Glynn Foster <[email protected]>
* configure.in: Post version bump.
* COPYING: Revert back to LGPL.
2005-02-28 Glynn Foster <[email protected]>
* configure.in: Release 2.9.92.
2005-02-16 Glynn Foster <[email protected]>
* src/util.h: Fix leak in ZENITY_IMAGE_FULLPATH. Fixes
#167518, hopefully.
2005-02-16 Glynn Foster <[email protected]>
* src/fileselection.c, THANKS, src/about.c: Fix bug
#167577, that leaks a seperator. Patch from
Paolo Borelli <[email protected]>
2005-02-08 Glynn Foster <[email protected]>
* configure.in: Post release bump.
2005-02-08 Glynn Foster <[email protected]>
* configure.in: Release 2.9.91.
2005-02-07 Glynn Foster <[email protected]>
* src/progress.c: If auto-close, close the dialog when
the input stream finds an EOF.
2005-02-07 Glynn Foster <[email protected]>
* help/C/zenity.xml: Update docs to add the new goption
help stuff.
* src/option.c: Update to be in line with the documentation
descriptions.
2005-02-01 Glynn Foster <[email protected]>
* src/notification.c, src/option.c: Patch from Chris
Lahey for #165456.
* src/about.c, THANKS: Updated.
2005-01-17 Glynn Foster <[email protected]>
* configure.in: Post release bump.
2005-01-17 Glynn Foster <[email protected]>
* configure.in: Release 2.9.90
2005-01-17 Glynn Foster <[email protected]>
* src/tree.c: Patch from Ed Catmur to fix the list dialog
on stdin. Fixes #164152.
* src/about.c, THANKS: Update.
2005-01-11 Glynn Foster <[email protected]>
* configure.in: post release bump.
2005-01-07 Glynn Foster <[email protected]>
* configure.in: Release 2.9.2
* HACKING: Add note about feature frozen-ness.
* README: zenity doesn't require gconf anymore.
2005-01-07 Glynn Foster <[email protected]>
* src/notification.c: Correct error message for notification
icon. Fixes #163462.
2005-01-07 Glynn Foster <[email protected]>
* src/option.c, src/calendar.c: Really fix #162297, and
preload the current dates if they aren't already set.
2005-01-07 Glynn Foster <[email protected]>
* src/option.c: Pre-load the year, because gtk_calendar* is
dumb and you need to select the year to change the month. Fixes