-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNEWS
7235 lines (5432 loc) · 225 KB
/
NEWS
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
GNOME System Tools Version 3.0.0, 2011-04-03
-----------------------------------------------
General
=======
- Update DOAP file
Translation
===========
- cs, courtesy of Marek Černocký
- de, courtesy of Mario Blättermann
- eo, courtesy of Kristjan SCHMIDT
- es, courtesy of Jorge González
- fr, courtesy of Bruno Brouard
- he, courtesy of Yaron Shahrabani
- lv, courtesy of Rūdofls Mazurs
- pl, courtesy of Piotr Drąg
- sl, courtesy of Andrej Žnidaršič
- zh_CN, courtesy of YunQiang Su
GNOME System Tools Version 2.91.90, 2011-02-26
-----------------------------------------------
General
=======
- Fix build with final GTK+3 (bug 642912)
- Fix closing GstDialogs and launching the help
- Update README file
Users
=====
- Use /org/gnome/system-tools/ for GSettings schema path
Time
====
- Fix libemap.a linking with --add-needed
- Remove useless time zone icon from main dialog
Translation
===========
- bg, courtesy of Alexander Shopov
- cs, courtesy of Marek Černocký
- de, courtesy of Mario Blättermann
- es, courtesy of Daniel Mustieles
- et, courtesy of Mattias Põldaru
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Diéguez
- he, courtesy of Yaron Shahrabani
- nb, courtesy of Torstein Adolf Winterseth
- sl, courtesy of Klemen Košir
- ug, courtesy of Sahran
- zh_HK, courtesy of Wei-Lun Chao
- zh_TW, courtesy of Wei-Lun Chao
GNOME System Tools Version 2.91.1, 2010-12-19
-----------------------------------------------
General
=======
- Port to GTK+3, drop support for GTK+2
- Move from PolkitLockButton to a temporary implementation based on GPermission
- Use upstream gettext instead of GLib's
Users
=====
- Fix setting password from random entry
- Fix editing newly created users
- Dramatic performance improvements when loading users and groups
- Hide custom user profile when not selected
- Fix cases where advanced settings cannot be edited
- Don't unref() user face if it's NULL
- Remove users search-bar code
Time
====
- Rework EMap widget to use Cairo and new GTK+ API (Benjamin Otte)
- Various cleanups in EMap widget
- Remove unreachable NTP servers
- Don't suggest Stratum 1 NTP servers
Network
=======
- Fix markup in interfaces description
Translation
===========
- ca, courtesy of Joan Duran
- ca@valencia, courtesy of Joan Duran
- es, courtesy of Jorge González
- eu, courtesy of Iñaki Larrañaga Murgoitio
- he, courtesy of Yaron Shahrabani
- it, courtesy of Gianvito Cavasoli
- ko, courtesy of Changwoo Ryu
- nb, courtesy of Kjartan Maraas
- sk, courtesy of Pavol Klačanský
- sl, courtesy of Klemen Košir
- ug, courtesy of Sahran
GNOME System Tools Version 2.32.0, 2010-09-27
-----------------------------------------------
Translation
===========
- ar, courtesy of Khaled Hosny
- bg, courtesy of Damyan Ivanov
- da, courtesy of Ask Hjorth Larsen
- it, courtesy of Gianvito Cavasoli
- ja, courtesy of Takayuki KUSANO
- lt, courtesy of Žygimantas Beručka
- pt_BR, courtesy of Daniel S. Koda
- ru, courtesy of Yuri Myasoedov
- ug, courtesy of Sahran
GNOME System Tools Version 2.31.92, 2010-09-13
-----------------------------------------------
Users
=====
- Don't allow locked accounts to use password-less login
Translation
===========
- cs, courtesy of Marek Černocký
- de, courtesy of Christian Kirbach
- fr, courtesy of Bruno Brouard
- el, courtesy of Michael Kotsarinis
- en_GB, courtesy of Philip Withnall
- nb, courtesy of Kjartan Maraas
- pl, courtesy of Piotr Drąg
- pt, courtesy of Duarte Loreto
- sv, courtesy of Daniel Nylander
- ta, courtesy of Dr.T.Vasudevan
- zh_CN, courtesy of YunQiang Su
GNOME System Tools Version 2.31.91, 2010-08-30
-----------------------------------------------
General
=======
- Update GSettings support
- Mark GSettings schemas for translation
- Remove unnecessary markup from strings
Users
=====
- Improve support for changing home directory
- Fallback to displaying login when real name is missing
- Make groups management UI clearer
- Change "Short Name" to "Username"
- Handle two new error messages from 'passwd'
Translation
===========
- ar, courtesy of Khaled Hosny
- cs, courtesy of Marek Černocký
- de, courtesy of Mario Blättermann
- eo, courtesy of Kristjan SCHMIDT
- es, courtesy of Jorge González
- et, courtesy of Ivar Smolin
- et, courtesy of Mattias Põldaru
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- he, courtesy of Yaron Shahrabani
- hu, courtesy of Gabor Kelemen
- lv, courtesy of Rūdolfs Mazurs
- nb, courtesy of Kjartan Maraas
- pa, courtesy of A S Alam
- sl, courtesy of Matej Urbančič
- sr, courtesy of Милош Поповић
- sr@latin, courtesy of Miloš Popović
- sv, courtesy of Daniel Nylander
- ta, courtesy of Dr.T.Vasudevan
- zh_CN, courtesy of Tao Wang
- zh_HK, courtesy of Chao-Hsiung Liao
- zh_TW, courtesy of Chao-Hsiung Liao
GNOME System Tools Version 2.31.1, 2010-05-24
-----------------------------------------------
General
=======
- Migrate to GSettings
- Build with -DGSEAL_ENABLED (Andre Klapper)
- Fix a few warnings
Users
=====
- Show login instead of (null) for users with no Real name
- Fix Add/Delete buttons not growing enough to hold their labels
- Fix incorrect English sentence in new user dialog
- Update users list when GConf keys are changed
- Don't hang when new and old password are too similar
- Escape user name and login before passing it to tree view
- Fix password label changing size
- Fix updating users list when conf key is changed
- Fix string about password length
Shares
======
- Fix wrong capitalization in documentation
Time
====
- Remove deprecated GtkWidget flags in EMap and re-sync with Evolution
Translation
===========
- ca@valencia, courtesy of Joan Duran
- en@shaw, courtesy of Thomas Thurman
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- gl, courtesy of Francisco Diéguez
- ms, courtesy of Ahmed Noor Kader Mustajir Md Eusoff
GNOME System Tools Version 2.30.0, 2010-03-29
-----------------------------------------------
General
=======
- Fix a few compiler warnings (Andre Klapper, Bug 612805)
Users
=====
- Only update Real name in case of success
- Force updating groups when showing groups dialog
- Fix hang when new and old password only differ in case
- Fix hang when changing empty password to something else
- Fix hiding "encrypt home folder" option when not supported
- Fix "Reload config?" dialog shown after creating a group
- Remove duplicate deletion of groups
- Replace UTF-8 characters escaped by Glade (Gabor Kelemen, Bug 613115)
- Remove placeholder strings
- Mark a string as translatable
- Fix warning when NO_PASSWD_LOGIN group doesn't exist
Translation
===========
- af, courtesy of F. Wolff
- be, courtesy of Ihar Hrachyshka
- bg, courtesy of Alexander Shopov
- bn, courtesy of Israt Jahan
- ca, courtesy of Joan Duran
- cs, courtesy of Marek Černocký
- da, courtesy of Ask Hjorth Larsen
- de, courtesy of Christian Kirbach
- el, courtesy of Simos Xenitellis
- en_GB, courtesy of Philip Withnall
- es, courtesy of Jorge González
- et, courtesy of Ivar Smolin
- eu, courtesy of Iñaki Larrañaga Murgoitio
- fi, courtesy of Tommi Vainikainen
- fr, courtesy of Milan Bouchet-Valat
- gl, courtesy of Fran Diéguez
- hu, courtesy of Gabor Kelemen
- it, courtesy of Gianvito Cavasoli
- ko, courtesy of Changwoo Ryu
- lt, courtesy of Žygimantas Beručka
- ms, courtesy of Ahmed Noor Kader Mustajir Md Eusoff
- pa, courtesy of A S Alam
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Jonh Wendell
- pt, courtesy of Duarte Loreto
- ro, courtesy of Adi Roiban
- ru, courtesy of Leonid Kanter
- sl, courtesy of Matej Urbančič
- sr, courtesy of Бранко Кокановић
- sr@latin, courtesy of Branko Kokanović
- sv, courtesy of Daniel Nylander
- ta, courtesy of Dr,T,Vasudevan
- uk, courtesy of Maxim Dziumanenko
- zh_HK, courtesy of Kevin Wei
- zh_TW, courtesy of Kevin Wei
GNOME System Tools Version 2.29.92, 2010-03-08
-----------------------------------------------
Users
=====
- Update main view fields after changing settings
- Gracefully handle non-existent groups listed in user profiles
- Work around an adduser limitation that makes it fail when a group using the new login already exists
- Support account password locking/unlocking
Translation (made harder due a maintainer's mistake about freeze break)
===========
- ar, courtesy of Khaled Hosny
- bg, courtesy of Alexander Shopov
- ca, courtesy of Joan Duran
- da, courtesy of Ask Hjorth Larsen
- de, courtesy of Christian Kirbach
- el, courtesy of Kostas Papadimas
- en_GB, courtesy of Philip Withnall
- es, courtesy of Jorge González
- et, courtesy of Ivar Smolin
- fr, courtesy of Claude Paroz
- gl, courtesy of Antón Méixome
- pl, courtesy of Piotr Drąg
- ru, courtesy of Yuri Kozlov
- sl, courtesy of Matej Urbančič
- sv, courtesy of Daniel Nylander
- zh_HK, courtesy of Chao-Hsiung Liao
- zh_TW, courtesy of Chao-Hsiung Liao
GNOME System Tools Version 2.29.91, 2010-02-15
-----------------------------------------------
Common
======
- Add nfs-common and nfs-server to the services list (needed by ArchLinux)
Users
=====
- Fix crash when main group isn't set
- Fix hang when configuration files are updated while the tool is running
- Fix selecting current user on start, and ensure we always show it in the list
- Always make new users own their home directory, if it already existed
- Unreference users and groups on exit to allow them to clear their data
- Small cosmetic improvements
Time
====
- Fix time-admin crash due to broken callbacks
- Don't update NTP configuration on every start
Translation
===========
- de, courtesy of Christian Kirbach
- gl, courtesy of Fran Diéguez
- ta, courtesy of Dr. T. Vasudevan
GNOME System Tools Version 2.29.90, 2010-02-08
-----------------------------------------------
Users
=====
- Fix hangs when changing own password with some PAM setups
- Update password field to indicate whether password is empty and/or asked on login
- Support disabled accounts, waiting for the backends to report this
- Sort users and groups list, implement search
- Don't resize window with long user names
- Improve buttons string to be "Change..."
- Fix "Reload Changes?" dialog shown after creating an user
- Fix a few leaks of OobsUsers and OobsGroups
Services
========
- Only commit changes to one service at a time, to avoid many harmful issues
- Remove unlock button, ask for authentication on-the-fly
- Improve appearance of services list, use some additional icons and known services
Shares
======
- Don't create an OobsIfacesConfig object since it's not used and consumes memory
Translation
===========
- ar, courtesy of Khaled Hosny
- es, courtesy of Jorge González
- fr, courtesy of Claude Paroz
- nb, courtesy of Kjartan Maraas
- pa, courtesy of A S Alam
- sl, courtesy of Matej Urbančič
- zh_CN, courtesy of Eleanor Chen
- zh_HK, courtesy of Chao-Hsiung Liao
- zh_TW, courtesy of Chao-Hsiung Liao
GNOME System Tools Version 2.29.3, 2010-01-25
-----------------------------------------------
Users
=====
- Change password for current user by running 'passwd', to avoid breaking keyrings and encrypted dirs
- Ask for PolicyKit authentication when it most makes sense, i.e. when showing dialogs
- Option to set encrypted home directories when creating users (on platforms that support it)
- When editing one group, only commit changes to that group
- When changing Real name, update it in the users list
- Select current user on start, and the first one after selected user has been deleted
- Don't force updating configuration twice on start
Shares
======
- Use new oobs_object_authenticate() instead of broken gst_dialog_authenticate()
Translation
===========
- ar, courtesy of Khaled Hosny
- bn, courtesy of Sadia Afroz
- es, courtesy of Jorge González
- nb, courtesy of Kjartan Maraas
- sv, courtesy of Daniel Nylander
GNOME System Tools Version 2.29.2, 2010-01-11
-----------------------------------------------
Users
=====
- Move to new System Tools Backends protocol (new liboobs API). We now only commit changes to one user at a time, reducing the risk for dangerous bugs.
- Include default profiles configuration file (user-profiles.conf). Distributors should modify it to suit their needs and send them back for inclusion.
- When creating an user, don't force UID, main group, home directory and shell: these parameters are now handled (better) by the platform tools.
- Allow removing home directory when deleting an user.
- Don't allow deleting the last administrator account, and warn when the user is losing its own admin rights. Same for active users.
- Don't allow creating a group with an existing GID.
- Use UID and GID ranges defined by liboobs, depending on the platform's abilities.
- Clear suggested login entry when Real name is emptied in the new user dialog.
- Change GConf "showall" option to apply only on users. System groups are always shown, since they are the most interesting ones.
- Various UI and string improvements.
Translation
===========
- ast, courtesy of astur
- es, courtesy of Jorge González
- et, courtesy of Ivar Smolin
- fr, courtesy of Claude Paroz
- nb, courtesy of Kjartan Maraas
- sl, courtesy of Matej Urbančič
- uk, courtesy of Maxim Dziumanenko
GNOME System Tools Version 2.29.1, 2009-11-30
-----------------------------------------------
General
=======
- Enable Automake silent rules by default, and compiler warnings
- Remove call to deprecated gdk_event_get_graphics_expose() (thanks to Andre Klapper)
Users
=====
- Complete rework of the user interface: settings are now shown in the main dialog, with separate dialogs to edit them. Unlock button is gone, replaced with on-the-fly authentication request when applying changes.
- Login proposals are now shown when creating an user, with live checking of forbidden characters, and transliteration from Unicode where possible.
- Fix empty shells combo box
- Fix GID wrongly set to 0 in group settings dialog, which could lead to adding users to the root group
- Add privilege groups from Debian (Sam Morris)
- Always show system groups: "showall" GConf option is now only for users, because system groups are the most interesting ones
Shares
======
- Don't check for Nautilus dependencies when not building it (Emilio Pozuelo Monfort)
Time
====
- Remove obsolete time servers, which generated log error messages from ntpd (thanks to MechaMechanism)
Services
========
- Never reset script boot priority to a default of 50, but use previous value.
- Add landscape-client to the list of known services.
Network
=======
- Bring back PPP connection type combo box, which was empty since the migration to GtkBuilder
Translation
===========
- ar, courtesy of Khaled Hosny
- br, courtesy of denis
- ca, courtesy of Josep Puigdemont i Casamajó
- cs, courtesy of Jiri Eischmann
- da, courtesy of Kenneth Nielsen
- de, courtesy of Christian Kirbach
- el, courtesy of Kostas Papadimas
- en_GB, courtesy of Philip Withnall
- en@shaw, courtesy of Thomas Thurman
- es, courtesy of Jorge González
- et, courtesy of Ivar Smolin
- fi, courtesy of Tommi Vainikainen
- hu, courtesy of Gabor Kelemen
- it, courtesy of Gianvito Cavasoli
- mai, courtesy of Sangeeta Kumari
- mr, courtesy of Sandeep Shedmake
- nb, courtesy of Kjartan Maraas
- nds, courtesy of Nils-Christoph Fiedler
- pl, courtesy of Tomasz Dominikowski
- pt_BR, courtesy of André Gondim
- pt, courtesy of Duarte Loreto
- ro, courtesy of Adi Roiban
- sl, courtesy of Matej Urbančič
- sv, courtesy of Daniel Nylander
- ta, courtesy of Dr.T.Vasudevan
- te, courtesy of Krishna Babu K
- uk, courtesy of Maxim Dziumanenko
- zh_CN, courtesy of Tao Wei
- zh_HK, courtesy of Chao-Hsiung Liao
- zh_TW, courtesy of Chao-Hsiung Liao
GNOME System Tools Version 2.27.3, 2009-08-20
-----------------------------------------------
The GNOME System Tools version 2.27.3 have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends know nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
General
=======
- Port to PolicyKit1. This bumps the dependency on the system-tools-backends to 2.8. We now depend on libpolkit-gtk-1 instead of PolicyKit itself. (Milan Bouchet-Valat)
- Fix compiler warnings with printf()s (Robert Ancell)
- Don't mark for translation filesystem path strings (Claude Paroz)
- Add groups and services used by PLD (Patryk Zawadzki)
- Always report detailed errors when committing configuration changes (Milan Bouchet-Valat)
Services
========
- Support Gentoo services management (Jeremy Guitton)
Users
=====
- Fix user profiles combo by creating its model (removes warnings and makes it work!) (Milan Bouchet-Valat)
- Fix showing profiles and groups in user settings (Milan Bouchet-Valat)
- Various fixes with regard to authorizations and widget's sensitivity (Milan Bouchet-Valat)
- Fix warnings about GtkAdjustment page-size property (Milan Bouchet-Valat)
Translation
===========
- bg, courtesy of Yavor Doganov
- bn, courtesy of Maruf Ovee
- es, courtesy of Jorge González
- et, courtesy of Ivar Smolin
- fi, courtesy of Tommi Vainikainen
- fr, courtesy of Claude Paroz
- ga, courtesy of Seán de Búrca
- gl, courtesy of Antón Méixome
- he, courtesy of Yaron Shahrabani
- nb, courtesy of Kjartan Maraas
- pt_BR, courtesy of Djavan Fagundes
- sv, courtesy of Daniel Nylander
- ta, courtesy of Dr.T.Vasudevan
Thanks to anyone involved in this release; downstream patches have not completely been committed yet, and patchers are still active!
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.27/
GNOME System Tools Version 2.27.2, 2009-07-27
-----------------------------------------------
The GNOME System Tools version 2.27.2 have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
General
=======
- Removed not built code of the old boot druid. This removed the dependency on libgnomeui via GnomeDruid. (Stéphane Demurget)
- Remove useless headers drawing dependencies on libgnome and libgnomeui. (Andre Klapper)
- Complete migration to GtkBuilder. The g-s-t no longer require libglade now. (Javier Jardón)
- Much upstreaming of patches from Debian and Ubuntu (please read the notice at the end of the announcement).
- Other old patches from Bugzilla applied.
Common
======
- Don't use default D-Bus timeout when asking PolicyKit for authentication. (Chris Coulson)
- Partly fix broken jhbuild by taking into account installation prefix. (Milan Bouchet-Valat)
Network
=======
- Fix crash when editing properties of a host. (Josselin Mouette)
- Fix crash when saving network location. (Milan Bouchet-Valat)
Services
========
- Update the list of boot services and reorder it. (Jeremy Guitton, Alex Magaz, Andy Owen and Martin Pitt)
Time
====
- Add a new time server from Lithuania. (Andrius Burokas)
- Fix a bug with the clock spin button that made it skip certain values. (James Westby)
Users
=====
- Move GECOS fields to a new "Contact information" tab, making the main tab simpler and allowing the dialog to fit on small screens like netbooks. (Milan Bouchet-Valat, Michael Terry)
- Don't allow a new user or group to overwrite an existing group with all of its members (Milan Bouchet-Valat, James Westby)
- Never reset the home dir of an existing user to its default. (Martin Pitt, James Westby)
- Fix group creation, which did not work at all. (James Westby)
- Fix wrong string (Loïc Minier, thanks to Kenrick Bingham and Goswin von Brederlow).
Documentation
=============
- Add missing screenshot to Makefile.am. (Pedro Villavicencio)
Translation
===========
- et, courtesy of Ivar Smolin
- fi, courtesy of Ilkka Tuohela
- gu, courtesy of Sweta Kothari
- he, courtesy of Yaron Shahrabani
- pt_BR, courtesy of Leonardo Ferreira Fontenelle
- sv, courtesy of Daniel Nylander
- ta, courtesy of Dr.T.Vasudevan
- uk, courtesy of wanderlust
Notice to packagers
===================
Many patches from Debian and Ubuntu have been upstream in this release. Here's the list of the patches to drop:
10_add_missing_services.patch
23_users_update_model.patch (obsolete since the 2.22 series, see bgo#489187)
26_users_home_dir.patch
50_min-max-gid.patch
51_users_fit_575_height.patch
85_users_fix_add_group.patch
86_disable_existing_group_for_new_username.patch
91_time_admin_adjustment.patch
92_postgresql_versions.patch
93_polkit_dbus_timeout.patch
Thanks to anyone involved in this release, especially downstream for all the patches accumulated for so long!
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.27/
GNOME System Tools Version 2.27.1, 2009-07-03
-----------------------------------------------
The GNOME System Tools version 2.27.1 have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
General
=======
- Replace deprecated GTK symbols (Thomas H.P. Andersen)
- Make PolicyKit support optional via a configure switch (Gilles Dartiguelongue)
Shares
============
- Fix a few non-translatable strings (Sebastien Bacher)
Users
===========
- Add an option to allow password-less logins (Milan Bouchet-Valat)
Translation
===========
- ar (Djihed Afifi, Osama Khalid)
- as (Amitakhya Phukan)
- el (Nikos Charonitakis, Michael Kotsarinis, Thanos Lefteris, Fotis Tsamis, Simos Xenitellis, Marios Zindilis)
- en_GB (Jen Ockwell, Philip Withnall)
- es (Jorge Gonzalez)
- et (Ivar Smolin)
- fr (Claude Paroz)
- he (Mark Krapivner)
- gl (Suso Baleato)
- or (Manoj Kumar Giri)
- pt_BR (Krix Apolinário, Thadeu Lima de Souza Cascardo)
- sk (Pavol Klačanský)
- sv.po (Daniel Nylander)
- zh_CN (TeliuTe, Zhang Miao)
Thanks to anyone involved in this release.
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.27/
GNOME System Tools Version 2.22.2, 2009-03-17
-----------------------------------------------
The GNOME System Tools version 2.22.2 have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
General
=======
- Clean up GTK Includes (Maxim Ermilov)
- Remove usage of deprecated API (Andre Klapper, Thomas H.P. Andersen)
Translation
===========
- ar (Anas Husseini)
- as (Amitakhya Phukan)
- ast (Astur)
- bn_IN (Runa Bhattacharjee)
- de (Mario Blättermann)
- dz (Dawa pemo)
- en_GB (Jen Ockwell)
- es (Jorge González)
- fi (Ilkka Tuohela)
- gl (Suso Baleato)
- he (Mark Krapivner)
- hi (Rajesh Ranjan)
- it (Francesco Marletta)
- ko (Changwoo Ryu)
- lv (Raivis Dejus)
- or (Manoj Kumar Giri)
- pl (Tomasz Dominikowski)
- ps (Zabeeh Khan)
- pt_BR (Leonardo Ferreira Fontenelle)
- ro (Adi Roiban)
- sk (Pavol Klačanský)
- sv (Daniel Nylander)
- te (Krishna Babu K)
- th (Theppitak Karoonboonyanan)
- zh_HK (Woodman Tuen)
- zh_TW (Woodman Tuen)
Thanks to anyone involved in this release.
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.22/
GNOME System Tools Version 2.22.1, 2008-09-23
-----------------------------------------------
The GNOME System Tools version 2.22.1 have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
Network
=======
- Mark interface as active if it wasn't previously configured, and as auto if
it's been (or already was) activated (garnacho)
Translation
===========
- ar (Anas Husseini)
- bg (Yavor Doganov)
- da (Kenneth Nielsen)
- de (Mario Blättermann)
- el (Giannis Katsampriris)
- es (Jorge Gonzalez)
- et (Priit Laes)
- fi (Ilkka Tuohela)
- gu (Ankitkumar Patel)
- he (Yair Hershkoviz)
- hi (Rajesh Ranjan)
- hr (Robert Sedak)
- hu (Gabor Kelemen)
- is (Anna Ármannsdóttir)
- it (Gianvito Cavasoli)
- kn (Shankar Prasad)
- nb (Kjartan Maraas)
- nn (Eskild Hustvedt)
- oc (Yannig Marchegay)
- pt_BR (Fabrício Godoy)
- ro (Mişu Moldovan)
- sr (Goran Rakić)
- ta (I. Felix)
- te (Krishna Babu K)
- th (Theppitak Karoonboonyanan)
- tr (Deniz Kocak)
- vi (Clytie Siddall)
Thanks to anyone involved in this release.
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.22/
GNOME System Tools Version 2.22.0, 2008-02-11
-----------------------------------------------
The GNOME System Tools version 2.22.0 "I'm looking for a maintainer" have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
Users
=====
- Fix #518785 (garnacho)
Common
======
- Fix #518796 (garnacho)
Shares
======
- Fix spurious critical warning in the nautilus extension (garnacho)
Network
=======
- Support having '/' in location names (garnacho)
- Support better having a NULL OobsIfacePPP::ethernet when dealing with locations (garnacho)
Translation
===========
- ar (Anas Husseini)
- cs (Kamil Paral, Lucas Lommer)
- el (Kostas Papadimas)
- en_GB (Philip Withnall)
- es (Jorge Gonzalez)
- et (Ivar Smolin)
- fr (Stéphane Raimbault)
- hu (Gabor Kelemen)
- ja (Takeshi AIHANA)
- ko (Changwoo Ryu)
- lt (Gintautas Miliauskas)
- mr (Sandeep Shedmake)
- nb (Kjartan Maraas)
- ok (Yannig Marchegay)
- ru (Yuri Kozlov)
- uk (Maxim Dziumanenko)
- zh_CN (Yang Zhang)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
Thanks to anyone involved in this release.
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.22/
GNOME System Tools Version 2.21.92, 2008-02-11
-----------------------------------------------
The GNOME System Tools version 2.21.92 "Come true" have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
Time
====
- Add tangoified time-admin icon (Jaap Haitsma)
Common
======
- Only show one "configuration changed" dialog if several signals are received (garnacho)
- Do not reload configuration if there's a good chance the tool changed the configuration (garnacho)
Shares
======
- Do not behave strangely when clicked on a separator in the shares table header (garnacho)
Translations
============
- be@latin (Ihar Hrachyshka)
- ca (Gil Forcada)
- de (Philipp Kerling)
- es (Jorge Gonzalez)
- et (Ivar Smolin)
- eu (Inaki Larranaga Murgoitio)
- fi (Ilkka Tuohela)
- fr (Robert-André Mauchin, Claude Paroz)
- gl (Ignacio Casal Quinteiro)
- he (Yair Hershkoviz)
- hu (Zoltán Máthé)
- mk (Jovan Naumovski)
- nb (Kjartan Maraas)
- nl (Tino Meinen)
- pl (GNOME PL Team)
- pt (Duarte Loreto)
- pt_BR (Hugo Doria, Leonardo Ferreira Fontenelle)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
Thanks to anyone involved in this release.
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.21/
GNOME System Tools Version 2.21.91, 2008-02-11
-----------------------------------------------
The GNOME System Tools version 2.21.91 "Funnily ominous" have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
Network
=======
- Make essid a mandatory field (garnacho)
Translations
============
- ar (Djihed Afifi)
- et (Ivar Smolin)
- gl (Ignacio Casal Quinteiro)
- ja (Takeshi AIHANA)
- mk (Arangel Angov)
- oc (Yannig Marchegay)
- pl (GNOME PL Team)
- pt (Duarte Loreto)
- th (Theppitak Karoonboonyanan)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
Thanks to anyone involved in this release.
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.21/
GNOME System Tools Version 2.21.90, 2008-01-28
-----------------------------------------------
The GNOME System Tools version 2.21.90 "Just going up to go down" have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
Users
=====
- plug a leak (garnacho);
Translations
============
- el (Γιάννης Κατσαμπίρης)
- eu (Inaki Larranaga Murgoitio)
- he (Yair Hershkovitz)
Thanks to anyone involved in this release.
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.21/
GNOME System Tools Version 2.21.5.1, 2008-01-15
-----------------------------------------------
The GNOME System Tools version 2.21.5.1 "Not really an ESP" have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
Common
======
- Do not depend on unreleased Glib (garnacho)
Translations
============
- sv (Daniel Nylander)
Thanks to anyone involved in this release.
Downloading
===========
You can get it from :
ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.21/
GNOME System Tools Version 2.21.5, 2008-01-14
-----------------------------------------------
The GNOME System Tools version 2.21.5 "Out of the cold" have been released.
The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library.
Changes since last release
==========================
Common
======
- Switch CFLAGS order to be able to compile with other gst.h files around (Jeremy Messenger)