File: NEWS

package info (click to toggle)
gnome-utils 2.8.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 10,056 kB
  • ctags: 1,297
  • sloc: ansic: 14,646; xml: 7,829; sh: 3,397; makefile: 531
file content (1121 lines) | stat: -rw-r--r-- 30,125 bytes parent folder | download
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
GNOME Utilities 2.7.x - 2.8.0

GNOME Search Tool

	* Add support for /media
	* Fix bug #137404 - Improve handling of failed quick searches
	* Fix bug #142450 - Results treeview should use GTK_SHADOW_IN
	* Fix bug #143772 - Wrong error message when file does not exist
	* Fix bug #144414 - Ctrl+Space does not select all files in table
	* Fix bug #147410 - Named pipes are not recognised as files
	* Fix bug #147465 - File size filter issues
	* Fix bug #147480 - Searching for text with leading dash causes error
	* HIG fix - put unit labels after text entries
	* Format Modified date to match Nautilus 2.7.x+
	* Fix memory leaks found using valgrind
	* Add new force_quick_search gconf key.
	* Update documentation

GNOME Dictionary

	* Remove old docs [Glynn]
	* Fix current docs [John]
	* Use translator-credits string [Glynn]
	* Fix bug #50907 - Add shadow border [Davyd Madeley]
	* Italic fixes [cs_is@yahoo.com]
	* Pass PanelApplet instance to lockdown func [Leena Gunda]
	* Add tooltip [Vinay M R]
	* Make sure screenreader only sees text box once [Muktha]
	* Add hyperlinks [Fernando Herrera, cs_is@yahoo.com]
	* Present window when it's under something [Dennis Smit]
	* Update from HIG [Dennis Cranston]
	* Fix the flags for horizontal panels [Vincent Noel]

GNOME Floppy
	
	* Pass through correct parameters [Chris Smith, Kjartan Maraas]
	* Update to new MIME system [Ray Strode]
	* Compilation fix for Fedora Core [Kjartan Maraas]

GNOME Log Viewer

	* Remove old docs [Glynn]
	* Use translator-credits string [Glynn]	
	* Parse syslog.conf [Samuel Stringham]
	* Get correct date on log zoom [Harsh Jaitly]
	* Use g_spawn [James Strandboge, Shakti Sen]
	* Remove timer when we're done [Shakti Sen]
	* Fix crash if log is < 5 lines [Shakti Sen]

Misc

	* Pass distcheck [Glynn]

Translations
	* Luca Ferretti, Alessio Frusciante [it]
	* Abel Cheung [zh_TW]
	* Changwoo Ryu [ku]
	* Adam Weinberger [en_CA]
	* Gareth Owen, David Lodge [en_GB]
	* Miloslav Trmac [cs]
	* Christophe Merlet [fr]
	* Laurent Dhima [sq]
	* Francisco Javier F. Serrador [es]
	* Takeshi AIHANA [ja]
	* Funda Wang [zh_CN]
	* Kjartan Maraas [no, nb]
	* Stanislav Visnovsky, Ivan Noris [sk]
	* Pawan Chitrakar [ne]
	* Dinesh Nadarajah [ta]
	* Alexander Shopov, Peter "Peshka" Slavov,  Vladimir Petkov [bg]
	* Vincent van Adrighem, Michiel Sikkes [nl]
	* Artur Flinta [pl]
	* Christian Rose [sv]
	* Andras Timar, Laszlo Dvornik, Gabor Kelemen [hu]
	* Guntupalli Karunakar [hi]
	* Changwoo Ryu [ko]
	* Duarte Loreto [pt]
	* Akagic Amila, Tomasz K~Boczko [bs]
	* Tommi Vainikainen [fi]
	* Martin Willemoes Hansen [da]
	* Christian Neumair, Hendrik Richter [de]
	* Telsa Gwynne, Dafydd Tomos, Dafydd Harries [cy]
	* Danilo | egan [sr, sr@Latn]
	* Hasbullah Bin Pit [ms]
	* Adam Weinberger [en_CA]
	* Leonid Kanter [ru]
	* Ankit Patel [gu]
	* Metin Amiroff [az]
	* Žygimantas Beru~Mka [lt]
	* Maxim Dziumanenko [uk]
	* Baris Cicek [tr]	
	* ~Esmund Skjæveland [nn]
	* Kostas Papadimas, Nikos Charonitakis [el]
	* Jordi Mallach [ca]
	* Mugurel Tudor [ro]
	* Arafat Medini [ar]
	* Paisa Seeluangsawat, Supranee Thirawatthanasuk [th]

