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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
|
2005-07-13 Lucas Rocha <lucasr@cvs.gnome.org>
* configure.in: post release version bump.
2005-07-13 Lucas Rocha <lucasr@cvs.gnome.org>
* configure.in: Release 2.11.1
* HACKING: Add note about feature frozen-ness.
* NEWS, THANKS, src/about.c: Update.
2005-07-12 Lucas Rocha <lucasr@cvs.gnome.org>
* 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 <lucasr@cvs.gnome.org>
* src/option.c: activate option help translations
in GOption.
2005-07-08 Lucas Rocha <lucasr@cvs.gnome.org>
* 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
Benot Dejean.
2005-07-08 Lucas Rocha <lucasr@cvs.gnome.org>
* src/about.c, src/option.c, src/fileselection.c:
marks static many functions and global variables.
Contribution from Benot Dejean.
2005-07-06 Lucas Rocha <lucasr@cvs.gnome.org>
* THANKS, src/about.c: Update.
2005-07-06 Lucas Rocha <lucasr@cvs.gnome.org>
* 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
Benot Dejean.
2005-07-04 Lucas Rocha <lucasr@cvs.gnome.org>
* THANKS, src/about.c: Update.
* NEWS: Fix Martin Hansen name on 2.11.0
release announce.
2005-07-01 Lucas Rocha <lucasr@cvs.gnome.org>
* configure.in: post release version bump.
2005-07-01 Lucas Rocha <lucasr@cvs.gnome.org>
* configure.in: Release 2.11.0
2005-07-01 Lucas Rocha <lucasr@cvs.gnome.org>
* 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 <lucasr@cvs.gnome.org>
* src/tree.c: some data structure improvements.
Created zenity_tree_extract_indexes function for
--print-column option and others.
2005-06-28 Lucas Rocha <lucasr@cvs.gnome.org>
* 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 <lucasr@cvs.gnome.org>
* src/tree.c: error handling when trying to
use checklist and radiolist at the same List
dialog.
2005-06-27 Lucas Rocha <lucasr@cvs.gnome.org>
* 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 <lucasr@cvs.gnome.org>
* 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 <lucasr@cvs.gnome.org>
* src/notification.c: don't use parent widget for
hiding the tray icon because it breaks the 'visible'
command.
2005-06-13 Lucas Rocha <lucasr@cvs.gnome.org>
* MAINTAINERS: adding myself as a new maintainer
* README: no more popt dependency.
2005-04-25 Glynn Foster <glynn.foster@sun.com>
* 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 <glynn.foster@sun.com>
* src/fileselection.c: Fix for #171838, from Carlos
Parra.
2005-04-20 Glynn Foster <glynn.foster@sun.com>
* src/entry.c, src/option.c, src/zenity.h: Clean
up the code a little bit.
2005-04-20 Glynn Foster <glynn.foster@sun.com>
* 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 <menthos@menthos.com>
* configure.in: Added "ug" to ALL_LINGUAS.
2005-04-01 Adi Attar <aattar@cvs.gnome.org>
* configure.in: Added "xh" to ALL_LINGUAS.
2005-03-31 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-08 Glynn Foster <glynn.foster@sun.com>
* configure.in: post release version bump.
* HACKING: We're open for business again.
2005-03-08 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.10.0
2005-02-28 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post version bump.
* COPYING: Revert back to LGPL.
2005-02-28 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.9.92.
2005-02-16 Glynn Foster <glynn.foster@sun.com>
* src/util.h: Fix leak in ZENITY_IMAGE_FULLPATH. Fixes
#167518, hopefully.
2005-02-16 Glynn Foster <glynn.foster@sun.com>
* src/fileselection.c, THANKS, src/about.c: Fix bug
#167577, that leaks a seperator. Patch from
Paolo Borelli <pborelli@katamail.com>
2005-02-08 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump.
2005-02-08 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.9.91.
2005-02-07 Glynn Foster <glynn.foster@sun.com>
* src/progress.c: If auto-close, close the dialog when
the input stream finds an EOF.
2005-02-07 Glynn Foster <glynn.foster@sun.com>
* 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 <glynn.foster@sun.com>
* src/notification.c, src/option.c: Patch from Chris
Lahey for #165456.
* src/about.c, THANKS: Updated.
2005-01-17 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump.
2005-01-17 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.9.90
2005-01-17 Glynn Foster <glynn.foster@sun.com>
* 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 <glynn.foster@sun.com>
* configure.in: post release bump.
2005-01-07 Glynn Foster <glynn.foster@sun.com>
* 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 <glynn.foster@sun.com>
* src/notification.c: Correct error message for notification
icon. Fixes #163462.
2005-01-07 Glynn Foster <glynn.foster@sun.com>
* 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 <glynn.foster@sun.com>
* src/option.c: Pre-load the year, because gtk_calendar* is
dumb and you need to select the year to change the month. Fixes
#162297.
2004-12-21 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post bump release.
* README: Despite the evils of autotools changing the COPYING
file in any releases I make, this software is LGPL.
2004-12-21 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.9.1
2004-12-21 Glynn Foster <glynn.foster@sun.com>
* src/option.c: Fix tyop for #161774, as reported by Christian.
2004-12-20 Glynn Foster <glynn.foster@sun.com>
* src/notification.c: Fix #161539, and try and hide the parent
widget, rather than the tray icon, since it saves space.
2004-12-08 Glynn Foster <glynn.foster@sun.com>
* TODO: Update with the removed goption item.
2004-12-07 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Fix for #137993. There is a chance that we'll have
to revert this fix, given the comments in /etc/X11/gdm/Xsession:
# Note that this should only go to zenity dialogs which always
# expect utf8
gettextfunc () {
if [ "x$gdmtranslate" != "x" ] ; then
"$gdmtranslate" --utf8 "$1"
else
echo "$1"
fi
}
So I guess we may be over a barrel with our original guarantee.
Let's just change this in 2.9.x and see if anyone notices or cares
enough. Patch from Leonardo Boshell <p@kapcoweb.com>.
2004-12-07 Glynn Foster <glynn.foster@sun.com>
* src/option.c: Fix spacing issue.
2004-12-07 Glynn Foster <glynn.foster@sun.com>
Patch from Lucas Rocha <lucasr@im.ufba.br> to use the GOption
API for the zenity parsing options, with some spacing fixes
from Glynn.
* configure.in: zenity now requires glib-2.0 >= 2.5.3 to build
because now it uses GOption. popt requirement removed.
* src/Makefile.am: update for new files
* src/main.c: use GOption API
* src/option.c, src/option.h: New files to implement the new
functionality.
* src/zenity.h: Fix spacing.
2004-11-23 Ross Burton <ross@burtonini.com>
* src/util.c: Check the xterm window ID is valid for the current
display before trying to use it.
2004-10-30 Francisco Javier F. Serrador <serrador@cvs.gnome.org>
* src/main.c: Typo fixing: Notication options --> Notification options
2004-10-26 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Patch from Lucas Rocha to fix
#153277, and remove an extra </para> link.
2004-10-05 James Henstridge <james@jamesh.id.au>
* src/util.c (zenity_util_pixbuf_new_from_file): g_strdown()
modifies the filename, so use strcasecmp() for the comparison
instead. Since we are comparing against fixed ASCII strings,
this should have no UTF-8 issues.
2004-09-30 James Henstridge <james@jamesh.id.au>
* src/notification.c (set_scaled_pixbuf): function to set a
GtkImage to a scaled pixbuf.
(zenity_notification_handle_stdin): set the image to a
GTK_ICON_SIZE_BUTTON sized image.
(zenity_notification): same here.
2004-09-17 Kjartan Maraas <kmaraas@gnome.org>
* src/progress.c: Add missing header.
* src/tree.c: Same
* src/util.c: (transient_get_xterm),
(transient_get_xterm_toplevel): ANSIfication.
Closes bug #152851.
2004-09-16 James Henstridge <james@jamesh.id.au>
* src/notification.c: add code to listen for commands on stdin
when in listen mode.
* src/main.c: parse the --listen argument for --notification mode.
* src/zenity.h (ZenityNotificationData): add a field for the
"listen" argument.
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump.
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.9.0
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* TODO: Update.
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* THANKS: Update
* src/about.c: Update.
* src/fileselection.c, src/main.c, src/zenity.h:
Patch from Lucas Rocha to implement save and
directory selection in the file selection dialog.
Fixes #138342.
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump, for unstable
2.9.x development.
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.8.0
2004-09-11 Abel Cheung <maddog@linuxhall.org>
* configure.in: Added "kn" "mk" "tr" to ALL_LINGUAS.
2004-08-30 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump.
2004-08-30 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.7.91
2004-08-22 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Update the documentation after
Breda's commit, to add the new --print-column option for the
list dialog.
2004-08-18 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add nb to ALL_LINGUAS.
2004-08-18 Breda McColgan <breda.mccolgan@sun.com>
* Updated the following files:
* help/C/zenity.xml
* help/C/zenity-C.omf
* help/C/figures/zenity-calendar-screenshot.png
* help/C/figures/zenity-entry-screenshot.png
* help/C/figures/zenity-error-screenshot.png
* help/C/figures/zenity-fileselection-screenshot.png
* help/C/figures/zenity-information-screenshot.png
* help/C/figures/zenity-list-screenshot.png
* help/C/figures/zenity-progress-screenshot.png
* help/C/figures/zenity-question-screenshot.png
* help/C/figures/zenity-text-screenshot.png
* help/C/figures/zenity-warning-screenshot.png
* Added the following files:
* help/C/l10n.txt
* help/C/l10n_scripts/
* help/C/l10n_scripts/calendar.sh
* help/C/l10n_scripts/cvs.txt
* help/C/l10n_scripts/error.sh
* help/C/l10n_scripts/filesel.sh
* help/C/l10n_scripts/info.sh
* help/C/l10n_scripts/list.sh
* help/C/l10n_scripts/progress.sh
* help/C/l10n_scripts/question.sh
* help/C/l10n_scripts/text_entry.sh
* help/C/l10n_scripts/text_info.sh
* help/C/l10n_scripts/warning.sh
See the help/C/l10n.txt file for information about l10n_scripts.
2004-08-17 Glynn Foster <glynn.foster@sun.com>
* src/about.c: Add translator comment from Christian Rose,
and fix up strcmp's for untranslated translator-credits.
2004-08-16 Christian Rose <menthos@menthos.com>
* configure.in: Added "bs" to ALL_LINGUAS.
2004-08-11 Glynn Foster <glynn.foster@sun.com>
* src/about.c: Use 'translator-credits' rather than the
underscore version which makes things easier for the translation
dudes.
2004-08-03 Glynn Foster <glynn.foster@sun.com>
* data/zenity.1: Update the man page for the --print-column
option added.
2004-08-03 Glynn Foster <glynn.foster@sun.com>
* TODO: Updates.
2004-08-03 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump.
2004-08-03 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.7.90
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump.
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.7.0
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c, src/entry.c, src/fileselection.c,
* src/msg.c, src/progress.c, src/text.c, src/tree.c: Cleanup
fixes from Paul Bolle.
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* src/main.c, src/tree.c, src/zenity.h,
help/C/zenity.xml: Add new option for --print-column, based
on a patch by Paul Bolle. Fixes #144496.
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Remove duplicate locale.h include. Patch
from Leonardo Boshell. Partly fixes #137993.
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml, help/sr/zenity.xml: Fix up
documentation for correct usage of the Text Entry
dialog. Patch from Baptiste Mille-Mathias. Fixes #141513.
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* src/msg.c: Make sure the text can take markup, so
that people can create nice HIG compliant message
dialogs. Patch from Sebastian Heinlein. Fixes #140748.
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* configure.in, src/Makefile.am: Fix up compilation
using Forte compiler. Based on patch from Ivan Noris.
Fixes #143041.
2004-06-18 Glynn Foster <glynn.foster@sun.com>
* THANKS, src/about.c, src/progress.c: Patch
from Luke Suchocki to send HUP to parent
instead of itself. Fixes #144542.
2004-06-17 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Fix parsing errors. Patch from
Paull Bolle. Fixes #144501.
2004-06-08 Glynn Foster <glynn.foster@sun.com>
* THANKS, src/about.c: Add Paul.
* src/main.c: fix tyops in parsing.
2004-05-27 Mohammad DAMT <mdamt@bisnisweb.com>
* po/id.po: Added Indonesian translation by Ahmad
Riza H Nst <rizahnst@eriagempita.co.id>
* configure.in: Added id to ALL_LINGUAS
2004-05-26 Alexander Shopov <ash@contact.bg>
* po/bg.po:
* configure.in: Added Bulgarian translation
by Rostislav Raykov <zbrox@dir.bg>
2004-04-29 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump.
2004-04-29 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.6.2
* NEWS: Update.
2004-04-29 Glynn Foster <glynn.foster@sun.com>
* src/main.c, src/tree.c: Fix the list dialog not being
able to handle --text to change the text. It was also
intentional but must have fallen through the gaps.
* data/zenity.1: Update
* help/C/zenity.xml: Update.
2004-04-27 Glynn Foster <glynn.foster@sun.com>
* src/zenity.glade: Untranslate 3 strings again. Thanks
to Christian for pointing this out.
2004-04-26 Glynn Foster <glynn.foster@sun.com>
* THANKS, src/about.c: Add from the 2 Sebastian's, and make
email addresses more spam proof.
* src/calendar.c, src/entry.c, src/fileselection.c, src/msg.c,
* src/progress.c, src/text.c, src/tree.c, src/util.c,
* src/util.h: Patch from Sebastian Kapfer to make all zenity
dialogs transients of the parent xterm. Fixes #136226.
* src/zenity.glade: Patch from Sebastian Heinlein to
improve things HIG wise. Fixes #140745.
2004-04-20 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post version bump.
2004-04-20 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.6.1
* NEWS: Update.
2004-04-20 Ross Burton <ross@burtonini.com>
* help/C/zenity.xml: Fix a typo, "Calender". Patch from Matt Kraai
<kraai@ftbfs.org>.
2004-04-20 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Fix documentation for text-info
as pointed out by the grand master of the zenity man
page, Ross Burton.
2004-04-10 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.
2004-03-30 Adam Weinberger <adamw@gnome.org>
* configure.in: Added en_CA (Canadian English) to ALL_LINGUAS
2004-03-28 Jesus Bravo Alvarez <jba@pobox.com>
* configure.in: Added Galician (gl) to ALL_LINGUAS
2004-03-23 Glynn Foster <glynn.foster@sun.com>
* Makefile.am: Add workaround to scrollkeeper-update not
cleaning up after itself, as copied from gnome-panel.
2004-03-23 Glynn Foster <glynn.foster@sun.com>
* configure.in: Post release bump.
2004-03-23 Glynn Foster <glynn.foster@sun.com>
* NEWS, THANKS, src/about.c: Update.
* configure.in: Release 2.6.0
2004-03-21 Mugurel Tudor <mugurelu@go.ro>
* configure.in: Added "ro" to ALL_LINGUAS
2004-03-21 Danilo Segan <dsegan@gmx.net>
* configure.in: Removed "en_CA" because the po/en_CA.po is missing.
2004-03-21 Danilo Segan <dsegan@gmx.net>
* help/Makefile.am (SUBDIRS): Add "sr" to SUBDIRS.
* configure.in: Add help/sr/Makefile to AC_OUTPUT.
2004-03-21 Danilo Segan <dsegan@gmx.net>
* help/sr/*: Added Serbian translation of documentation (with
screenshots); build system not adjusted yet.
2004-03-19 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c, src/entry.c, src/fileselection.c,
src/msg.c, src/progress.c, src/text.c, src/tree.c:
Patch from Darren Adams <darrenadams@dsl.pipex.com> to make
sure the new file chooser resizes nicely. Sanitize the default
setting of the other widgets.
* configure.in, src/util.c: Lose gconf dependancy since we
don't currently use it, although arguably we should to detect
which help browser we're supposed to run :/
* THANKS, src/about.c: Add Darren to the list.
2004-03-16 Alexander Winston <alexander.winston@comcast.net>
* configure.in: Added "en_CA" (Canadian English) to ALL_LINGUAS.
2004-03-15 Glynn Foster <glynn.foster@sun.com>
* NEWS: Update.
* autogen.sh: Use automake 1.7 since everyone has it by now.
* configure.in: Release 2.5.91
2004-03-07 Glynn Foster <glynn.foster@sun.com>
* src/util.c: Remove some unused code.
2004-03-07 Glynn Foster <glynn.foster@sun.com>
* AUTHORS: Update to add Mike.
* NEWS: Update for new release.
* THANKS, src/about.c: Add lots of people, probably get heaps
of bug reports complaining their name is spelled wrongly - darn
those weird characters.
* configure.in: Release 2.5.90
2004-03-04 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "pa" for Punjabi to ALL_LINGUAS.
2004-02-29 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/util.c, src/util.h: Remove all the
stupid duplicated code to do the help stuff, and instead
do a simple call for 'yelp ghelp:zenity'. -418, +23. Eeek.
Fixes #135607.
2004-02-21 Paisa Seeluangsawat <paisa@users.sf.net>
* configure.in: Added Thai (th) to ALL_LINGUAS.
2004-02-04 Tomasz Koczko <kloczek@pld.org.pl>
* configure.in: Trival cleanup: remove AC_SUBST(CFLAGS),
AC_SUBST(CPPFLAGS) and AC_SUBST(LDFLAGS). This variables are
substed by default.
2004-02-03 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.5.2
2004-01-26 Glynn Foster <glynn.foster@sun.com>
* src/text.c: Handle stdin. Fixes #132517.
2004-01-20 smund Skjveland <aasmunds@fys.uio.no>
* configure.in: Added 'nn' to ALL_LINGUAS.
* po/nn.po: Added Norwegian Nynorsk translation.
2004-01-06 Glynn Foster <glynn.foster@sun.com>
* Makefile.am: Back out the intltool stuff.
* configure.in: Require 0.29
2004-01-05 Roozbeh Pournader <roozbeh@sharif.edu>
* configure.in: Added "fa" (Persian) to ALL_LINGUAS.
2004-01-04 Glynn Foster <glynn.foster@sun.com>
* Makefile.am: Do the intltool-modules extra dist
foo.
2004-01-03 Robert Sedak <robert.sedak@sk.htnet.hr>
* configure.in: Added "hr" in ALL_LINGUAS.
2003-12-30 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 2.5.1, a ridiculous bump
so that we sync with the GNOME desktop releases.
2003-12-30 Jan Arne Petersen <jpetersen@uni-bonn.de>
* src/fileselection.c: (zenity_fileselection),
(zenity_fileselection_dialog_response): Replace
GtkFileSelection with GtkFileChooser.
2003-12-30 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 1.8
2003-12-28 Christian Rose <menthos@menthos.com>
* configure.in: Added "ne" to ALL_LINGUAS.
2003-12-20 Arafat Medini <lumina@silverpen.de>
* configure.in: Added Arabic locale "ar" to ALL_LINGUAS.
2003-12-11 Tõivo Leedjärv <toivo@linux.ee>
* configure.in: Added et to ALL_LINGUAS.
2003-12-04 Sanlig Badral <badral@openmn.org>
* configure.in: Added "mn" to ALL_LINGUAS.
2003-12-02 Christian Mnneckes < c-w-m@gmx.de>
* src/gdialog.in: Fix quote and output bugs
in the gdialog wrapper #128149.
2003-11-12 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 1.7
2003-11-12 Glynn Foster <glynn.foster@sun.com>
* src/gdialog.in: Fix radiolist returning the
wrong argument. Patch from Peter strand
<astrand@lysator.liu.se>. Fixes #125672.
2003-11-12 Glynn Foster <glynn.foster@sun.com>
* src/gdialog.in: Make sure the gdialog wrapper
handles spaces. Patch from Peter strand
<astrand@lysator.liu.se>. Fixes #125337.
2003-10-29 Glynn Foster <glynn.foster@sun.com>
* src/zenity.glade: Unmark translation messages,
as reported by Christian. Fixes #125717.
2003-10-28 Glynn Foster <glynn.foster@sun.com>
* src/zenity.glade: Make the dialogs resizable
so that --height/--width works. Reported by
Ingo van Lil <inguin@gmx.de>.
2003-10-27 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Patch from Leonardo Boshell to add the
locale.h header.
2003-10-13 Sami Pesonen <sampeson@iki.fi>
* configure.in: Added "fi" to ALL_LINGUAS.
2003-10-06 Žygimantas Beručka <uid0@tuxfamily.org>
* configure.in: Added "lt" to ALL_LINGUAS.
2003-09-30 Christian Rose <menthos@menthos.com>
* configure.in: Added "eu" to ALL_LINGUAS.
2003-09-17 Fatih Demir <kabalak@gtranslator.org>
* configure.in: Added "ta" (Tamil) to the languages' list.
2003-09-12 Glynn Foster <glynn.foster@sun.com>
* zenity.spec.in: Fix up spec file. Fixes #122040.
2003-09-12 Glynn Foster <glynn.foster@sun.com>
* src/entry.c, src/zenity.glade: Better patch from
raf@noduck.net to fix the activate on the entry dialog.
2003-09-12 Damien Carbery <damien.carbery@sun.com>
* src/main.c: Make zenity compile on solaris. Whoops :)
2003-09-11 Glynn Foster <glynn.foster@sun.com>
* src/entry.c: Hook up the 'activate' signal on
the entry dialog. Fixes Debian bug #202332.
2003-09-08 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 1.6
2003-09-08 Marcel Telka <marcel@telka.sk>
* configure.in (ALL_LINGUAS): Added sk.
2003-09-05 Taneem Ahmed <taneem@bengalinux.org>
* configure.in: Added "bn" to ALL_LINGUAS.
2003-09-04 Glynn Foster <glynn.foster@sun.com>
* THANKS: Update.
* src/about.c: Update.
* src/main.c: Patch from Toshi to fix encoding of passed
text strings. Fixes #121389.
2003-09-01 Glynn Foster <glynn.foster@sun.com>
* src/gdialog.in: Add patch from Buchan Milne to fix the gdialog
wrapper.
2003-09-01 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Documentation updates from Nicholas Curran.
* THANKS, src/about.c: Add Nicholas.
2003-08-27 Glynn Foster <glynn.foster@sun.com>
* src/tree.c: Put horizontal scrolling on automatic, otherwise
we expand off the edge of the screen.
2003-08-25 Mike Newman <mikegtn@gnome.org>
* src/entry.c: s/g_printerr/g_print/ - last part of Kevin's patch
applied on 2003-07-11.
2003-08-24 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 1.5
2003-08-22 Samúel Jón Gunnarsson <sammi@techattack.nu>
* configure.in: Added "is" to ALL_LINGUAS.
2003-08-22 Paul Duffy <dubhthach@frink.nuigalway.ie>
* configure.in: Added ga to ALL_LINGUAS
2003-08-22 Mike Newman <mikegtn@gnome.org>
* src/main.c: added call to setlocale to fix i18n of --help
2003-08-18 Dmitry G. Mastrukov <dmitry@taurussoft.org>
* configure.in: Added Russian to ALL_LINGUAS.
2003-08-15 Glynn Foster <glynn.foster@sun.com>
* COPYING: Add.
2003-08-13 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "hi" (Hindi) in ALL_LINGUAS.
2003-08-07 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 1.4.
2003-08-06 Metin Amiroff <metin@karegen.com>
* configure.in: Added "az" (Azerbaijani) to ALL_LINGUAS
2003-07-30 Dmitry G. Mastrukov <dmitry@taurussoft.org>
* configure.in: Added Belarusian to ALL_LINGUAS.
2003-07-26 Wang Jian <lark@linux.net.cn>
* configure.in: Added "zh_CN" to ALL_LINGUAS.
2003-07-19 Christophe Merlet <redfox@redfoxcenter.org>
* configure.in: Added "fr" (French) to ALL_LINGUAS.
2003-07-11 Kevin C. Krinke <kckrinke@opendoorsoftware.com>
* src/calendar.c, src/entry.c, src/fileselection.c, src/text.c,
src/tree.c: user input data output to STDOUT via g_print instead
of outputting to STDERR via g_printerr. This makes it possible to
destinguish user input data from GTK+ warnings / errors.
* THANKS, src/about.c: I figure this is my second patch submission
so I belong in the credits...
2003-07-10 John Fleck <jfleck@inkstain.net>
* autogen.sh
remove
* xmldocs.make
* omf.make
Set up new docs build system
2003-07-09 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added 'ms' (Malay) to ALL_LINGUAS.
* po/ms.po: Added Malay translation.
2003-07-09 Andras Timar <timar@gnome.hu>
* configure.in: Added "hu" (Hungarian) to ALL_LINGUAS.
2003-07-09 Dafydd Harries <daf@parnassus.ath.cx>
* configure.in: Added "cy" (Welsh) to ALL_LINGUAS.
2003-07-01 Laurent Dhima <laurenti@alblinux.net>
* configure.in: Added "sq" to ALL_LINGUAS.
2003-06-20 Mike Newman <mikegtn@gnome.org>
* src/gdialog.in: fix return value with patch from Yann
<bloch@iie.cnam.fr>. Thanks!
2003-06-21 Mike Newman <mikegtn@gnome.org>
* configure.in: Added en_GB to ALL_LINGUAS
* src/main.c: Fixed a typo s/in/is/ in error msg.
2003-06-13 Mike Newman <mikegtn@gnome.org>
* src/progress.c: allow \t and \n in text updated via '#' lines.
* src/about.c: fixed my email address.
2003-06-10 Mike Newman <mikegtn@gnome.org>
* src/fileselection.c, src/main.c, src/tree.c, TODO: Allow the use
of '\t' and '\n' in dialog text. Also, g_strcompress the separator
strings in --list and --file-selection so code declared as 'arse'
by Glynn can be removed :)
Also removed some completed tasks from TODO.
2003-06-10 Mike Newman <mikegtn@gnome.org>
* src/main.c: allow use of /t and /n in dialog text.
2003-06-09 Kevin C. Krinke <kckrinke@opendoorsoftware.com>
* src/gdialog.in: wrap gdialog.real/dialog when not in X-Window
2003-06-09 Mike Newman <mikegtn@gnome.org>
* data/zenity.1, help/C/zenity.xml: Update docs for new file selection
options.
2003-06-09 Mike Newman <mikegtn@gnome.org>
* src/fileselection.c, src/main.c, src/zenity.h: Add --multiple
mode to file selection, with --separator to divide returned filenames.
Change default separator for lists and file-sel to '|'.
2003-06-07 Mike Newman <mikegtn@gnome.org>
* src/calendar.c, src/entry.c, src/fileselection.c, src/msg.c
src/progress.c, src/text.c, src/tree.c, src/util.c, src/util.h
src/zenity.h: Allow user-defined return values via env vars.
Prefer ZENITY_OK etc, but also check for DIALOG_OK and fall through
to original zenity behaviour.
2003-06-07 Glynn Foster <glynn.foster@sun.com>
* src/zenity.glade: Untranslate silly strings pointed out by
Kjartan Maraas.
2003-06-04 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/main.c, src/msg.c,
src/progress.c, src/tree.c, src/util.c: Fix up some build warnings
as reported by Ross Burton and his amazing gcc 3.3 techno machine.
2003-06-04 Jordi Mallach <jordi@sindominio.net>
* src/main.c: Add a "no-c-format" xgettext header to unbreak po files
in the new auto-close string.
2003-06-03 Mike Newman <mikegtn@gnome.org>
* data/zenity.1: Update docs for --auto-close progress dialog
* help/C/zenity.xml: option.
2003-06-03 Mike Newman <mikegtn@gnome.org>
* src/gdialog.in: add a --help option, pointing to
zenity docs. Fixes #114338
2003-06-03 Changwoo Ryu <cwryu@debian.org>
* configure.in: Added "ko" to ALL_LINGUAS.
2003-06-01 Mike Newman <mikegtn@gnome.org>
* src/main.c: Implement --auto-close for --progress, which
* src/progress.c: behaves as if OK was clicked when reaching 100%
* src/zenity.h: Fixes #114125
2003-05-29 Glynn Foster <glynn.foster@sun.com>
* configure.in: release 1.3
* NEWS: Updated for new release
2003-05-29 Glynn Foster <glynn.foster@sun.com>
* TODO: More updates for suggestions from Kevin.
2003-05-29 Glynn Foster <glynn.foster@sun.com>
* TODO: Update with more suggestions.
2003-05-29 Glynn Foster <glynn.foster@sun.com>
* TODO: Update some more items.
* data/zenity.1: Update man page a little, although it still
should contain more useful information I guess.
2003-05-27 Glynn Foster <glynn.foster@sun.com>
* src/zenity.glade: Make the progress dialog resize. Lamely
fixes #113706.
2003-05-27 Glynn Foster <glynn.foster@sun.com>
* HACKING: Update information for submitting patches to bugzilla.
2003-05-27 Mike Newman <mikegtn@gnome.org>
* configure.in: Enable the gdialog compat wrapper script. Check for
* src/Makefile.am: path to perl, build the gdialog wrapper script
and install it in bindir. Also add it to distclean files.
Warning - this will overwrite gdialog from gnome-utils!
2003-05-27 Mike Newman <mikegtn@gnome.org>
* src/calendar.c: clean up some inconsistent indentation.
* src/gdialog: take notice of height and width args in textbox
because gdialog did.
2003-05-24 Mike Newman <mikegtn@gnome.org>
* src/progress.c: Make "OK" sensitive if progress bar has
reached 100%, and give it focus.
2003-05-24 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Patch from Dagmar d'Surreal
<dagmar@speakeasy.net> to correct help docs and
script examples for the change from --dialog-title to
--title.
* THANKS, src/about.c: Add Dagmar.
* src/progress.c: For now, just send a SIGHUP to the
parent process - not entirely sure if this is the best thing
to do right now.
2003-05-23 Mike Newman <mikegtn@gnome.org>
* src/gdialog: fixed --textbox to actually load filename
specified. Added --separate-output support. Make sure we get
output from list widgets.
2003-05-20 Mike Newman <mikegtn@gnome.org>
* src/gdialog: fixed --checklist and --radiolist and
added support for --menu
2003-05-19 Glynn Foster <glynn.foster@sun.com>
* configure.in: release 1.2
* NEWS: Updated for new release
2003-05-19 Glynn Foster <glynn.foster@sun.com>
* src/Makefile.am, src/gdialog: Compatibility wrapper script
from Mike Newman <mikegtn@gnome.org>. Disabled for the present
until I have a chance to review the code.
2003-05-19 Glynn Foster <glynn.foster@sun.com>
* src/progress.c: Make the progress dialog actually work
and now uses g_io_channel. Woot! Need to be able to cancel
the dialog, which currently doesn't work too well.
* TODO: Update.
* help/C/zenity.xml: Update help documentation.
2003-05-06 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Update commandline error message, needs updating
of translations.
* src/tree.c: Remove some commented out code.
* src/zenity.glade: Updated error and info dialogs to do
wrapping.
2003-05-06 Glynn Foster <glynn.foster@sun.com>
* src/tree.c: Fix up the stdin list dialog stuff.
* NEWS: Updated to actually include the updated
translations as well.
2003-05-06 Danilo Šegan <dsegan@gmx.net>
* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
2003-05-05 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Update docs for new commandline
options.
2003-05-05 Glynn Foster <glynn.foster@sun.com>
* configure.in: release 1.1
NEWS: Updated for new release.
2003-05-05 Glynn Foster <glynn.foster@sun.com>
* src/tree.c, src/util.c, src/util.h: Make the list dialog
handle stdin - a little bit buggy still.
* TODO: Update
2003-04-16 Jordi Mallach <jordi@sindominio.net>
* configure.in: Added "ca" (Catalan) to ALL_LINGUAS.
2003-04-13 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c,
src/tree.c, src/zenity.h: Finish off the indentation cleanup.
Add new '--width' and '--height' options to the general options.
Fix up the radio list view, so that we can now act like a radio
button group.
* TODO: Update
2003-04-08 Alessio Frusciante <algol@firenze.linux.it>
* configure.in: Added "it" (Italian) to ALL_LINGUAS.
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-08 Evandro Fernandes Giovanini <evandrofg@ig.com.br>
* configure.in(ALL_LINGUAS): Added "pt_BR" (Brazilian Portuguese).
2003-03-07 Glynn Foster <glynn.foster@sun.com>
* zenity.spec.in: More updates.
2003-03-06 Glynn Foster <glynn.foster@sun.com>
* zenity.spec.in: Fix up the %defines to include
automatic versioning.
2003-03-03 Zbigniew Chyla <cyba@gnome.pl>
* configure.in (ALL_LINGUAS): Added pl (Polish).
2003-03-01 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added "pt" to ALL_LINGUAS.
2003-02-28 Takeshi AIHANA <aihana@gnome.gr.jp>
* configure.in: Added ja into ALL_LINGUAS.
2003-02-25 Miloslav Trmac <mitr@volny.cz>
* configure.in: Added cs (Czech) to ALL_LINGUAS.
2003-02-12 Yuriy Syrota <rasta renome.rovno.ua>
* configure.in: Added uk (Ukrainian) to ALL_LINGUAS.
2003-02-09 Christian Neumair <chris@gnome-de.org>
* .cvsignore: Added missing file.
* configure.in: Added de (German) to ALL_LINGUAS.
2003-02-05 Glynn Foster <glynn.foster@sun.com>
* THANKS, src/about.c: Add Ross.
2003-02-05 Ross Burton <ross@burtonini.com>
* data/zenity.1: Added a simple man page.
* data/Makefile.am: Install the man page.
2003-02-03 Glynn Foster <glynn.foster@sun.com>
* src/about.c: Raise on mouse click
2003-02-03 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/hawaii-shirt.png,
data/surfboard.png, src/about.c: Um, you don't really
want to know.
2003-02-03 Glynn Foster <glynn.foster@sun.com>
* Makefile.am, configure.in, zenity.spec.in: Add
spec file, thanks to Mihai T. Lazarescu.
* THANKS, src/about.c: Update.
2003-02-02 Daniel Yacob <locales@geez.org>
* configure.in: Added Amharic (am) to ALL_LINGUAS
2003-02-01 Glynn Foster <glynn.foster@sun.com>
* NEWS, THANKS, src/about.c: Fix Jonathan's
name - I suck.
2003-02-01 Glynn Foster <glynn.foster@sun.com>
* configure.in: Release 1.0
* NEWS: Updated for new release.
2003-02-01 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Update the docs for new --editable
option in the List dialog.
2003-02-01 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/sunglasses.png: Add new.
* src/about.c: Update coordinates.
2003-02-01 Glynn Foster <glynn.foster@sun.com>
* src/about.c: Okay, I'm a glory hunter. Seperate out the
about dialog entries a little.
* THANKS: Update.
2003-01-30 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS
2003-01-29 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Don't do a g_assert_not_reached () if we don't have
any dialog types.
2003-01-29 Glynn Foster <glynn.foster@sun.com>
* README: Update
* configure.in: Remove some bogus configure checks that
we almost certainly don't need.
* src/about.c, data/Makefile.am, data/*.png: Add new pixbuf for
about dialog.
* TODO: Update accordingly
2003-01-28 Glynn Foster <glynn.foster@sun.com>
* src/about.c: Don't display the translators tab
unless there is stuff to show.
* src/entry.c: Add sanity NULL checking.
* src/tree.c, src/zenity.h: Add support for a new
--editable option.
* src/main.c: Add support for new --editable option for
the List dialog. Merge in the list of Gtk+ options into
the popt table - ripped this from libbonoboui, thanks to
James for pointing this out.
* src/zenity.glade: Make the translatable strings less arse.
* TODO: Update accordingly.
2003-01-26 Glynn Foster <glynn.foster@sun.com>
* THANKS, src/about.c: Update
2003-01-24 John Fleck <jfleck@inkstain.net>
* src/about.c: adding comma Glynn left out
that kept it from compiling
2003-01-24 Glynn Foster <glynn.foster@sun.com>
* src/about.c: Provide correct help URL.
* src/util.h, src/util.c: Add functions from
libgnome/gnome-i18n so that we can correctly find the
apropriate help file.
* xmldocs.make: Install help into $(datadir)/help/$(lang)/
* THANKS: Update from the code I stole from libgnome
2003-01-24 John Fleck <jfleck@inkstain.net>
* help/C/zenity.xml: fix typo.
2003-01-23 John Fleck <jfleck@inkstain.net>
* help/C/zenity.xml: fixing tag mixup that made the
docbook not valid.
2003-01-24 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Added "no" to ALL_LINGUAS.
2003-01-23 Pablo Gonzalo del Campo <pablodc@bigfoot.com>
* configure.in: Added es to ALL_LINGUAS.
2003-01-22 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Print out warning when we have no arguments to the
commandline.
* TODO: Add another item
2003-01-22 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Clarify some of the documentation a little. Add
in a few example scripts and commandlines. I'm pretty useless at
this though, since I don't know how to write scripts.
* TODO: Update accordingly. Only 2 things left.
2003-01-21 Mike Newman <mike@gtnorthern.demon.co.uk>
* src/text.c: fix a bug where a textbuffer was only being
associated with the textview if we had a filename to read in.
2003-01-21 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" (traditional Chinese) to ALL_LINGUAS.
2003-01-20 Glynn Foster <glynn.foster@sun.com>
* src/zenity.glade: Remove some strings for translation that
should be done.
2003-01-20 Christian Rose <menthos@menthos.com>
* configure.in: Added "sv" to ALL_LINGUAS.
2003-01-19 Mike Newman <mike@gtnorthern.demon.co.uk>
* help/C/zenity.xml: s/data-format/date-format/ in calendar help.
2003-01-19 Glynn Foster <glynn.foster@sun.com>
* src/about.c: Attempt to make things work after 2 bottles of
wine last night. Harmless changes though, so I'll commit them
for posterity.
* src/main.c: Add a new helper function for the error reporting
that makes the translators life easier. Thanks to Ole for spotting
this.
* src/text.c, src/zenity.h: Lame white spacing hacking.
* xmldocs.make: Put the docs in $(datadir)/help - not quite sure
yet if yelp is going to like this or not.
2003-01-19 Mike Newman <mike@gtnorthern.demon.co.uk>
* help/C/zenity.xml: fixed a missing closing tag.
2003-01-19 Mike Newman <mike@gtnorthern.demon.co.uk>
* src/main.c, src/text.c, src/zenity.h: add an --editable
option to --text-info. If set, return the contents of the
text buffer on dialog close.
2003-01-19 Ole Laursen <olau@hardworking.dk>
* configure.in: Added da to ALL_LINGUAS.
2003-01-18 Glynn Foster <glynn.foster@sun.com>
* Makefile.am, configure.in, omf.make, xmldocs.make: Enable
help documentation in the build.
* help/C/zenity-C.omf, help/C/zenity.xml: Fix up silly errors.
2003-01-18 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Add in references to the screenshots.
2003-01-18 Glynn Foster <glynn.foster@sun.com>
* help/C/figures/zenity-calendar-screenshot.png,
help/C/figures/zenity-entry-screenshot.png,
help/C/figures/zenity-error-screenshot.png,
help/C/figures/zenity-fileselection-screenshot.png,
help/C/figures/zenity-information-screenshot.png,
help/C/figures/zenity-list-screenshot.png,
help/C/figures/zenity-progress-screenshot.png,
help/C/figures/zenity-question-screenshot.png,
help/C/figures/zenity-text-screenshot.png,
help/C/figures/zenity-warning-screenshot.png: Add some
screenshots for the help documentation.
* src/entry.c, src/msg.c: Don't set the text if it's NULL.
2003-01-18 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Only some examples and some screenshots
and we're mostly done for a first draft.
* src/calendar.c: Don't set the text if it's NULL.
* src/main.c: Swap the order of the commandline dialogs so
that we're alphabetical.
* src/zenity.glade: Add some default strings.
2003-01-18 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity.png, src/about.c: Hooray!
Zenity now has an about window icon. It's very zen too.
2003-01-18 Glynn Foster <glynn.foster@sun.com>
* help/C/zenity.xml: Update the docs a little. I have absolutely
no clue how the doc people don't get tired of this.
2003-01-18 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-calendar.png,
data/zenity-entry.png, data/zenity-progress.png,
data/zenity-text.png: Some new window icons.
* src/text.c: Fix crash where the GladeXML ref was getting
unref'd before we wanted to use it.
* src/main.c: Fix up commandline parsing a little, although we
should really add the parsing options for gtk+.
* src/zenity.glade: Give some saner defaults.
* THANKS, src/about.c: Update for all the people I stole icons
and code from.
* TODO: Update accordingly.
2003-01-16 Mike Newman <mike@gtnorthern.demon.co.uk>
* src/tree.c: fix a segfault if a --list is constructed and there
is no data to put in it. Since a list with no contents to select
seemed pointless, return without showing dialog.
2003-01-15 Glynn Foster <glynn.foster@sun.com>
* help/C/Makefile.am, help/C/legal.xml, help/C/zenity-C.omf,
help/C/zenity.xml, help/Makefile.am: First initial template
of the help documents. Still have to write the main bulk of
it.
2003-01-14 Glynn Foster <glynn.foster@sun.com>
* Makefile.am, src/Makefile.am: Updates to make
distcheck. Wow, this is scarey, a 1.0 release is on the
horizon. Applications like this shouldn't reach 1.0.
2003-01-14 Glynn Foster <glynn.foster@sun.com>
* configure.in: Update to add new gconf requirement.
* src/zenity.h, src/about.c: Hurray for a new about box,
although it lacks an icon. I wonder if people would actually
like to see this as part of the dialog options. Can't think
of any reason to do so at the moment though. Large chunks
copied from libgnomeui/gnome-about.[ch]
* src/util.h, src/util.c: Add new helper functions because I
don't want to touch gnome_program with a bargepole. Copied from
libgnome/gnome-url.[ch]
* po/POTFILES.in: Add missing files. I think we have
everything now.
* TODO: Update accordingly.
2003-01-14 Glynn Foster <glynn.foster@sun.com>
* src/Makefile.am, src/about.c, src/main.c,
src/zenity.glade: Add an about box. Still need to add
an icon, and implement the callbacks for Help and Credits. Extra
hassle for not linking against libgnomeui. Sigh.
2003-01-14 Glynn Foster <glynn.foster@sun.com>
* src/tree.c, src/zenity.h, src/main.c: Add support to
separate the selected rows output with a character
with '/' used by default.
2003-01-13 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c: Re-structure the code to pass in the
ZenityData structure into the response_callback instead.
* src/main.c: Fix the screwups in the commandline parser
due to popt being teh suck.
* src/msg.c: Don't unref the GladeXML before you use it.
* THANKS: New file.
2003-01-13 Mike Newman <mike@gtnorthern.demon.co.uk>
* src/calendar.c, src/main.c, src/zenity.h: Make the calendar
return a localised date, and provide a means to override this with
a --date-format option which takes a strftime style string -
"%A %d/%m/%Y" for example.
2003-01-13 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Improve error handling.
* src/tree.c: Make --list actually return something
useful, although I still need to actually seperate
things out so it's actually decipherable.
* TODO: Update accordingly.
2003-01-09 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c: Fix up the date string, although I guess
this should be localized.
* src/main.c: Add a new --pulsate option, which reads from
stdin and pulsates the progress bar until we reach EOF.
* src/progress.c: Rewrite to actually work. Don't really need
GIOChannels here.
* TODO: Updated accordingly.
2003-01-07 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c,
src/tree.c, src/zenity.glade, src/zenity.h: Fix up
the response signal handlers. Use returns of 0 for
'Ok' and 'Close', 1 for 'Cancel' and 'Escape' and
-1 for 'Uh Oh'. Get stuff printing to stderr. Fix up
the error handling that I thought was improved,
although still have issues with popt callback getting
called numerous times because of more than one instance
of the same kind is being used in poptOption.
* TODO: Update accordingly.
2003-01-07 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Fix up the error returns.
* TODO: Update accordingly.
2003-01-06 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c, src/main.c, src/progress.c,
src/tree.c, src/zenity.h: Improve error handling...
a lot.
2003-01-06 Glynn Foster <glynn.foster@sun.com>
* src/main.c, src/tree.c, src/zenity.h: Finish off
commandline parsing for the list dialog. Wow, this
is almost approaching usable ;)
* TODO: Update accordingly
2003-01-06 Glynn Foster <glynn.foster@sun.com>
* src/main.c, src/msg.c, src/zenity.glade,
src/zenity.h: I love featuritis. Instead of fixing
stuff so it actually works, I add more stuff. Add
support for info dialog.
2003-01-06 Glynn Foster <glynn.foster@sun.com>
* src/zenity.glade: Feeling stupid because I can't use
glade. Thanks to jrb and jamesh for showing me the light.
Update default strings to sensible stuff.
2003-01-06 Glynn Foster <glynn.foster@sun.com>
* src/main.c: Add functions to init and free the
parsing options. Still not terribly pretty though.
* src/tree.c, src/zenity.h: Handle --column
argument.
* TODO: Update accordingly.
2002-12-15 Glynn Foster <glynn.foster@sun.com>
* zenity/*: Initial import into cvs.gnome.org. Don't
expect things to work very well.
|