-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChangeLog
More file actions
1885 lines (1087 loc) · 50.2 KB
/
ChangeLog
File metadata and controls
1885 lines (1087 loc) · 50.2 KB
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
==================== 2.27.3 ====================
2009-08-20 Milan Bouchet-Valat <nalimilan@club.fr>
* NEWS: version 2.27.3
* First version to use PolicyKit1, requiring system-tools-backends >= 2.8.
2009-07-27 Milan Bouchet-Valat <nalimilan@club.fr>
* configure.in: post-release bump to 2.27.3.
==================== 2.27.2 ====================
2009-07-27 Milan Bouchet-Valat <nalimilan@club.fr>
* NEWS: version 2.27.2
* From this release, we won't be updating the ChangeLog on every commit, since commit messages should be used for that. Only important changes will be filed here.
2009-07-04 Milan Bouchet-Valat <nalimilan@club.fr>
* configure.in: post-release bump to 2.27.2.
==================== 2.27.1 ====================
2009-07-04 Milan Bouchet-Valat <nalimilan@club.fr>
* NEWS: version 2.27.1
2009-06-30 Sebastien Bacher <seb128@ubuntu.com>
* interfaces/shares.glade:
* interfaces/shares.ui:
* src/shares/share-settings.c:
Allow 3 strings to be translated. Bug #522276.
2009-06-30 Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
* README:
* HACKING:
Updates locations for mailing list information and released
packages. Bug #583401.
2009-06-30 Gilles Dartiguelongue <gdartigu@svn.gnome.org>
* configure.in: make policykit support optional via a
configure switch. Bug #578550.
2009-06-29 Milan Bouchet-Valat <nalimilan@club.fr>
* interfaces/users.ui:
* src/users/privileges-table.c:
* src/users/user-settings.c:
* src/users/user-settings.h:
Add an option to allow password-less logins. Bug #414862.
2009-04-28 Thomas H.P. Andersen <phomes@gmail.com>
* src/time/e-map/e-map.c:
* src/users/search-bar/search-bar.c:
* src/boot/callbacks.c:
Replace deprecated gtk symbols. Bug #570952
2009-04-28 Thomas H.P. Andersen <phomes@gmail.com>
* configure.in: bump to 2.27.1.
2009-03-16 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.22.3.
==================== 2.22.2 ====================
2009-03-16 Vincent Untz <vuntz@gnome.org>
* NEWS: version 2.22.2
2009-02-25 Thomas H.P. Andersen <phomes@gmail.com>
* src/users/search-bar/search-bar.c:
* src/users/search-bar/search-bar.h:
* src/boot/boot-druid.c:
* src/boot/boot-druid.h:
* src/common/gst-dialog.c:
* src/disks/callbacks.c:
* src/disks/callbacks.h:
* src/disks/disks-gui.c:
* src/time/e-map/e-map.c:
* src/time/e-map/e-map.h:
* src/time/e-map/e-map-test.c:
* src/time/tz-map.c:
Replace various deprecated gtk symbols. Bug #570952
2009-02-24 Thomas H.P. Andersen <phomes@gmail.com>
* src/shares/share-nfs-add-hosts.c:
* src/common/gst-tool.c:
* src/time/e-map/e-map.c:
Replace deprecated gdk_pixbuf_unref() by g_object_unref(). Bug #570952
2009-02-24 Andre Klapper <a9016009@gmx.de>
* src/time/e-map/e-map.c:
Replace deprecated gtk_object_unref() by g_object_unref().
2009-02-24 Andre Klapper <a9016009@gmx.de>
* src/time/e-map/e-map.c:
Replace deprecated gdk_gc_unref() by g_object_unref().
2009-02-24 Andre Klapper <a9016009@gmx.de>
* src/network/ifaces-list.c:
* src/shares/share-nfs-add-hosts.h:
* src/shares/share-settings.h:
* src/shares/table.c:
* src/time/e-map/e-map.h:
Clean up GTK Includes. Patch by Maxim Ermilov.
Fixes bug #561245.
2008-09-23 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.22.2.
==================== 2.22.1 ====================
2008-09-23 Vincent Untz <vuntz@gnome.org>
* NEWS:
* configure.in: version 2.22.1
2008-03-09 Carlos Garnacho <carlosg@gnome.org>
* Release 2.22.0
2008-02-25 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.92
2008-02-15 Jaap Haitsma <jaap@haitsma.org>
* Makefile.am:
* configure.in:
* icons/16x16/Makefile.am:
* icons/16x16/apps/Makefile.am:
* icons/16x16/apps/time-admin.svg:
* icons/22x22/Makefile.am:
* icons/22x22/apps/Makefile.am:
* icons/22x22/apps/time-admin.svg:
* icons/24x24/Makefile.am:
* icons/24x24/apps/Makefile.am:
* icons/32x32/Makefile.am:
* icons/32x32/apps/Makefile.am:
* icons/32x32/apps/time-admin.svg:
* icons/48x48/Makefile.am:
* icons/48x48/apps/Makefile.am:
* icons/Makefile.am:
* icons/scalable/Makefile.am:
* icons/scalable/apps/Makefile.am:
* icons/scalable/apps/time-admin.svg:
Add new time-admin icon. Fixes bug #506778
2008-02-12 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.91
2008-01-28 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.90
2008-01-15 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.5.1
2008-01-15 Carlos Garnacho <carlosg@gnome.org>
* configure.in: Do not depend on unreleased glib.
2008-01-15 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.5
2008-01-14 Carlos Garnacho <carlosg@gnome.org>
* configure.in: Depend on glib 2.15.x for gio.
2008-01-13 Carlos Garnacho <carlosg@gnome.org>
* configure.in, src/shares/nautilus/Makefile.am: get the nautilus
extensions directory from the .pc file. Fixes #508804, Patch by
Damien Carbery <damien.carbery@sun.com>
2007-12-26 Carlos Garnacho <carlosg@gnome.org>
* configure.in: switch CFLAGS order to be able to compile with other
gst.h files around. Fixes #505158, patch by Jeremy Messenger
<mezz@FreeBSD.org>
2007-12-18 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.3
2007-12-18 Carlos Garnacho <carlosg@gnome.org>
* configure.in: bump liboobs requirement.
2007-11-14 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.2.1
2007-11-13 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.2
2007-10-30 Carlos Garnacho <carlosg@gnome.org>
* Release 2.21.1
2007-10-10 Carlos Garnacho <carlosg@gnome.org>
* configure.in: look for PolicyKit 0.5 instead of 0.5.0 to avoid
possible brokenness.
2007-10-10 Carlos Garnacho <carlosg@gnome.org>
* configure.in: add optional PolicyKit dependency.
2007-09-13 Carlos Garnacho <carlosg@gnome.org>
* configure.in: bumped GTK+ and liboobs requirements, remove libglade
dependency.
2007-09-03 Carlos Garnacho <carlosg@gnome.org>
* Release 2.19.92
2007-08-29 Jani Monoses <jani@ubuntu.com>
* configure.in, src/common/gst-tool.c, src/time/e-map/Makefile.am:
remove last libgnomeui bits, with the latest changes in bug-buddy
SEGV handler it isn't needed anymore. Fixes #463239.
2007-08-28 Carlos Garnacho <carlosg@gnome.org>
* Release 2.19.91
2007-07-28 Carlos Garnacho <carlosg@gnome.org>
* Release 2.19.1
2007-07-10 Carlos Garnacho <carlosg@gnome.org>
* Release 2.19.0
2007-07-06 Carlos Garnacho <carlosg@gnome.org>
* configure.in: remove libart dependency, we don't need it any longer
(at least directly)
2007-04-09 Carlos Garnacho <carlosg@gnome.org>
* Release 2.18.1
2007-03-12 Christian Kirbach <Christian.Kirbach@googlemail.com>
* src/time/time.desktop.in.in:
* src/users/users.desktop.in.in:
* src/network/network.desktop.in.in:
* src/shares/shares.desktop.in.in:
* src/services/services.desktop.in.in:
"Application" and "X-GNOME-NetworkSettings" are not valid categories in
the freedesktop.org specification. See GnomeGoal #3.
2007-03-12 Carlos Garnacho <carlosg@gnome.org>
* Release 2.18.0
2007-02-27 Carlos Garnacho <carlosg@gnome.org>
* Release 2.17.92
2007-02-19 Jani Monoses <jani.monoses@gmail.com>
* configure.in:
* src/shares/Makefile.am: add --disable-nautilus option to disable
shares-admin nautilus extension compilation.
2007-02-19 Carlos Garnacho <carlosg@gnome.org>
* gnome-doc-utils.make: remove from svn, it's generated. Fixes
#408732.
2007-02-12 Carlos Garnacho <carlosg@gnome.org>
* Release 2.17.91
2007-01-09 Carlos Garnacho <carlosg@gnome.org>
* Release 2.17.5
2007-01-08 Carlos Garnacho <carlosg@gnome.org>
* Release 2.17.4
2006-12-04 Carlos Garnacho <carlosg@gnome.org>
* configure.in: require liboobs-2.17.4
2006-12-01 Carlos Garnacho <carlosg@gnome.org>
* Release 2.17.3
2006-11-30 Carlos Garnacho <carlosg@gnome.org>
* configure.in: do not include -liw in LIBS
2006-11-26 Carlos Garnacho <carlosg@gnome.org>
* configure.in: distcheck fixes.
2006-11-19 Carlos Garnacho <carlosg@gnome.org>
* configure.in: removed unused conditions. detect libiw library and
headers.
* src/Makefile.am: do not use unnecessary conditions
2006-11-15 Carlos Garnacho <carlosg@gnome.org>
* gnome-system-tools.schemas.in: removed unused keys.
2006-11-10 Carlos Garnacho <carlosg@gnome.org>
* doc/Makefile.am: do not build boot-admin docs
* doc/network/C/network-admin.xml, doc/services/C/services-admin.xml,
doc/shares/C/shares-admin.xml, doc/time/C/time-admin.xml,
doc/users/C/users-admin.xml: make it build against latest
gnome-doc-utils.
2006-11-05 Carlos Garnacho <carlosg@gnome.org>
* Release 2.17.2
2006-09-30 Carlos Garnacho <carlosg@gnome.org>
* configure.in: depend on latest liboobs.
2006-09-30 Carlos Garnacho <carlosg@gnome.org>
* Release 2.15.5
2006-09-22 Jani Monoses <jani.monoses@gmail.com>
* configure.in: add --enable-gnome to compile against libgnome(ui),
default it to TRUE.
2006-09-07 Carlos Garnacho <carlosg@gnome.org>
* Release 2.15.4
2006-09-04 Carlos Garnacho <carlosg@gnome.org>
* Release 2.15.3
2006-08-11 Carlos Garnacho <carlosg@gnome.org>
* Release 2.15.2
2006-08-06 Carlos Garnacho <carlosg@gnome.org>
* configure.in, doc/Makefile.am: link shares-admin docs compilation
2006-08-04 Carlos Garnacho <carlosg@gnome.org>
* configure.in: add DBus checks
2006-08-02 Carlos Garnacho <carlosg@gnome.org>
* Release 2.15.1
2006-08-02 Carlos Garnacho <carlosg@gnome.org>
* configure.in: depend on liboobs for the nautilus extension
2006-06-06 Carlos Garnacho <carlosg@gnome.org>
* Release 2.15.0
2006-06-05 Carlos Garnacho <carlosg@gnome.org>
* Makefile.am, configure.in: distcheck fixes
2006-05-27 Mike Auty <ikelos@gentoo.org>
* configure.in: make g-s-t work fine with --as-needed. Closes #341040
2006-05-26 Przemysław Grzegorczyk <pgrzegorczyk@gmail.com>
* configure.in: use intltool 0.35, move ALL_LINGUAS to po/LINGUAS
* po/LINGUAS: added
2006-05-26 Carlos Garnacho <carlosg@gnome.org>
* configure.in: removed unnecessary and old stuff
2006-05-19 Carlos Garnacho <carlosg@gnome.org>
* src/Makefile.am: allow shares, network and users tools compilation
again
2006-05-18 Carlos Garnacho <carlosg@gnome.org>
* configure.in: raise Gtk+ minimum version to 2.9.0, we're going to
use some new features here
* src/Makefile.am: allow time and services tool compilation again.
2006-05-18 Carlos Garnacho <carlosg@gnome.org>
* configure.in: bump version number, remove direct dep on
system-tool-backends, depend on liboobs instead
* m4/intltool.m4: update
* src/Makefile.am: don't compile any tool ATM, they'll be added back
when they're ported to liboobs
2006-04-21 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Unbreak the build.
2006-04-17 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Remove obsolete entry for no_NO
* po/no.po: And the translation.
2006-03-24 Tommi Vainikainen <thv@iki.fi>
* configure.in (ALL_LINGUAS): Added Dzongkha (dz).
2006-03-20 Vladimer Sichinava <vlsichinava@gmail.com>
* configure.in: Added "ka" (Georgian) to ALL_LINGUAS
2006-03-13 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 2.14.0
2006-03-04 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
* configure.in: Added "zh_HK" to ALL_LINGUAS.
2006-03-02 Rhys Jones <rhys@sucs.org>
* configure.in: Added "cy" (Welsh) to ALL_LINGUAS
2006-01-31 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 2.13.2
2006-01-30 Carlos Garnacho Parro <carlosg@gnome.org>
* src/*/*.desktop.in.in: Add GNOME and GTK to Categories, make these
files validate against desktop-file-validate. (#328453, patch by
Stephane Loeuillet)
2006-01-16 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 2.13.1
2006-01-02 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 2.13.0
2005-12-02 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in, Makefile.am, doc/*: use gnome-doc-utils
2005-11-28 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.4.1
2005-11-28 Carlos Garnacho Parro <carlosg@gnome.org>
* Makefile.am, autogen.sh, omf.make, xmldocs.make: build fixes, now
passes distcheck again
2005-09-24 Erdal Ronahi <erdal.ronahi@gmail.com>
* configure.in: Added "ku" (Kurdish) to ALL_LINGUAS
2005-09-04 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.4.0
2005-08-30 Yair Hershkovitz <yairhr@gmail.com>
* configure.in: Added "he" to ALL_LINGUAS
2005-08-23 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.3.92
2005-08-08 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.3.2
2005-08-08 Kristof Vansant <de_lupus@pandora.be>
* General headers and clode cleanup
2005-07-26 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.3.1
2005-07-05 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.3.0.1
2005-07-05 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in: depend on system-tools-backends >= 1.3.0
2005-07-05 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.3.0
2005-04-01 Pawan Chitrakar <pawan@nplinux.org>
* configure.in: Added ne in ALL_LINGUAS
2005-03-31 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-09 Adi Attar <aattar@cvs.gnome.org>
* configure.in: Added "xh" to ALL_LINGUAS.
2005-03-07 Abel Cheung <maddog@linuxhall.org>
* configure.in: Added "nb" to ALL_LINGUAS.
2005-03-07 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.2.0
2005-03-01 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.1.92
2005-02-16 Carlos Garnacho <carlosg@gnome.org>
* src/*/Makefile.am: remove empty CPPFLAGS. Fixes #166983
2005-02-09 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in: Added "th" (Thai) to ALL_LINGUAS.
2005-02-08 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.1.91
2005-02-08 Carlos Garnacho Parro <carlosg@gnome.org>
* Makefile.am, configure.in: Made it to compile requiring the new
system-tools-backends module, other cosmetic fixes
2005-01-25 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.1.90
2005-01-20 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in: Added nautilus-extensions dependency for the
shares-admin nautilus plugin, removed a couple of unneeded
dependencies
2005-01-13 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.1.4.1
2005-01-12 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in: ooops, fixed supported/unsupported tools compilation
2005-01-12 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.1.4
2005-01-10 Carlos Garnacho Parro <carlosg@gnome.org>
* src/*/*.desktop.in.in: added "Settings" category for putting the
tools in the correct place for the new menu layout. Fixes #163100
2004-12-21 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.1.3
2004-11-30 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in: gst now requires gtk 2.5.x
2004-11-25 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in, src/*/*desktop.in.in: patch by Christoffer Olsen
<co@deworks.net> to add X-GNOME-Bugzilla-Version to .desktop files
* src/common/CommonMakefile, src/*/*desktop.in.in: added some sanity
to icon finding and .desktop translation
2004-11-14 Carlos Garnacho Parro <carlosg@gnome.org>
* Makefile.am: moved the intltool-* files to DISTCLEANFILES.
Fixes #158213
2004-11-03 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.1
2004-10-12 Mohammad DAMT <mdamt@bisnisweb.com>
* configure.in: Added "id" (Indonesian) to ALL_LINGUAS
* po/id.po: Added Indonesian translation
2004-10-12 James Henstridge <james@jamesh.id.au>
* configure.in: only call AC_PROG_INTLTOOL once. Fixes a build
failure with recent intltool versions.
2004-09-20 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in: added all the tools by default, this is the
development branch. Added dependencies for the shares tool nautilus
component
2004-09-14 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in: build by default disks and shares too, this is
a development branch
* src/Makefile.am: added shares tool
2004-09-13 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 1.0
2004-09-12 Mugurel Tudor <mugurelu@go.ro>
* configure.in: Added "ro" to ALL_LINGUAS
2004-09-08 Arafat Medini <lumina@arabeyes.org>
* configure.in: Added Arabic locale "ar" to ALL_LINGUAS.
2004-09-01 Carlos Garnacho Parro <carlosg@gnome.org>
* Release 0.92
2004-08-30 Jayaradha <njaya@redhat.com>
* configure.in: Added ta to ALL_LINGUAS
2004-08-23 Ilkka Tuohela <hile@iki.fi>
* configure.in: Added fi to ALL_LINGUAS
2004-08-20 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.91.0
* configure.in: defaulted boot and services building to "no"
2004-08-07 Runa Bhattacharjee <runab@redhat.com>
* configure.in: Added Bengali (bn) in ALL_LINGUAS.
2004-08-29 Carlos Garnacho Parro <carlosg@gnome.org>
* configure.in: build by default disks and shares too, this is
a development branch
* src/Makefile.am: added shares tool
2004-08-02 Carlos Garnacho Parro <carlosg@gnome.org>
* gnome-system-tools.schemas.in: removed some unused keys. defaulted
"users/showall" to false
2004-07-19 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.90
2004-07-19 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Makefile.am, configure.in: added doc directory for being processed
too
2004-07-18 Carlos Garnacho Parro <garnacho@tuxerver.net>
* omf.make, xmldocs.make: added
2004-06-30 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.34
2004-05-30 Carlos Garnacho Parro <garnacho@tuxerver.net>
* configure.in: made GST depend on gtk+ 2.4, this is the first step
porting to the gtk 2.4 widgets
2004-05-15 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.33.0
2004-04-17 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_CN" to ALL_LINGUAS.
2004-04-10 Carlos García Campos <elkalmail@yahoo.es>
* configure.in: added src/disks/Makefile to AC_OUTPUT
2004-04-09 Carlos García Campos <elkalmail@yahoo.es>
* configure.in, src/Makefile.am: added --enable-<gst-module> configure
options to choose the gst modules to compile. Disks tool is disabled
by default.
2004-03-30 Adam Weinberger <adamw@gnome.org>
* configure.in: Added en_CA to ALL_LINGUAS.
2004-03-24 Gareth Owen <gowen72@yahoo.com>
* configure.in: Added en_GB to ALL_LINGUAS
2004-03-13 Alexander Shopov <ash@contact.bg>
* configure.in: added "bg" (Bulgarian) to ALL_LINGUAS.
2004-02-06 Robert Sedak <robert.sedak@sk.htnet.hr>
* configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
2004-02-06 Sanlig Badral <badral@openmn.org>
* configure.in: Added "mn" to ALL_LINGUAS.
2004-02-05 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.32.0
2004-02-01 Iñaki Larrañaga Murgitio <dooteo@euskalgnu.org>
* configure.in: Added "eu" (Basque) to ALL_LINGUAS.
2004-01-31 Carlos Garnacho Parro <garnacho@tuxerver.net>
* gnome-system-tools.schemas.in: added a key for recalling the
preferred bootloader, renamed "remote-configuration" and
"remote-hosts-list" to "remote_configuration" and
"remote_hosts_list"
2004-01-31 Žygimantas Beručka <uid0@tuxfamily.org>
* configure.in: Added "lt" to ALL_LINGUAS.
2004-01-07 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.31.1
2004-01-07 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Makefile.am: added OrigTree.pm to EXTRA_DIST
* Configure.in: set the intltool version to 0.28
2003-12-30 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.31.0
2003-12-30 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Makefile.am: changes for passing distcheck
2003-12-22 Alvaro del Castillo <acs@barrapunto.com>
* Added the unofficial tool for the moment Disk Admin
2003-12-09 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.30.0
2003-12-09 Carlos Garnacho Parro <garnacho@tuxerver.net>
* configure.in: removed cracklib check, it's not being used
at this moment
2003-10-26 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added ms (Malay) to ALL_LINGUAS.
2003-10-24 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.29.0
2003-10-23 Carlos Garnacho Parro <garnacho@tuxerver.net>
* configure.in: removed the *DEPRECATED flags
2003-10-22 Carlos Garnacho Parro <garnacho@tuxerver.net>
* TODO: update TODO
2003-10-15 Alvaro del Castillo <acs@barrapunto.com>
* interfaces/time.glade: numeric value and limit in values in time
* src/time/main.c: let the user change the time typing numbers
2003-10-13 Carlos Garnacho Parro <garnacho@tuxerver.net>
* release 0.28.0
2003-09-15 William Jon McCann <mccann@jhu.edu>
* src/boot/boot.desktop.in.in:
* src/network/network.desktop.in.in:
* src/services/services.desktop.in.in:
* src/time/time.desktop.in.in:
* src/users/users.desktop.in.in:
Added verbs to tooltips in desktop entries. Removed period from
tooltips. Reworked some of the wording.
* Makefile.am (install-data-local): Only install schemas if they
are requested.
2003-08-28 William Jon McCann <mccann@jhu.edu>
* gnome-system-tools.spec.in: Updated for GNOME 2. Added
support for consolehelper/PAM authentication.
2003-08-25 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.27.0
2003-08-25 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Makefile.am: s/srcdir/top_builddir/ in gconf schema generation
2003-08-23 Carlos Garnacho Parro <garnacho@tuxerver.net>
* gnome-system-tools.schemas.in: s/runlevel/services/, removed
the "default_runlevel" key, it's no longer neccesary
2003-08-21 Carlos Garnacho Parro <garnacho@tuxerver.net>
* configure.in: removed src/runlevel/Makefile and added
src/services/Makefile
2003-08-09 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Makefile.am: fixes in the gconf schema installation
* acconfig.h: added SSH_PATH
* configure.in: made it to search ssh, removed vte dependency, added
libutil dependency
* gnome-system-tools.schema.in: added two new keys for remote config
2003-06-25 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "mk" to ALL_LINGUAS.
2003-06-18 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "ml" in ALL_LINGUAS.
2003-06-07 Danilo Šegan <dsegan@gmx.net>
* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
2003-06-06 Paul Duffy <dubhthach@frink.nuigalway.ie>
* configure.in: Added ga to ALL_LINGUAS
2003-05-30 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.26.1
2003-05-22 Carlos Garnacho Parro <garnacho@tuxerver.net>
* autogen.sh: removed libtool version checking, that was extremely
outdated and has caused problems with libtool 1.5
2003-05-20 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.26.0
2003-05-19 Carlos Garnacho Parro <garnacho@tuxerver.net>
* configure.in: downgraded vte from 0.10.20 to 0.10.19, it works too
and makes redhat users able to compile gst
2003-05-19 James Livingston <jrl@ids.org.au>
* gnome-system-tools.spec.in: fix in the "name" field
2003-05-18 Joseph Wenninger <jowenn@kde.org>
* gnome-system-tools.pc.in: added, so any third party application could
find the gst backends and pixmaps directories easily through pkgconfig
* configure.in, Makefile.am: added pkgconfig stuff
2003-05-06 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.25.0
2003-03-13 Christian Neumair <chris@gnome-de.org>
* .cvsignore: Added missing files.
* BUGS, DISTROS, TESTING: s/XST/GST/.
* NEWS: Ditto (partitially).
* UI-GUIDELINES: s/Ximian Setup/GNOME System/.
* configure.in: Added AC_PREREQ macro. Needs to be same as in
backends/configure.in to satisfy some widespread ac wrappers.
2003-03-08 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.24.0
2003-02-21 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.23.0
2003-02-19 Carlos Garnacho Parro <garnacho@tuxerver.net>
* gnome-system-tools.schemas.in: fixed a couple of typos.
* configure.in: removed libutil dependency, and added vte dependency
2003-02-15 Carlos Garnacho Parro <garnacho@tuxerver.net>
* acconfig.h, configure.in: made configure search the su executable
path to use it in xst-su.c
2003-02-09 Carlos Garnacho Parro <garnacho@tuxerver.net>
* gnome-system-tools.schemas.in: fixed a really stupid bug I did
2003-02-09 Carlos García Campos <elkalmail@yahoo.es> and
Carlos Garnacho Parro <garnacho@tuxerver.net>
* configure.in, Makefile.am: Added gconf support
* gnome-system-tools.schemas.in: added
2003-01-11 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Amharic (am) to ALL_LINGUAS.
2003-01-05 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Dutch (nl) to ALL_LINGUAS.
2002-12-24 Carlos Garnacho Parro <garnacho@tuxerver.net>
* configure.in: added libutil GST dependency.
2002-12-02 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Release 0.22
2002-11-29 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Makefile.am: removed message-of-doom
2002-11-28 Carlos Garnacho Parro <garnacho@tuxerver.net>
* Makefile.am: s/ximian-setup-tools.spec/gnome-system-tools.spec/
2002-11-23 Tõivo Leedjärv <toivo@linux.ee>
* configure.in: Added et to ALL_LINGUAS.
2002-10-03 Christian Neumair <chris@gnome-de.org>
* src/runlevel/table.h: Removed GAL include.
2002-10-03 Carlos Garnacho <garnacho@tuxerver.net>
* configure.in: removed GAL dependency
2002-09-18 Tambet Ingo <tambet@ximian.com>
* SUPPORTED: Added RedHat 7.3, marked time and users too to work.
* configure.in: Find glib-genmarshal.
2002-09-14 Carlos Garnacho Parro <garparr@teleline.es>
* configure.in: next step, 0.22.0
2002-09-13 Carlos Garnacho Parro <garparr@teleline.es>
* made GNOME System Tools compile with the *_DISABLE_DEPRECATED flags
2002-09-12 Christian Neumair <chris@gnome-de.org>
* interfaces/*.glade.in: Made buttons HIG compliant.
2002-09-10 Peteris Krisjanis <peteris.krisjanis@os.lv>
* configure.in: Added Latvian (lv) to ALL_LINGUAS.