===================================================================
GNOME Utilities 2.6.1

GNOME Search Tool

	* Update localized online user help [Sun translation team]
	* Fix compiler warnings [Dennis, Heikki]

Translations
	* Adam Weinberger [en_CA]
	* Guntupalli Karunakar [gu]
	* Andras Timar [hu]	
	* Robert Sedak [hr]
	* Jordi Mallach [ca]
	* Baris Cicek [tr]
	* Iñaki Larrañaga [ba]

===================================================================

GNOME Utilities 2.6.0

GNOME Dictionary
	
	* Build fixes [Dennis]
	
GNOME Floppy 

	* Build fixes [Dennis]


GNOME Search Tool

	* Updated online user help [Breda]

GNOME System Log

	* Build fixes [Dennis]

Translations

	* Alastair McKinstry (ga)
	* Åsmund Skjæveland (nn)
	* Christian Neumair (de)
	* Dafydd Tomos (cy)
	* Gareth Owen (en_GB)
	* Isam Bayazidi (ar)
	* Laurent Dhima (sq)
	* Leonid Kanter (ru)
	* Maxim Dziumanenko (uk)
	* Mugurel Tudor (ro)
	* Runa Bhattacharjee (bn)
	* Sanlig Badral (mn)
	* Vladimir \"Kaladan\" Petkov (bg)
	* Welther José O. Esteves (pt_BR)

Miscellaneous

	* README, NEWS: Update for new release.

===================================================================

GNOME Utilities 2.5.90

GNOME Dictionary

	* Fix bug #128647  Remember smart lookup settings between invocations [Fernando Herrera]   
	* Fix bug #127292  Remove use of deprecated function [Fernando Herrera]
	* Fix bug #130457  Add bugzilla information [Fernando Herrera]
	* Fix bug #129283  Use gnome-icon-theme for window icon [Michael Terry] 
	* Fix bug #106700  Use ngettext for plurals [Michael Terry] 
	* Fix bug #124643  Remove unused GtkAlignment [Kjartan Maraas]
	* Many multihead fixes [Dennis Smit]
	
GNOME System Log

	* Fix bug #129283  Use gnome-icon-theme for window icon [Michael Terry]
	* Fix bug #106700  Use ngettext for plurals [Christian Neumair]
	* Mark various strings for translation [Maxim Dzumanenko] 
	* Use the gtk+ 2.4 file chooser
	
GNOME Search Tool

	* Fix bug #119720  Add a 'Move to Trash' popup menu item [Cranston]
	* Fix bug #126525  New default animation  [jimmac] 
	* Fix bug #132043, #128454, #128378  Accessibility fixes [Padraig Obriain]
	* Fix bug #136419  Update help documentation for GNOME 2.6 [Breda McColgan]
	* Fix bug #124656  Various memory leaks fixed [Kjartan Maraas]
	* Fix bug #123191  AIX portability fixes [Sandie Vanderme]
	* Fix bug #129283  Fix window icon [Michael Terry]
	* Fix bug #106700  Use ngettext for plurals [Christian Neumair]
	* Reduce search results' memory usage
	* Improve search performance
	* Add middle button drag and drop support to listview
	* Animation file is moved to the gnome-icon-theme module
	* Improve handling of sockets and fifos
	* Hide backup files by default
	* Use shared-mime-info database for determining file types
	* Add support for %e and %O strftime modifiers
	* Improve HIG compliance of alert dialogs
	* Use the gtk+ 2.4 file chooser
	
GNOME Floppy 

	* Fix bug #110918 & 123831  Fixed volume name handling [Stephane Demurget]
	* Fix bug #104327  Added devfs device name support [Stephane Demurget]
	* Fix bug #129283  Use gnome-icon-theme for window icon [Michael Terry]
	* Fix bug #106700  Use ngettext for plurals [Chrisian Neumair]
	* Fix bug #127484  Use new help documenation [Balamurali Viswanathan]
	* Updated help links.	

