-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
4700 lines (3928 loc) · 147 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-control-center 2.30.1 (2010-04-26)
About me:
- Don't hang when new and old password only differ in case (Milan Bouchet-Valat)
Translations:
- ar (Khaled Hosny)
- ast (Xandru Armesto)
- ca@valencia (Carles Ferrando)
- crh (Reşat SABIQ)
- el (Marios Zindilis)
- fr (Claude Paroz)
- gu (Sweta Kothari)
- id (Andika Triwidada)
- kn (Shankar Prasad)
- lv (Peteris Krisjanis)
- ml (Ani Peter)
- mr (Sandeep Shedmake)
- or (Manoj Kumar Giri)
- ru (Leonid Kanter)
- zh_CN (Liu Aleaxander)
-------------------------------------------------------------------------------
gnome-control-center 2.30.0 (2010-03-25)
About me:
- Fix global variable confusion (Michal Schmidt)
- Fix remembering of data between runs (Michal Schmidt)
Appearance:
- Mark a string for translation (Gabor Kelemen) (#612015)
- Fix GTK+ multi-threading (Matthias Clasen) (#610003)
Display:
- Don't show a tooltip while a monitor is being dragged (Federico Mena Quintero)
Typing break:
- Lock all the screens (Matthias Clasen) (#492974)
Translations:
- bg (Alexander Shopov)
- bn (Jamil Ahmed)
- ca (Joan Duran)
- crh (Reşat SABIQ)
- cz (Petr Kovar)
- da (Ask H. Larsen)
- de (Christian Kirbach)
- en_GB (Bruce Cowan)
- es (Jorge González)
- et (Ivar Smolin, Mattias Põldaru)
- eu (Inaki Larranaga Murgoitio)
- fi (Tommi Vainikainen)
- fr (Claude Paroz)
- gl (Fran Diéguez)
- gu (Sweta Kothari)
- he (Thanos Lefteris, Kostas Papadimas)
- hu (Gabor Kelemen)
- it (Luca Ferretti)
- ko (Changwoo Ryu)
- lt (Žygimantas Beručka)
- nn (Torstein Adolf Winterseth)
- pa (A S Alam)
- pl (Piotr Drąg)
- pt (Duarte Loreto)
- pt_BR (Og B. Maciel, Antonio Fernandes)
- ro (Adi Roiban)
- ru (Yuri Myasoedov, Юрий Козлов)
- sl (Matej Urbančič)
- sr (Miloš Popović)
- sv (Daniel Nylander)
- ta (vasudeven)
- uk (Maxim V. Dziumanenko)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
-------------------------------------------------------------------------------
gnome-control-center 2.29.92 (2010-03-08)
Translations:
- ar (Khaled Hosny)
- en_GB (Bruce Cowan)
- eu (Iñaki Larranaga Murgoitio)
- fr (Claude Paroz)
- gl (Fran Diéguez)
- he (Liel Fridman)
- hu (Gabor Kelemen)
- ja (Takayuki KUSANO)
- ko (Changwoo Ryu)
- nb (Kjartan Maraas)
- nn (Torstein Adolf Winterseth)
- pl (Piotr Drąg)
- pt_BR (Antonio Fernandes C. Neto)
- ru (Leonid Kanter)
- sv (Daniel Nylander)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
-------------------------------------------------------------------------------
gnome-control-center 2.29.91 (2010-02-24)
Appearance:
- Add 'span' as a style for backgrounds
Display Properties:
- Now fits in 640x480 and has a better layout overall.
- Jst use "monitors" for wording, not a mixture of "monitor",
"display", "screen".
- Make the mouse cursor indicate when you can drag a monitor
Translations:
- ar (Khaled Hosny)
- bg (Alexander Shopov)
- ca (Joan Duran)
- de (Mario Blättermann)
- es (Jorge González)
- gl (Fran Diéguez)
- hu (Gabor Kelemen)
- pl (Piotr Drąg)
- pt_BR (Vladimir Melo)
- ro (Lucian Adrian Grijincu)
- sl (Matej Urbančič)
- ta (vasudeven)
- zh_HK & zh_TW (Chao-Hsiung Liao)
-------------------------------------------------------------------------------
gnome-control-center 2.29.90 (2010-02-08)
About-me:
- Fix hangs when 'passwd' outputs unexpected answers (Milan Bouchet-Valat)
- Fix list of passwd error strings (Milan Bouchet-Valat)
- Fix fingerprint name on 2nd page (Bastien Nocera)
At-properties:
- Add AutostartCondition to gnome-at-session.desktop (Martin Pitt) (#608138)
Mouse:
- Fix mnemonics conflicts on touchpad tab (Jens Granseuer) (#608057)
Translations:
- de (Mario Blättermann)
- es (Jorge González)
- et (Ivar Smolin)
- nb (Kjartan Maraas)
- pa (A S Alam)
- pt_BR (Antonio Fernandes C. Neto)
- sl (Matej Urbančič, Andrej Žnidaršič)
-------------------------------------------------------------------------------
gnome-control-center 2.29.6 (2010-01-26)
About-me:
- Add translator comments to 'Home' string (Claude Paroz) (#605944)
Appearance:
- Use GtkInfoBar rather than a copy of GeditMessageArea (Thomas Wood)
Common:
- Don't leak file descriptors when checking for colour schemes (Jens Granseuer) (#606155)
Mouse:
- Disable tapping only for touchpads without a left mouse button (Peter Hutterer)
Translations:
- bg (Alexander Shopov)
- bn (Runa Bhattacharjee, Jamil Ahmed)
- hu (Gabor Kelemen)
- mr (Sandeep Shedmake)
- nb (Kjartan Maraas)
- sv (Daniel Nylander)
- ta (vasudeven)
- uk (Maxim V. Dziumanenko)
-------------------------------------------------------------------------------
gnome-control-center 2.29.4 (2009-12-24)
General:
- Drop obsolete check for HAL (#595832) (Jens Granseuer)
- Use external libslab when available (Vincent Untz)
- Add gthread-2.0 to common modules for linking (#600589) (Jens Granseuer)
- Enable silent build rules (Thomas Wood)
Common:
- Fix all the keybindings showing up when using compiz (#600021) (Bastien
Nocera)
- Fix leak (Jens Granseuer)
- Fix warning (Jens Granseuer)
About-me:
- Fix crash when closing the window using the window button (#592348) (Jens
Granseuer)
- Add missing PNG files (Bastien Nocera)
Appearance:
- Remove interface tab (#592756) (William Jon McCann)
- Add OnlyShowIn=GNOME to the .desktop file (#594709) (Thomas Wood)
- Update the background style option labels (#411048) (Thomas Wood)
- Fix tooltip in the background chooser (#596369) (Matthias Clasen)
- Add support for per-monitor backgrounds (#147808) (William Jon McCann)
Default applications:
- Update the exec arg when changing terminal (#597185) (Vincent Untz)
- Be sure to add the gconf directories for monitoring (#597186) (Thomas Wood)
- Return an empty string for the custom web item (Thomas Wood)
Display:
- Don't assert when the current output doesn't have a resolution set yet
(#593866) (Federico Mena Quintero)
- Automatically turn on outputs which support Mirror Screens (#590823)
(Federico Mena Quintero)
- Sensitize 'Mirror Screens' depending on whether mirror mode is actually
supported (Federico Mena Quintero)
- Desensitize the on/off radio buttons if we are in Mirror Screens mode
(Federico Mena Quintero)
- Show 'Mirror Screens' in the monitor label, not a random monitor's name
(Federico Mena Quintero)
Font Viewer:
- Use pango_language_get_sample_string for sample text (#595107) (Jens
Granseuer)
- Expand the Copyright display to get rid of unnecessary scrollbar (Jens
Granseuer)
- Don't use URI notation when installing fonts (#603732) (Jens Granseuer)
Keybindings:
- Fix broken logic in keybinding tree model (Robert Ancell)
- Fix zombie bindings appearing after deleting custom shortcuts (#596351) (Jens
Granseuer)
- Show shortcuts for the active window manager (#600531) (Wang Xin)
- Remove sleep key entry (#170175) (Bastien Nocera)
Keyboard:
- Major UI reorganization (Sergey V. Udaltsov)
- Fix mnemonic conflict in mousekeys tab (#586433) (Jens Granseuer)
Mouse:
- Disable two-finger scrolling/tapping based on touchpad capabilities. (Peter
Hutterer)
Network:
- Keep proxies in sync when "use same proxy" is selected (#589952) (Cyril
Roelandt)
Typing break:
- Increase delay for activating the postpone button to 5s (#597086) (Tim Waugh)
- Reset timer after suspend (#430797) (Jens Granseuer)
Windows:
- Don't allow Ctrl+Click as window movement modifier (#409405) (Jens Granseuer)
Translations:
- ar (Khaled Hosny)
- ca (Joan Duran)
- ca@valencia (Carles Ferrando Garcia)
- crh (Reşat SABIQ)
- de (Christian Kirbach)
- en@shaw (Thomas Thurman)
- en_GB (Bruce Cowan)
- es (Jorge González)
- et (Ivar Smolin)
- he (Yaron Shahrabani)
- id (Andika Triwidada)
- it (Luca Ferretti)
- lt (Žygimantas Beručka)
- nb (Kjartan Maraas)
- nds (Nils-Christoph Fiedler)
- pl (Tomasz Dominikowski)
- ro (Adi Roiban)
- ru (Alexandre Prokoudine)
- sl (Matej Urbančič)
- sv (Daniel Nylander)
- ta (Dr.T.Vasudevan)
- th (อาคม โชติพันธวานนท์)
- zh_CN (Tao Wei)
-------------------------------------------------------------------------------
gnome-control-center 2.28.0 (2009-09-21)
Appearance:
- Add link buttons to get more themes/backgrounds online (William Jon McCann)
(#323323)
- Add/remove buttons should be the same size (William Jon McCann) (#592510)
- Make slideshows visually distinct (Matthias Clasen) (#591375)
- Don't call gnome_wp_item_ensure_gnome_bg too early (Matthias Clasen)
- Rename some widget ids to make GtkBuilder happy (Luca Ferretti)
- Use XDG user and system data dirs to load backgrounds (William Jon McCann)
- Fix compiler warnings (Jens Granseuer)
- Make the font DPI spin button work again (Jens Granseuer) (#594342)
- Show correct default layout (Michael Terry)
- Update icon because the old one has been removed from g-i-t (Jens Granseuer)
(#594710)
- Allow a window manager to inherit keybindings from another window manager
(Owen Taylor) (#594066)
- Force cursor slide to 100 px, in order to use it without changing
the window width (Luca Ferretti)
Common:
- Drop check for libgnomeui (Jens Granseuer) (#592920)
Translations:
- ar (Khaled Hosny)
- as (Amitakhya Phukan)
- bg (Krasimir "Bfaf" Chonov, Alexander Shopov)
- bn_IN (Runa Bhattacharjee)
- br (Denis ARNAUD)
- ca (Joan Duran)
- cz (Petr Kovar)
- da (Ask H. Larsen)
- de (Wolfgang Stöggl)
- el (Kostas Papadimas)
- en_GB (Bruce Cowan)
- es (Jorge González)
- et (Ivar Smolin, Mattias Põldaru)
- eu (Inaki Larranaga Murgoitio)
- fi (Tommi Vainikainen)
- fr (Bruno Brouard, Claude Paroz)
- gl (Antón Méixome)
- gu (Sweta Kothari)
- he (Yaron Shahrabani)
- hi (Rajesh Ranjan)
- hu (Gabor Kelemen)
- it (Luca Ferretti)
- ja (Takayuki KUSANO )
- kn (Shankar Prasad)
- lt (Gintautas Miliauskas)
- ml (Ani)
- mr (Sandeep Shedmake)
- nb (Kjartan Maraas)
- or (Manoj Kumar Giri)
- pa (A S Alam )
- pl (Piotr Drąg)
- pt (Duarte Loreto)
- pt_BR (Krix Apolinário, Og Maciel, Djavan Fagundes)
- ro (Lucian Adrian Grijincu)
- sr (mpopovic)
- sv (Daniel Nylander)
- ta (ifelix)
- te (krishnababu k)
- tr (Baris Cicek)
- uk (Maxim V. Dziumanenko)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
-------------------------------------------------------------------------------
gnome-control-center 2.27.91 (2009-08-24)
Appearance:
- Use unique widget IDs (Jens Granseuer) (#592182)
- Add workaround for glade-3 not working with vbox (William Jon McCann) (#584029)
- Fix parentless modal dialogs in theme installer (William Jon McCann) (#592354)
Common:
- Add schemas file (William Jon McCann)
- Fix distcheck (William Jon McCann)
Display:
- Fix dragging of rotate monitors (Matthias Clasen) (#578109)
Font viewer:
- Use preferences-desktop-font for the icon (Jens Granseuer) (#592642)
- Fix filename after GTKBuilder migration (Claude Paroz)
Mouse:
- Keep touchpad UI in sync with GConf (Jens Granseuer) (#592425)
Network:
- Update the ignored hosts list when the location changes (Maxim Ermilov) (#581472)
Shell:
- Updated to latest libslab (Rodrigo Moya)
Translations:
- bn (Jamil Ahmed)
- de (Christian Kirbach)
- es (Jorge González)
- et (Ivar Smolin)
- gl (Antón Méixome)
- it (Luca Ferretti)
- ko (Changwoo Ryu)
- nb (Kjartan Maraas)
- pt_BR (Henrique P. Machado)
- sv (Daniel Nylander)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
-------------------------------------------------------------------------------
gnome-control-center 2.27.90 (2009-08-17)
About-me:
- Remove old code poking directly into the pwent (Matthias Clasen)
- Port to PolicyKit-1.0 (Matthias Clasen)
Appearance:
- Fix crash when iterating through the tree model (Jens Granseuer) (#591392)
- Make sure the underline in "Save _As..." is interpreted (Christian Hergert)
- Attributes tag is not supported in GtkButtons (Claude Paroz) (#591656)
Common:
- Change error message reference about Bonobo to DBus (Rodrigo Moya)
- Remove markup from translatable string (Claude Paroz) (#590933)
- Fix compiler warnings (Jens Granseuer)
Display:
- Don't sort the outputs before creating the labeler (Federico Mena Quintero)
- Remove dead code (Federico Mena Quintero)
- Ensure that the output labels fit inside the monitor rectangles (Federico
Mena Quintero)
Shell:
- Remove libgnomeui usage (Andreas Proschofsky) (#586527)
- Do not depend on libpanel-applet (Vincent Untz)
- Fix requires in gnome-window-settings-2.0.pc (Vincent Untz)
- Use GOption in the shell (Vincent Untz)
- Fix error message with unknown option in shell (Vincent Untz)
- Use libunique in the shell to have a single-instance shell (Vincent Untz)
- Update to latest libslab, and do not install libslab on the system (Vincent
Untz)
Translations:
- ar (Khaled Hosny)
- cs (Andre Klapper)
- de (Christian Kirbach)
- es (Jorge González)
- et (Mattias Põldaru and Ivar Smolin)
- fi (Tommi Vainikainen)
- ga (Seán de Búrca)
- gl (Antón Méixome)
- he (Mark Krapivner)
- hi (Rajesh Ranjan)
- it (Luca Ferretti)
- nb (Kjartan Maraas)
- or (Manoj Kumar Giri)
- sv (Daniel Nylander)
-------------------------------------------------------------------------------
gnome-control-center 2.27.5 (2009-07-28)
Default applications:
- Don't clear the custom browser command on startup (Jens Granseuer) (#590316)
General:
- Remove all libglade dependencies (Robert Ancell)
- Remove markup from translatable strings in GTKBuilder files (Claude Paroz)
(#599759)
Network:
- Fix unparsed mnemonics (Felix Riemann) (#590364)
Shell:
- Removed deprecated dependencies from libslab (Federico Mena Quintero, Felix Riemann)
- Adapted shell to new libslab API (Rodrigo Moya)
- Remove libgnome and libgnomeui dependencies (Rodrigo Moya)
Translations:
- ar (Khaled Hosny)
- br (Denis Arnaud)
- et (Ivar Smolin)
- fr (Claude Paroz)
- ga (Seán de Búrca)
- lt (Žygimantas Beručka)
- nb (Kjartan Maraas)
- pt_BR (Krix Apolinário)
-------------------------------------------------------------------------------
gnome-control-center 2.27.4.1 (2009-07-16)
About me:
- EXTRA_DIST fingerprint icons (Rodrigo Moya)
Common:
- Automatically generate .gitignore files with git.mk (Thomas Wood)
Network:
- Remove libglade dependency from gnome-network-properties (Felix Riemann)
Translations:
- gu (Sweta Kothari)
-------------------------------------------------------------------------------
gnome-control-center 2.27.4 (2009-07-15)
About me:
- New icons for fingerprint screen (Michael Langlie)
Appearance:
- Migrate to GtkBuilder (Thomas Wood)
- Remove custom cell renderers (Thomas Wood)
At-properties:
- Remove libglade depency from at-properties capplet (Felix Riemann)
Default applications:
- Remove libglade dep from default-applications capplet (Felix Riemann)
Display:
- Remove libglade dependency from display-properties capplet (Felix Riemann)
Keybindings:
- Remove libglade dependency from keybindings capplet (Felix Riemann)
Mouse:
- Support touchpad configuration through device properties (Peter Hutterer)
Shell:
- Fix libslab for single includes in GTK+ (Thomas Wood)
Typing break:
- Use GtkUIManager to replace GtkItemFactory (Thomas Hindoe Paaboel Andersen)
Windows:
- Strip libglade dependency from gnome-window-properties (Felix Riemann)
Translations:
- es (Jorge González)
- et (Ivar Smolin)
- gu (Sweta Kothari)
- uk (Maxim V. Dziumanenko)
-------------------------------------------------------------------------------
gnome-control-center 2.27.3 (2009-06-29)
About me:
- Initialize GThread subsystem (Vivian Zhang) (#583451)
Appearance:
- After removing an image set the cursor to the newly selected wallpaper so
that keyboard navigation works as expected (Jens Granseuer) (#575075)
- Search GTK+ icon theme search path for icon themes (Jens Granseuer) (#575906)
- Only delete the theme if the user pressed OK (Benjamin Berg) (#578694)
- Close gtkrc files after use (Jens Granseuer) (#578835)
- Fix theme engine detection on non-UNIX platform (Jens Granseuer) (#581156)
- Don't unref NULL GConf entries (Jens Granseuer)
- After removing an image set the cursor to the newly selected wallpaper (Jens
Granseuer) (#575075)
Default applications:
- Add Arora to list of browsers (Bastien Nocera)
Display:
- Pass a transient parent ID to the ApplyConfiguration callback so that it
can make its confirmation dialog a child of the parent (Federico Mena Quintero)
(#576006)
- Simplify calls to dbus-glib which cannot fail (Federico Mena Quintero)
- Ensure that there will be a backup file before committing (Federico Mena Quintero)
(#486093)
- Make the monitor heading be explicitly black (Federico Mena Quintero) (#556050)
- Fix the layout-outputs-horizontally helper (Federico Mena Quintero)
- Use the timestamp of the Apply button to change the RANDR configuration (Federico
Mena Quintero)
- Don't pop up a redundant error dialog (Federico Mena Quintero)
Font viewer:
- Safely printf strings (Christian Persch)
- Interrupt thumbnailing at 30 s instead of 30 msecs (Jens Granseuer) (#584107)
Keybindings:
- Make activating a section header row expand or collapse the section as expected
instead of crashing (Jens Granseuer) (#577474)
- Make the custom keybinding UI smoother (Matthias Clasen)
- Don't needlessly write entries back to gconf on startup (Matthias Clasen) (#581986)
Keyboard:
- Dependency on libxklavier 4.0, optional load/display of extra layouts (Sergey V.
Udaltsov)
Shell:
- Fix libslab svn:external problem (Rodrigo Moya)
Translations:
- ar (Djihed Afifi)
- ca (Gil Forcada)
- cs (Petr Kovar)
- crh (Reşat SABIQ)
- de (Jürg Billeter, Andre Klapper)
- es (Jorge Gonzalez Gonzalez)
- et (Ivar Smolin, Mattias Põldaru)
- fr (Bruno Brouard)
- gr (Marios Zindilis, Nikos Charonitakis)
- hi (Manoj Kumar Giri, Rajesh Ranjan)
- hu (Gabor Kelemen)
- it (miloc)
- ja (Takeshi AIHANA)
- kn (Shankar Prasad)
- lv (Raivis Dejus)
- nb (Kjartan Maraas)
- or (Manoj Kumar Giri)
- ru (Nickolay V. Shmyrev)
- sl (Matej Urbančič)
- sk (Marcel Telka)
- sr@Latin (Miloš Popović)
- vi (Nguyễn Thái Ngọc Duy)
- zh_CN (M Zhang, Deng Xiyue)
-------------------------------------------------------------------------------
gnome-control-center 2.26.0 (2009-03-16)
About me:
- Fix warning when selecting a finger to enroll in the combo box
(Bastien Nocera) (#574974)
Default applications:
- Fix mnemonic conflicts (Jens Granseuer)
Display:
- Make the strings of the rotation dialog appear translated (Gabor Kelemen)
(#574693)
- Fix crash when refreshing RANDR configuration (Federico Mena Quintero)
(#574865)
Font viewer:
- Stop the font thumbnailer eating all the CPU (Bastien Nocera) (#573795)
Keybindings:
- Fix mnemonics conflict on the custom shortcut window (Jens Granseuer)
Typing break:
- Revert string freeze breaker (Thomas H.P. Andersen) (#572325)
Translations:
- af (Friedel Wolff)
- as (Amitakhya Phukan)
- bg (Alexander Shopov)
- bn_IN (Runa Bhattacharjee)
- cs (Petr Kovar, Lucas Lommer)
- de (Christian Kirbach, Hendrik Richter)
- el (Jennie Petoumenou)
- en_GB (Philip Withnall)
- es (Jorge Gonzalez)
- fi (Tommi Vainikainen)
- gl (Ignacio Casal Quinteiro)
- gu (Ankitkumar Patel)
- he (Mark Krapivner, Yaron Sharabani)
- hi (Rajesh Ranjan)
- hu (Gabor Kelemen)
- it (Milo Casagrande)
- ja (Takeshi AIHANA)
- lt (Gintautas Miliauskas)
- mai (Rajesh Ranjan)
- ml (Ani Peter)
- mr (Sandeep Shedmake)
- nl (Wouter Bolsterlee)
- or (Manoj Kumar Giri)
- pl (Tomasz Dominikowski)
- pt (Duarte Loreto)
- pt_BR (Andre Gondim)
- ru (Nickolay V. Shmyrev)
- sv (Daniel Nylander)
- ta (I. Felix)
- te (Krishnababu K)
- th (Theppitak Karoonboonyanan)
- tr (Baris Cicek)
-------------------------------------------------------------------------------
gnome-control-center 2.25.92 (2009-03-02)
General:
- remove lots of deprecated GDK/GTK+ calls (Thomas H.P. Andersen) (#572325)
Appearance:
- fix message markup appearing in post-install dialog (Jens Granseuer)
(#572453)
Display:
- don't block the GUI while changing RANDR configuration
(Federico Mena Quintero)
- realign outputs after a resolution change (Federico Mena Quintero)
- use black text for enabled monitors (Federico Mena Quintero)
- change window title and menu entry to "Display"/"Display Preferences"
(Jens Granseuer) (#570907)
Keybindings:
- fix saving custom shortcut commands (Jens Granseuer) (#572501)
- always show "<Unknown Action>" for shortcuts without a description
(Jens Granseuer) (#572808)
Keyboard:
- add visual bell settings (Matthias Clasen) (#564998)
- fix initial layout preview (Matthias Clasen) (#550721)
- restore help button in layout options (Sergey Udaltsov) (#556952)
- remove non-existing icon from sound notifications button (Jens Granseuer)
(#570906)
Font Viewer:
- initialize type system to fix hang (Jonas Bonn) (#572189)
Translations:
- ast (Mikel González)
- be@latin (Ihar Hrachyshka)
- bg (Alexander Shopov)
- ca (Gil Forcada)
- da (Kenneth Nielsen)
- en_GB (Philip Withnall)
- es (Jorge Gonzalez)
- et (Priit Laes)
- eu (Inaki Larranaga Murgoitio)
- fi (Ilkka Tuohela)
- fr (Claude Paroz)
- gu (Sweta Kothari)
- he (Mark Krapivner)
- hu (Gabor Kelemen)
- it (Milo Casagrande)
- ja (Takeshi Aihana)
- ko (Changwoo Ryu)
- nb (Kjartan Maraas)
- pl (Tomasz Dominikowski)
- pt (Duarte Loreto)
- pt_BR (André Gondim, Jonh Wendell, Og Maciel)
- ro (Jani Monoses)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
- vi (Clytie Siddall)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
-------------------------------------------------------------------------------
gnome-control-center 2.25.90 (2009-02-04)
General:
- Rename gnome-network-preferences to gnome-network-properties (Luca Ferretti)
(#554342)
- Add optional libcanberra-gtk dependency
About me:
- Build fixes
- Fix email addresses being generated by g-a-m always being saved as type
"OTHER" (Jens Granseuer) (#570113)
Appearance:
- Fix newly installed themes appearing twice in the GTK themes list if the
package contains themes for both GTK and metacity (Jens Granseuer) (#568595)
- Use "Desktop Background" instead "Wallpaper" as per GDP glossary (Luca
Ferretti) (#569382)
Common:
- Add GnomeThemeElement parameter to the ThemeChangedCallback so that the
receiver can determine what part of the theme changed (Jens Granseuer)
Default application:
- Fix the https handler never being set (Bastien Nocera) (#568408)
- Update the web entry with the correct command for the selected option instead
of always using the default (Jens Granseuer)
Display:
- Build fixes
- Add On/Off radio buttons to turn on/off a monitor (Federico Mena Quintero)
- Don't crash if we don't have an output (Jens Granseuer) (#569218)
Keybindings:
- Build fixes
- Print a warning when a key doesn't have a schema, so no description (Bastien
Nocera)
- Make Enter work as expected in the custom key shortcut edit dialogue (Bastien
Nocera)
Keyboard:
- Sort options by description (Sergey Udaltsov)
- Hide help button in Options (Sergey Udaltsov) (#556952)
- Allow setting a repeat delay of up to 2 seconds (Jens Granseuer) (#569612)
Shell:
- Use single GTK includes in slab (Magnus Boman) (#551850)
- Compile with G*_DISABLE_DEPRECATED in slab (Magnus Boman) (#551850)
Typing break:
- Play a sound when the display is locked or unlocked (Maxim Ermilov) (#169473)
Translations:
- ca (Joan Duran)
- el (nikosCharonitakis)
- es (Jorge González)
- fi (Timo Jyrinki)
- he (Mark Krapivner)
- it (Luca Ferretti)
- ko (Young-Ho Cha)
- lt (Vytautas Liuolia)
- lv (Raivis Dejus)
- mg (Thierry Randrianiriana)
- mn (Badral)
- nb (Kjartan Maraas)
- nl (Wouter Bolsterlee)
- or (Manoj Kumar Giri)
- pa (Amanpreet Singh Alam)
- pl (Tomasz Dominikowski)
- pt_BR (Henrique P Machado)
- ru (Nickolay V. Shmyrev)
- sr (Данило Шеган)
- sv (Daniel Nylander)
- uk (Maxim V. Dziumanenko)
- uz@cyrillic (Nurali Abdurahmonov)
- uz (Nurali Abdurahmonov)
- zh_CN (甘露(Gan Lu))
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
-------------------------------------------------------------------------------
gnome-control-center 2.25.3 (2008-12-18)
General:
- Remove sound capplet and documentation, it moved to gnome-media
(Bastien Nocera)
About me:
- Add support for fingerprint readers with more than one enrollment stage
(Bastien Nocera)
Display:
- Display errors when any happen (Federico Mena Quintero)
- Slight UI changes (Federico Mena Quintero)
- When a monitor is selected, update the monitor label to have the monitor's
name and colour so they know which one is being edited (Federico Mena Quintero)
- Make the monitor on which the dialogue appears the default one on startup
(Federico Mena Quintero)
- Fix monitors still overlapping when turning off "Mirror screens"
(Federico Mena Quintero)
- Remove unneeded help button (Federico Mena Quintero)
-------------------------------------------------------------------------------
gnome-control-center 2.25.2 (2008-12-02)
General:
- Only include top-level headers for glib and GTK+ (Maxim Ermilov) (#561562)
- Optionally check for PolicyKit (Bastien Nocera)
- Don't try to delete directories twice (Jens Granseuer) (#562371)
- Don't recognize "" as a valid engine for certain GTK themes (Jens Granseuer)
(#315286)
About me:
- Add support for enrolling fingerprints using the fprintd D-Bus service
(Bastien Nocera) (#561881)
Appearance:
- Don't initialize gettext and GTK twice (Jens Granseuer)
- Add missing arg to capplet_init (Kjartan Maraas)
- Use g_ascii_strcasecmp instead of the deprecated g_strcasecmp (Maxim Ermilov)
(#560424)
- Really remove the temp dir when the transfer is cancelled (Jens Granseuer)
- Fix leak (Jens Granseuer)
Font viewer:
- Remove gnome-vfs dependency (Saleem Abdulrasool) (#561319)
Keybindings:
- Respect the /desktop/gnome/keybindings/allowed_keys key (Matthias Clasen)
Network:
- Add support for network profiles (Maxim Ermilov) (#477040)
Typing break:
- Use g_object_unref instead of the deprecated gdk_window_unref (Maxim Ermilov)
(#561679)
Shell:
- Add libgnomeui dependency back (Kjartan Maraas)
- Remove eel dependency ([email protected]) (#561944)
- Fix leak (Federico Mena Quintero)
- Use the new GtkTooltip mechanism rather than the deprecated GtkTooltips
(Federico Mena Quintero)
Translations:
- es (Jorge Gonzalez)
- it (Luca Ferretti)
-------------------------------------------------------------------------------
gnome-control-center 2.25.1 (2008-11-05)
General:
- resurrect gnome-font-viewer and gnome-thumbnail-font (Davyd Madeley)
- reduce libgnome* usage (Søren Sandmann)
- require GTK+ 2.13.1 (Jens Granseuer)
- require gnome-desktop 2.25.1 (Jens Granseuer)
- code cleanups (Jens Granseuer, Christian Persch, Kjartan Maraas, Bastien Nocera)
Common:
- use translated names for icon themes if available (Jens Granseuer) (#554272)
- fix error handling when launching help (Jens Granseuer)
Appearance:
- connect the help buttons to the most appropriate sections in the user guide
(Matthias Clasen) (#554957)
Default application:
- add Listen to the list of media players (Julien Lavergne)
Display:
- show an error dialog instead of crashing when initialization fails due to
XRandR not being available (Matt Keenan) (#553762)
- fix preview orientation when using left or right rotation (Jens Granseuer) (#555241)
- use new clone mode API in gnome-desktop (Søren Sandmann)
- XOR the old and the new regions instead of subtracting old from new (Søren
Sandmann) (#551566)
Keybindings:
- fix editability of group headings (Matthias Clasen) (#556967)
- avoid duplicate custom keybindings (Matthias Clasen) (#556977)
- add UI for adding and removing named custom shortcuts (Matthias Clasen) (#114796)
Keyboard:
- fix group sorting (Sergey Udaltsov)
- update group expander highlighting dynamically (Sergey Udaltsov)
- connect the stickykeys_two_key_off button (Jens Granseuer) (#556818)
- remember sorted list of expanders in properties (Sergey Udaltsov)
- scroll the options window when the keyboard focus moves out of the visible
part (Jens Granseuer) (#557944)
- hide/show the "Default" column depending on the "layout per window" checkbox
(Sergey Udaltsov) (#555261)
Sound:
- make the filechooser default to a sensible directory (Bastien Nocera)
Windows:
- Use the right values for the h/v maximization titlebar doubleclick action
(Matthias Clasen) (#554962)
Translations:
- ast (Esbardu)
- bg (Yavor Doganov)
- ca@valencia (Robert Millan)
- cs (Petr Kovar)
- da (Ask Hjorth Larsen)
- el (nikosCharonitakis)
- et (Priit Laes)
- fi (Timo Jyrinki)
- he (Mark Krapivner)
- hu (Gabor Kelemen)
- nb (Kjartan Maraas)
- nl (Wouter Bolsterlee)
- pt_BR (Leonardo Ferreira Fontenelle)
- sk (Pavol Šimo)
- sr (Данило Шеган)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
- uk (Maxim V. Dziumanenko)
-------------------------------------------------------------------------------
gnome-control-center 2.24.0.1 (2008-09-24)
Appearance:
- fix newly-introduced crash in theme tab (Jens Granseuer) (#553541)
-------------------------------------------------------------------------------
gnome-control-center 2.24.0 (2008-09-22)
Accessibility:
- improve tooltip wording (Wang Xin)
Appearance:
- when a hidden theme is selected, and therefore becomes visible,
create a thumbnail for it (Jens Granseuer) (#547301)
- don't fail if the destination files already exist and the user tries
to overwrite them (Jens Granseuer) (#552671)
- set GtkAdjustment page size to 0 to avoid roblems due to newly enforced
value boundaries in GTK+ 2.14. (Jens Granseuer ) (#551740)
Common:
- properly initialize the callback data (Jens Granseuer) (#550263)
Default application:
- don't advertise startup-notify. The script doesn't support it (Jens Granseuer)
(#550694)
- use a11y icon instead of searchtool (Jens Granseuer) (#550742)
Display:
- Use "Mirror Screens" instead of "Cloned Output" in the display of monitors,
to be consistent with the corresponding checkbox from the Glade file.
(Federico Mena Quintero)
- use theme colours for the background (Bruce Cowan) (#545117)
Keybindings:
- don't use the term "accelerator" in the UI (Jens Granseuer) (#547276)
Keyboard:
- chosing first variant by default (Sergey Udaltsov) (#550722)
- using the fact that latest libxklavier returns descriptions in UTF-8,
no need to convert in 8-bit locales (Sergey Udaltsov)
- set GtkAdjustment page size to 0 to avoid problems due to newly enforced
value boundaries in GTK+ 2.14. (Jens Granseuer) (#551740)
Network:
- set GtkAdjustment page size to 0 to avoid roblems due to newly enforced
value boundaries in GTK+ 2.14. (Jens Granseuer ) (#551740)
Sound:
- trying to print NULL strings crashes on Solaris (Brian Cameron) (#548586)
- add context to event sound names (Claude Paroz ) (#549489)
Translations:
- ar (Djihed Afifi)
- bg (Yavor Doganov)
- bn_IN (Runa Bhattacharjee)
- ca (Joan Duran)
- cs (Petr Kovar)
- da (Ask Hjorth Larsen)
- de (Hendrik Richter)
- dz (Dawa pemo)
- el (Kostas Papadimas)
- en_GB (David Lodge)
- es (Jorge González)
- et (Ivar Smolin)
- eu (Iñaki Larrañaga Murgoitio)
- fi (Timo Jyrinki)
- fr (Claude Paroz)
- ga (Seán de Búrca)
- gl (Ignacio Casal Quinteiro)
- gu (Sweta Kothari)
- he (Mark Krapivner)
- hr (Miroslav Sabljić)
- hu (Gabor Kelemen)
- it (Luca Ferretti)
- ja (Takeshi AIHANA)
- ko (Young-Ho Cha)
- lt (Vytautas Liuolia)
- mk (Arangel Angov)
- ml (Ashik Salahudeen)
- mr (Sandeep Shedmake)
- nb (Kjartan Maraas)
- nl (Reinout van Schouwen)