Translations

	* Takeshi Aihana, Ales Nyakhaychyk, Paisa Seeluangsawat,  Christian Rose,
	  Andras Timar, Funda Wang, Danilo Segan, Ole Laursen, Alessio Frusciante
	  Pauli Virtanen, Christophe Merlet, Duarte Loreto, Priit Laes, 
	  smund Skjveland, Tomasz Kloczko, Guntupalli Karunakar, Nikos Charonitakis,
	  Alastair McKinstry, Miloslav Trmac, Kostas Papadimas, Changwoo Ryu
	  Vincent van Adrighem, Laurent Dhima, Alessio Frusciante, Zygimantas Berucka,
	  Artur Flinta, Ole Laursen, Metin Emirov, Laurent Dhima, Sanlig Badral,
	  Francisco Javier F. Serrador, and many more...
	  

Miscellaneous

	* README, NEWS: Update for new release.

===================================================================

GNOME Utilities 2.3.3

GNOME Dictionary

	* Do not mark copyright string for translation (Christian)  
	* HIG changes (Dennis)
	* Compiler warning fixes (Dennis)
	
GNOME System Log

	* Do not mark copyright string for translation (Christian)
	* HIG changes (Dennis)
	* Compiler warning fixes (Dennis)  

GNOME Search Tool

	* Replace disclosure widget with standard check button (Dennis)
	* Convert the search image into an animation (Dennis)
	* Remove the status and progress bar (Dennis)
	* Support SVG icon themes (Dennis)
	* Adjust sort order of columns to match nautilus (Dennis)
	* Add gconf key to disable using the locate command (Dennis)
	* UTF8 fixes (Hidetoshi)
	* Fix minimum size of window when the additional options are hidden (Dennis)
	* Add drag and drop support to the animation to create a desktop file 
	  that starts a search with same options (Dennis)
	* HIGify alert dialogs (Dennis)
	* Fix localization of the available options menu (Christian)

GNOME Floppy 

	* Sanity checks (Glynn)
	* HIG changes (Dennis)
	* Compiler warning fixes (Dennis)

Translations

	* Ole, Duarte, Christian Rose,  Christian Myer, Takeshi, Paul, 
	  Taneem, Miloslav & Christophe

Miscellaneous

	* README, NEWS: Update for new release.

===================================================================

GNOME Utilities 2.3.2.1

GNOME Dictionary

	* Add IPV6 support (Archana)

GNOME System Log

	* Avoid double free (Marcus)
	* Miscellaneous bugs fixes (Glynn)
	* Fix up GConf keys (Glynn)
	* Fix up compilation on cygwin (Masahiro)

Miscellaneous

	* README, NEWS: Update for new release.

===================================================================

GNOME Utilities 2.3.2

GNOME Calculator

	* Dies in preference for gcalctool (Glynn)

GNOME Dictionary

	* Fix portability problem on AMD Opteron (Stanislav)

GNOME Search Tool

	* Fix typo (Dennis)
	* Convert stuff to UTF8 (Dennis)

GNOME Character Map

	* Dies in preference for gucharmap (Glynn)

Translations

	* Takeshi, Hasbullah, Abel, Pablo & Duarte

Miscellaneous

	* README, NEWS: Update for new release.

===================================================================

GNOME Utilities 2.3.1 

GNOME Calculator

	* Fix factorial stuff (Leena)

GNOME Search Tool

	* Fix resizing issues with Galaxy Theme (Dennis)
	* Prevent click starting new find after find aborts (Dennis)
	* HIG updates (Dennis)
	* Remove some flags for the g_spawn call (Dennis)

Documentation
	* Fix up Search Tool documentation (Dennis)
	* Add localized documentation (Mike)

Translations

	* Danilo, Paul, Abel, Changwoo, Miloslav & Pablo

Miscellaneous

        * NEWS, README (Glynn)
	* Removed stuff from POTFILES.in (Dennis)

===================================================================

GNOME Utilities 2.3.0 

GNOME Calculator

	* Fix handling of parentheses (Kaushal)

GNOME Search Tool

        * Default filename search by substring (Dennis)
	* Default filename search case insensitive (Dennis)
	* Include desktop in search results (Dennis)
	* Include folders in search results (Dennis)
	* Name Contains entry is optional (Kaushal)
	* Prevent the escape key from quiting application if a search has just completed (Dennis)
	* Space or return key open a file (Dennis)
	* Application remembers previously selected options (Dennis)
	* Application is fully session aware  (Pasupathi) 

GNOME System Log

        * Fix a memory leak (Kjartan)

Documentation
 
        * Add Japanese documentation (Takeshi)

Translations

        * Metin, Christian, Roozbeh, Dmitry, Sanlig, Pablo, Yuriy, 
	Christophe, Daniel, Abel, He, Fatih, & Takeshi.

Miscellaneous

        * NEWS, README (Dennis)

===================================================================

GNOME Utilities 2.2.0   " Slainte "

GNOME Calculator

	* Fix crash when pressing multiple )('s (Glynn)

GNOME Search Tool

        * Do not use locate when searching through /mnt (Dennis)

GNOME System Log

        * Remove un-needed pixmaps (Dennis)

Documentation

        * Add gdialog documentation (John)

Translations

        * Naba, Kostas, Daniel, Andras, Miloslav, Pauli, Pablo, Vincent,
        Alessio & Zbigniew.

Miscellaneous

        * NEWS, README (Glynn)

===================================================================

GNOME Utilities 2.1.90	" Because I'm free....free falling "

GNOME Calculator

	* Add 'Inc' to FSF Copyright (John)

GNOME Search Tool

	* Left indent options contained in disclosure widget (Dennis)
	* Attach destroy handler and remove the timer for disclosure widget (Arvind)
	* Fix up strings to be less cryptic (Dennis)
	* Toggle sensitivity of results frame rather than window (Dennis)
	* Minor spacing adjustments (Dennis)

GNOME System Log
	
	* Remove old docs (John)
	* Fix up spacing in about dialog (Alex)
	* Remove a bunch of extraneous translated strings (John)

Translations

	* Hasbullah, Christophe, Jordi, Christian Rose, Artis, Kostas,
	  Pablo, Vincent, Ole, Kjartan, Christian Neumair & Abel

Miscellaneous

	* NEWS, README, HACKING (Glynn) 

===================================================================

GNOME Utilities 2.1.5   " All I want for Christmas... "

GNOME Dialog

	* don't check DISPLAY if the --create-rc (Mike)

GNOME Search Tool

	* Left indent Advanced Options (Dennis)

Translations

	* Andras, Artis & Christian.

Miscellaneous

	* NEWS, README (Glynn) 

===================================================================

GNOME Utilities 2.1.4	" Um "

GNOME Calculator

	* Add X-GNOME-BUGZILLA desktop entry (Fernando)
	* Add StartupNotify desktop entry (Glynn)

GNOME Character Map

	* Add X-GNOME-BUGZILLA desktop entry (Fernando)
	* Add StartupNotify desktop entry (Glynn)

GNOME Floppy 

	* Add X-GNOME-BUGZILLA desktop entry (Fernando)
	* Add StartupNotify desktop entry (Glynn)

GNOME Search Tool
	
	* Add X-GNOME-BUGZILLA desktop entry (Fernando)
	* Fix compiler warnings (Dennis)
	* Replace call to bonobo_init with bonobo_init_full (Dennis)
	* Add StartupNotify desktop entry (Dennis)
	* Theme the icon in the dialog (Glynn, Dennis)
	* Implement size_allocate function (Dennis)
	* Provide error dialog when user attempts to override a folder (Dennis)

Documentation

	* Dennis

Translations

	* Hasbullah, Tivo, Pablo, Christian, Ole, Jordi, Yuriy and 
	  Kjartan

Miscellaneous

	* HACKING, POTFILES, NEWS, README (Glynn) 

===================================================================

GNOME Utilities 2.1.3   " Maintaining gnome-utils is like paint by numbers - who wants the brush next? "

GNOME Character Map
	
	* Fix up messages sent to the status bar (Emmanuel)

GNOME Floppy Formatter

	* Even more HIG-compliant and polished UI (Stef)

GNOME Search Tool
	
	* Fix disclosure widget drawing problem with RTL locales (jaiserca)
	* Remove horizontal seperator from button box (Dennis)
	* If constraints unavailable, insensitize Add button
	* Handle shift F10 keypress (Dennis)
	* Miscellaneous fixes (Dennis, Glynn)

Archive Generator

	* So long, it's been fun.

Translations 
	
	* Yanko, Dmitry, He, Kjartan, Hasbullah & Andras.

Documentation

	* John

Miscellaneous -

	README, THANKS, NEWS (Glynn)

===================================================================

GNOME Utilities 2.1.2   " Full of anchovy essence "

GNOME Calculator 
	
	* Add Page_Up, Page_Down, Home and End to extra bindings (Emmanuel)

GNOME Character Map
	
	* Fix crasher when selecting font (Glynn)

GNOME Floppy Formatter

	* more HIG-compliant and polished UI (Stef)
	* added a check after spaces for the volume name (Stef)
	* fixed some floppy type check (Stef)
	* fixed the volume name setting (Stef)
	* fixed how the app handles the progress window closure (Stef)
	* a lot of other small fixes (Stef)

GNOME Search Tool

	* Allow window manager to include minimize and maximize buttons (Dennis)
	* Allow window manager to include minimize and maximize buttons (Dennis)	* Fix up some utf8 conversion problems (Toshi)
	* Move buttons to bottom of the window (Dennis)
	* Minor padding adjustments (Dennis)
	* Fix up size constraint portability (Pasu)
	* Support file sizes greater than 2.0 GB (Pasu)
	* Miscellaneous fixes (Dennis)

Translations 
	
	* Fatih & Andras

Documentation

	* Irene, Pat & Dennis.

Miscellaneous -

	README, THANKS, NEWS (Glynn)

===================================================================

GNOME Utilities 2.1.1   " Vid frtring, uppsk lkarvrd omgende "

GNOME Search Tool

	Rewrite handle_search_command_stderr_io fixing possible deadlock (Dennis)	
	Added support for horizontal seperators in the available search constraints (Dennis)
	Moved 'File is empty' constraint into the size group (Dennis)
	Use a Gtk spin button entry for constraints of type time and number (Dennis)
	Update command line arg parsing for recently added constraints (Dennis)
	Fixed popup menu for result window's scrolled horizontally (Dennis)
	Fix #94858, to get the default action for the mime type (Dennis)
	Minor string change (Dennis)
	Added support for icon theming (Dennis)
	Improve error dialogs (Dennis)
	Improve file type detection of symbolic links (Dennis)
	Added support for opening files in search results (Dennis)
	Added support for moving files from search results (Dennis)
	Added support for selecting multiple files (Dennis)
	Added support for drag and drop (Dennis)
	Other misc fixes (Dennis)
	
Build

	Updates for requirements (Glynn)

Documentation

	GNOME Search Tool updates (Dennis)	

Miscellaneous -

	README, THANKS, NEWS (Glynn)

===================================================================

GNOME Utilities 2.1.0	"Just when you thought it was safe to come out of the cupboard "
			 (Dennis Cranston, Archit Baweja and Deepa Natarajan we salute you)
GNOME Character Map

	Extend to unicode characters (James)
	Added back font picker (Hongli)
	Insert at cursor (Federic)
	Preserve font across pages (Federic)
	HIG fixes (Glynn)
	Use hex input and output in Select Character dialog (Hidetoshi)
	Update status bar when character buttons are navigated with keyboard (Muktha)

GNOME Dialog

	Use GtkCheckButton and GtkRadioButton widgets (Archit)
	Fixed return values (Archit)	
	Use GtkViewport and GtkScrolledWindow to display buttons (Archit)
	Don't do automatic wrapping (Archit)
	Use GtkOptionMenu (Rodrigo)

GNOME Floppy Formatter

	Fix a bunch of memory leaks (Stephane)
	Add GConf support (Stephane)
	Add volume name support (Stephane)
	Add a dialog display number of bad blocks found (Stephane)
	General UI cleanup (Stephane)
	Use g_spawn wherever possible (Stephane)
	Added some nice error dialogs (Stephane)
	Fix crash when closing the format window (Stephane)
	Supports not having ext2fs and dosfs support (Stephane)
	
GNOME Search Tool

	Merge tabs together and use disclosure widget (Dennis)
	Add search by size constaints (Dennis)
	Implement drag and drog support to copy files from search results (Dennis)
	Improve code for grabbing nautilus icons (Dennis)
	Make dialog look more inviting by adding a window icon (Dennis)
	Add popt command line argument handling (Dennis)
	HIG conformance (Dennis)
	Miscellaneous bug fixes (Dennis)
	Save the world (Dennis)

GNOME System Log

	Use GtkTreeView just a little bit more (Deepa)
	Miscellaneous UI additions/fixes (Deepa)

Build

	Misc fixes (Jacob, Rodrigo, Glynn)

Documentation

	Updates (Irene, John, Pat)	

Miscellaneous -

	README, THANKS, NEWS (Glynn)

Translations -

	All that translationary goodness from GNOME 2.0 (All)

===================================================================

GNOME Utilities 2.0.0 			" Zivot je jinde "

Bedroom, Dublin, Ireland -- June 17, 2002 -- the GNOME project today 
proudly announced the release of gnome-utils 2.0.0, targeted for the 
"GNOME 2.0 Platform and Desktop" release. Much has changed since
the initial start of the project in late 1998 and this release marks
the start of a more intuitive and appealing user interface, coupled
with the port to the new GNOME 2.0 platform.


It is available at the following location -

    ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/gnome-utils


GNOME Utilities is a collection of small applications all there
to make your day just that little bit brighter [*].

System Log Viewer	Monitor and view system log files.

Character Map		Select characters from a table and insert them into 
			your applications.

Calculator		A simple mathematical and scientific calculator that
			includes arithmetic, trigonometric, and logarithmic
			functions.

Search Tool		Search for files on your system using simple and 
			advanced search options.

Dictionary		Look up an online dictionary for definitions and 
			correct spelling of words.

Archive Generator	Create archives from collections of files and 
			folders using gzip compressed archive files.

Floppy Format		Format floppy disks under Linux.

"I could say good and whacky things about it [gnome-utils], but I'm too
lazy" - Bastien Nocerra

"GNOME Utilities taught me to shave" - Jeff Waugh


GNOME Utilities has the following requirements -

        intltool        >= 0.21
        libgnome        >= 2.0.0
        libgnomeui      >= 2.0.0
        libglade        >= 2.0.0
        libbonoboui     >= 2.0.0
        libgnomevfs     >= 2.0.0
        libpanel-applet >= 2.0.0


Many thanks, in particular, to John Fleck, George Lebl and Kevin Vandersloot,
and to the following people for making this release what it is -

Ali Akcaagac, Josh Barrow, Jacob Berkman, Jonathan Blandford, Ross Burton,
Anders Carlsson, Abel Cheung, Dennis Cranston, Zbigniew Chyla, 
Stephane Demurget, John Fleck, Mikael Hallendal, Lauris Kaplinski, 
Satyajit Kanungo, Rajeev Karale, Santhana Krishnan, Sasi Kiran Lanka,
George Lebl, Gaute Lindkvist, Josh Lucas, Paolo Maggi, Kjartan Maraas, 
Carlos Perello Marin, Yogeesh Mathighatta, Mark McLoughlin, Federico Mena 
Quintero, Muktha Narayan, Seth Nickell, Bastien Nocera, Narayana Pattipati, 
Gediminas Paulauskas, Havoc Pennington, Chris Phelps, Deepa Chacko Pillai, 
Aruna Pourhit, Senthilkumar Ramasamy, Arvind Samptur, Ganesan Sethuraman, 
Andrew Sobala, Samuel Stringham, Adam Sulmicki, Hidetoshi Tajima, Owen Taylor, 
Malcolm Tredinnick, Kevin Vandersloot, Sander Vesik, Xing Wang and David 
Westlund.

Extra special thanks also go to our poor documentation folks whose 
continuing 'sigh's are not completely unnoticed. We love you too.

Daniel Carrera, Nicholas Curran, Pat Costello, John Fleck, Eugene O'Connor, 
Irene Ryan and Patanjali Somayaji.

And without our translators our software would be nothing. Also huge
thanks go to the following, whose tireless work we perhaps never really
appreciate. You guys ROCK.

Vincent van Adrighem, Hasbullah Bin Pit, Pablo Gonzalo del Campo, Abel Cheung, 
Zbigniew Chyla, Gustavo Maciel Dias Vieira, Christophe Fergeau, Valek 
Filippov, Vlad Harchev, Wang Jian, Yanko Kaneti, Mantas Kriauciunas, Takayuki 
Kusano, Ole Laursen, George Lebl, T\xf5ivo Leedj\xe4rv, Duarte Loreto, 
Kjartan Maraas, Dmitry G. Mastrukov, Christophe Merlet, Christian Meyer, 
Bastien Nocera, Mohamad Afifi Omar, Gediminas Paulauskas, Germ\xe1n 
Poo-Caama\xf1o, Christian Rose, Changwoo Ryu, Pablo Saratxaga and Stanislav 
Visnovsky.

[*] And some that don't -

gdialog			Command line application used to display UI dialogs
			that can be used within shell scripts
	
===================================================================

GNOME Utilities 1.109.0		" Oh so nearly, but not quite "


GNOME Calculator -

	Use _UI_SUBTREE instead of _UI_SUBTREE_STOCK (George)

GNOME Dictionary -
	
	Fix applet button press hack to use gtk_propagate_event (Arvind)
	Use _UI_SUBTREE instead of _UI_SUBTREE_STOCK (George)
	
GNOME System Log Monitor -

	Use _UI_SUBTREE instead of _UI_SUBTREE_STOCK (George)

Documentation -

	Update GFloppy docs (John)

Build -

	Add Bulgarian translation (Yanko)

Translations -
		
	Pablo, Changwoo, George, Tivo, Kjartan, Zbigniew, Christian,
	Yanko, Dmitry, Ole, Gediminas, Hasbullah and Mantas.

Miscellaneous -

	README, THANKS, NEWS (Glynn)

===================================================================

GNOME Utilities 1.108.0		" This ain't no disco "


GNOME Calculator -

	Convert display to use GtkTextView (Kevin)
	Disable visible cursor for 'm' (Glynn)
	Fix 'e' easter egg (George)
	Remove store global and do it properly (George)
	Random easter egg fixage (George)
	Fix about dialog to be transient of parent (Ross)

GNOME Dictionary -

	Don't set wmclass on about dialog (Glynn)
	Fix about dialog to be transient of parent (Ross)
	
GNOME Search Tool -

	Fix crash when quiting before search has completed (Yogeesh)
	Fix about dialog to be transient of parent (Ross)
	
GNOME System Log Monitor -

	Enable help again (Glynn)
	Remove ugly pango-ification from monitor dialog (Glynn)
	
GNOME Floppy - 

	Add window and menu icon (Glynn)
	Add appropriate libglade LDFLAG (Glynn)
	Fix up dialog to agree to HIG (Glynn)	
	
GNOME Archive Generator -
	
	Pre-populate save dialog with an example of format (Glynn)
	Close IO channel before quiting (Yogeesh)
	Fix about dialog to be transient of parent (Ross)
	
Build -

	Fix GNOMELOCALEDIR to be the right place (Toshi)
	Remove dtd from help docs (Glynn)
	Remove more cruft (Glynn)

Translations -

	Duarte, Vincent, Stanislav, Zbigniew, Ole, Pablo, Christian,
	Kjartan and Abel

Documentation -

	Update gnome-dictionary docs (Sander)
	Update gnome-system-log docs (Sander)
			
Miscellaneous -

	README, THANKS, NEWS (Glynn)

===================================================================

GNOME Utilities 1.107.0 	" 69036' 45030' N - mmm "


GNOME Calculator -

	New icon (Jimmac)
	Don't negate 0's (Glynn)
	Add 'm' to indicate something is stored (Glynn)

GNOME Dictionary -
	
	Fix up button press hack on applet (Kevin)	

GNOME Search Tool -

	Remove mnemonics from tabs (Glynn)
	Fix handling of 'locate' searches (Dennis)
	
GNOME System Log Monitor -
	
	Save description in the actions dialog (Narayana)
	Disable multiple opening of the same log (Aruna)
	Treeview fix to prevent parent & child being created (Narayana)
	Fix up default focus (Glynn)
	
GNOME Floppy -

	Add error dialog for case of non-help (Federico)
	Change dialog type to info (Stephane)
	Fix up help environment (Federico)

GNOME Archive Generator -

	Fix help (Glynn)
	Really fix help (Federico)

Build -

	More cruft removal (Glynn)
	Fix up install of schemas (Glynn)
	Disable logview docs until they're fixed (Glynn)

Translations -

	Hasbullah, Kjartan, Ole, Zbigniew, Pablo, Stanislav and Dmitry
	
Documentation -
	
	Update gnome-dictionary docs (John)
	Update gnome-search-tool docs (John)

Miscellaneous -

	README, THANKS, NEWS (Glynn)

===================================================================

GNOME Utilities 1.106.0		" Not yet a Plaything"


GNOME Dictionary -

	Usability applet changes (Seth)
	Fix crash in preferences dialog (Kevin)
	Translate the schemas file (Anders, Glynn)

GNOME Search Tool -
	
	Fix problems with utf8->locale conversion (Dennis)

GNOME System Log Monitor -

	Fix i18n problems (George)

Build -
	
	Bump requirements for intltool (Glynn)

Translations -

	Kjartan, Vlad, Zbigniew, Ole, Pablo, George and Stanislav

Documentation -

	Updates for GNOME Search Tool from Sun (Sander)
		
Miscellaneous -

	README, THANKS, NEWS (Glynn)

===================================================================

GNOME Utilities 1.105.0		" I'm just a Toy "


GNOME Calculator -

	Give gnome-calculator it's first easter egg (Glynn)
	Fix help (Satayajit)
	Fix order of operators (Yogeesh, Sasi)
	Fix bad EE calculation (Andrew)

GNOME Character Map -

	Remove seperator from help menu (Ali)
	Fix help (Satayajit)
	Fix sensitivity of menus (Glynn)

GNOME Dictionary -
	
	Fix memory leaks (Havard)
	Remove 'Find' from status bar and make a dialog (Glynn)
	Cleaned up 'Find' dialog (Paolo)
	Wrap 'Find' functionality when it reaches the end (Paolo)
	Prevent dialog destruction when 'Esc'd (Paolo)
	Make applet a text entry again (Kevin)
	Fix sensitivity of menus (Glynn)
	Give preferences default settings in case gconf fails (Glynn)
	Left align items in strategy menu (Havoc)
	Add progress bar, although not hooked up yet (Glynn)
	Fix mnemonics (Deepa)

GNOME Search Tool -

	Fix help (Satayajit)
	Supress results only due to match in basename (Gaute, Dennis)
	Fix memory leaks (Dennis)
	Add 'Matches Regular Expression' to options (Rajeev)
	Can now double click 'No Files Found' (Paolo)
	Add a status bar with activity bar (Paolo)

GNOME System Log Monitor -

	Fix help (Satayajit)
	UI love (Sam)
	Fix repaint on zoom box (Sam)
	HIG Compliance (Glynn)
	Prevent dialog destruction when 'Esc'd (Glynn)
	Fix crash in actions dialog (Sam)
	

GNOME Archive Generator -

	Fix help (Satayajit)
	Add status bar (Josh, Glynn)
	Use g_spawn badly (Glynn)
	Hook menu hints up to the status bar (Glynn)

Build -
	
	Break build (Glynn)
	Fix build (Jacob)

Translations -
	
	Zbigniew, Christophe, Ole, Hasbullah, Abel & Kjartan

Miscellaneous -

	Remove cromagnon & edit-menus from module (Glynn)

===================================================================

GNOME Utilities 1.5.0 		" A Brave New World "


(Also to be known as " The One that Didn't Exist ")

GNOME Calculator -
	
	Fix .desktop file to point to correct DocPath (Satyajit)
	Richard Scarry's My First Easter Egg (Glynn)
	New screenshots (John)
	HIG UI conformance (Glynn)
	New logo for the about dialog (Dennis)	


GNOME Character Map-

	Fix .desktop file to point to correct DocPath (Satyajit)
	HIG UI conformance (Ali, Glynn)	
	Break build (Glynn)
	Fix build (Glynn)
	Break build again (Glynn)
	Fix build again (Carlos)
	New logo for the about dialog (Dennis)

GNOME Dictionary -
	
	Fix build to enable help on applets (Satyajit)
	Fix .desktop file to point to correct DocPath (Satyajit)
	Fix build to get distchecking (Glynn)
	HIG UI conformace (Paolo, Glynn, Dennis)
	New logo for about dilaog (Dennis)

GNOME Search Tool -
	
	Fix .desktop file to point to correct DocPath (Satyajit)
	HIG UI conformance (Paolo, Glynn)
	Add 'Starting in Folder' option to searches (Dennis)
	Filter out annoying 'Permission denied' messages (Dennis)
	Build build (Glynn)
	Fix build (Owen)

GNOME System Log Monitor -

	Fix .desktop file to point to correct DocPath (Satyajit)
	Rename 'Date' field to something a little bit saner (Glynn)
	GtkDialogize Calendar (Xing, Glynn)
	Recognise marked logs (Voss)
	More about dialog love (Dennis)

GNOME Archiver Generator -

	Fix .desktop file to point to correct DocPath (Satyajit)
	New documentation (Pat, John)
	HIG UI conformance (Glynn)
	De-sensitivize buttons if nothing to select (Yogeesh)
	Break build (Glynn)
	Fix build (Owen)
	Add default window icon (Dennis)
	Even more about dialog love (Dennis)	
		
Build -

	Break build (Glynn)
	Fix build (Jacob)
	Break build (Glynn)
	Fix build (Jacob)
	. . . . .
	Fix build (Glynn) - yeah, I did once I think :)

Translations -

	Kjartan, Pablo, Vincent, Duarte, Abel & Changwoo

Miscellaneous -

	THANKS, README, MAINTAINERS updates (Glynn)