-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
6682 lines (5547 loc) · 211 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
===========================
Version 3.3.4.1 (2012-01-18)
===========================
Bluetooth:
- Update for change in BluetoothChooser API
==========================
Version 3.3.4 (2012-01-17)
==========================
Wacom:
- Add calibration for screen tablets
- Add per-stylus configuration
Shell:
- Fix unfocused windows theming
Display:
- Port to GDBus
Users:
- Fix capturing a picture with the webcam
- Add optional systemd support for session tracking
Bluetooth:
- Remove omnipresent scrollbar and only show it when needed
Region:
- Fix "extra" layouts not appearing in italics
Printers:
- Show correct hostnames for printers
Network:
- Move the device speed up to the device header
- Move "Airplane Mode" switch to the shell header
Sound:
- Fix compile time warnings
==========================
Version 3.3.3 (2011-12-21)
==========================
Region:
- Small language chooser improvements (Cosimo Cecchi) (#664505,#664503)
Wacom:
- Many improvements that I can't really summarize here (Bastien Nocera)
- Better graphics (Jakub Steiner)
- Use libwacom for tablet information (Bastien)
- Visual improvements (Cosimo)
System Info:
- Rename to 'Details' (Rodrigo Moya) (#661696)
Display:
- Use consistent label style (Cosimo) (#665057)
Info:
- Use consistent label style (Cosimo) (#665059)
Printers:
- Unsubscribe from D-Bus signals when no longer needed (Marek Kasik)
- Don't crash because of external panel switch (Marek)
Translations:
Asturian
Burmese
Hebrew
Korean
Macedonian
Norwegian bokmål
Simplified Chinese
Spanish
Telugu
Thai
==========================
Version 3.3.2 (2011-11-22)
==========================
Common:
- Always collect locales from the directory (Bastien Nocera) (#660725)
- Do not install private libgnome-control-center (Bastien Nocera) (#655287)
- Fix handling of <Primary> (Bastien Nocera) (#748444)
Background:
- Added D'n'D support for adding wallpapers (Ming Han Teh) (#655375)
- Force a toolbar style (Bastien Nocera)
Bluetooth:
- Move Bluetooth panel from gnome-bluetooth (Bastien Nocera)
Color:
- Update icon cache only on MAINTAINER_MODE (Alberto Ruiz)
- Do not allow the 'Add profile' modal dialog to be resizable (Richard Hughes)
- Improve the 'Add profile' modal dialog (Richard Hughes) (#661657)
- Don't show profile ages for EDID, test and colorspace profiles (Richard Hughes) (#661669)
- Show 'Uncalibrated' when a device has a test profile assigned (Richard Hughes)
- After removing a profile select the device so the UI is correct (Richard Hughes) (#661658)
- Fix a critical warning in the new GtkTreeIter code (Richard Hughes)
- Make toolbar buttons focusable (Bastien Nocera) (#662430)
Date & time:
- Fix showing actual clock format on panel open (Tomas Bzatek)
Info:
- Use x-content/unix-software as mime for the Software combobox (Cosimo Cecchi) (#660803)
- Add labelling relations (Matthias Clasen)
Keyboard:
- Don't load duplicate keybindings (Bastien Nocera)
- Fix ATK descriptions (Bastien Nocera) (#574073)
- Make the '+' button work all the time (Bastien Nocera) (#662253)
- Remove broken allowed_keys checks (Bastien Nocera)
- Use GtkCellRendererAccel (Bastien Nocera)
- Adjust shortcut files (Florian Müllner) (#663626)
- Rename a11y keyboard shortcuts (Bastien Nocera)
- Remove support for conditional shortcuts (Florian Müllner) (#663431)
- Stop monitoring num-workspaces (Florian Müllner)
- Port custom shortcuts to GSettings (Florian Müllner)
Mouse:
- Fix ATK descriptions (Bastien Nocera)
Network:
- Allocate nm-connection for nma-wireless-dialog (Gary Ching-Pang Lin) (#648174)
- Show wireless dialog even if there is no active AP (Gary Ching-Pang Lin) (#661526)
- Accessibility improvements (Matthias Clasen)
- Add proxy to the keywords (Bastien Nocera) (#663340)
- Make tabbing through the proxy page work (Matthias Clasen)
Online accounts:
- Add title for "Add Account" dialogue (Bastien Nocera) (#661573)
Power:
- Use the correct item in the combo boxes when sleep-when-inactive is disabled (Rodrigo Moya)
- Don't set the sleep-inactive-x GSettings keys that have been removed (Richard Hughes)
- Use "Power off" instead of "Shutdown" (Bastien Nocera) (#661559)
Printers:
- Check state of CUPS after start (Marek Kasik) (#659721)
- Fix build on systems without LC_PAPER (Bastien Nocera) (#660692)
- Don't hide address entry (Marek Kasik)
- Make +/- buttons insensitive when can not connect to CUPS (Marek Kasik)
- Set requesting-user-name when getting job info (Marek Kasik)
- Detect disconnection of printer (Marek Kasik)
- Don't allow "/" in printer name (Marek Kasik) (#661774)
Region:
- Hide system tab if no localed (Bastien Nocera)
- Simplify getting the current Locale (Bastien Nocera)
- Implement copying layouts (Bastien Nocera) (#659300)
- Fix build on systems without LC_MEASUREMENT (Bastien Nocera) (#660787)
- Align the example dates (Bastien Nocera)
- Only show locales for languages that have translations (Rodrigo Moya)
- Always add English to the list, as it should always be available (Rodrigo Moya)
Screen:
- Never set gnome-session's idle-delay to 1 (Rodrigo Moya)
Shell:
- Make sure we gtk_widget_show the search view (Rodrigo Moya)
- Avoid crash when searching if a .desktop has no comment (Vincent Untz) (#661494)
- Make Ctrl+Q work outside the overview (Bastien Nocera)
- Make Ctrl+W close panels (Bastien Nocera) (#660814)
- Give focus to the search entry when showing the overview page (Anders G. Jørgensen)
- Don't crash when loading the icon fails (Christian Persch) (#660513)
- Use icon for "All Settings" button (Bastien Nocera) (#657043)
- Add a11y label for the All Settings button (Bastien Nocera)
- Merge libgnome-control-center into main binary (Bastien Nocera)
Sound:
- Fix possible infinite loop in combo box (Bastien Nocera)
- Add a minimum height for the output list (Bastien Nocera) (#660582)
- Export sysfs path in stream properties (Bastien Nocera)
- Port audible-bell to GSettings (Bastien Nocera) (#625899)
Universal access:
- Fix ATK descriptions (Bastien Nocera)
- Avoid crashing when GConf is broken (Bastien Nocera) (#751007)
- Update for metacity GSettings port (Bastien Nocera) (#625899)
User accounts:
- Make unlock icon in tooltip match reality (Matthias Clasen)
Translations:
- ar (Abderrahim Kitouni)
- be (Ihar Hrachyshka)
- cz (Petr Kovar)
- de (Mario Blättermann, Christian Kirbach)
- el (Kostas Papadimas)
- en_GB (Bruce Cowan)
- es (Daniel Mustieles, Jorge González, Benjamín Valero Espinosa)
- fa (Arash Mousavi, Ali Akbar Najafian)
- fr (Bruno Brouard)
- ga (Seán de Búrca)
- gl (Fran Dieguez)
- he (Yaron Shahrabani)
- id (Andika Triwidada)
- ja (Jiro Matsuzawa)
- ku (Erdal Ronahi)
- lt (Aurimas Černius, Algimantas Margevičius)
- nb (Kjartan Maraas)
- nl (Rachid, Wouter Bolsterlee)
- pl (Piotr Drąg)
- sl (Andrej Žnidaršič, Matej Urbančič)
- sr (Мирослав Николић)
- sv (Daniel Nylander)
- ta (Dr.T.Vasudevan)
- te (krishnababu k)
- tr (Muhammet Kara)
- zh_CN (Aron Xu, Funda Wang, YunQiang Su)
- zh_HK (Chao-Hsiung Liao, Cheng-Chia Tseng)
- zh_TW (Chao-Hsiung Liao, Cheng-Chia Tseng)
==========================
Version 3.2.0 (2011-09-26)
==========================
System info:
- Don't crash when systemd isn't used (Bastien Nocera) (#659367)
- Don't warn if PackageKit isn't around (Bastien Nocera)
- Continue on filesystem query info (Ryan Lortie) (#654563)
Wacom:
- Show "stand-by" page when Wacom not available (Bastien Nocera) (#657424)
Translations:
- af (Friedel Wolff)
- bg (Alexander Shopov)
- ca (Joan Duran)
- ca@valencia (Carles Ferrando)
- cz (Marek Černocký)
- da (Flemming Christensen)
- de (Mario Blättermann)
- es (Daniel Mustieles)
- eu (Inaki Larranaga Murgoitio)
- fr (Bruno Brouard)
- ga (Seán de Búrca)
- gl (Fran Dieguez)
- hu (Gabor Kelemen)
- id (Andika Triwidada)
- it (Luca Ferretti)
- ja (Jiro Matsuzawa)
- ko (Changwoo Ryu)
- lv (Rudolfs Mazurs)
- nb (Kjartan Maraas)
- pa (A S Alam)
- pl (Piotr Drąg)
- pt (Duarte Loreto)
- pt_BR (Og B. Maciel)
- ru (Yuri Myasoedov)
- sk (Pavol Šimo)
- sl (Matej Urbančič)
- sv (Daniel Nylander)
- te (ipraveen)
- th (Theppitak Karoonboonyanan)
- zh_HK (Cheng-Chia Tseng, Chao-Hsiung Liao)
- zh_TW (Cheng-Chia Tseng, Chao-Hsiung Liao)
===========================
Version 3.1.92 (2011-09-19)
===========================
Color:
- Fix help links for gnome-help 3.1* (Jeremy Bicha)
- Don't assert if the user double clicks the delete profile button (Richard Hughes)
- Fix spawning of gcm-viewer (Matthias Clasen)
- Do not allow the user to choose profiles owned by other users (Richard Hughes)
- Do not allow the user to set default a profile they cannot access (Richard Hughes)
- Disable 'View details' button if gcm-viewer is not installed (Rodrigo Moya)
- Escape profile titles that have markup in the titles (Richard Hughes) (#659127)
- Pack the left and right button groups into two GtkBox containers (Cosimo Cecchi) (#659273)
Common:
- Add a way for panels to receive additional arguments (Giovanni Campagna) (#657093)
- Bump GTK+ deps (Bastien Nocera)
- Tell the actual required version for NM (Bastien Nocera)
Display:
- Remove duplicate/unused translations (Bastien Nocera)
Info:
- Don't warn when the hostname is empty (Bastien Nocera)
- Do fallback correctly when reading hostnames (Bastien Nocera)
- Split the hostname setting (Bastien Nocera)
Keyboard:
- Link directly to the layouts page (Bastien Nocera)
Network:
- Show wireless dialogs when asked (Giovanni Campagna) (#657093)
- Fix memleak when argv changes (Bastien Nocera)
- A segfault was introduced when assigning to args (Alban Browaeys) (#658670)
- Bind HTTP host entry to the 'host' setting in GSettings (Rodrigo Moya)
Printers:
- Match lower-case properly (Marek Kasik)
Region:
- Add ability to switch pages (Bastien Nocera)
- Fix display of layouts on the system tab (Matthias Clasen)
- Only offer to copy settings if they are different (Matthias Clasen)
Screen:
- Don't fill up the space (Bastien Nocera)
- Fix resulting top-padding (Bastien Nocera) (#657606)
- Remove indent on "Turn off..." label (Bastien Nocera)
Shell:
- Replace window sizing code (Bastien Nocera) (#658068)
Sound:
- Put the level bar at 0 when muting (Bastien Nocera) (#644537)
- Allow switching tabs from the command-line (Bastien Nocera)
Universal access:
- Fix sensitivity of keyboard a11y (Bastien Nocera) (#649452)
- Add context for text sizes (Bastien Nocera) (#645729)
- Set contrast combo on startup (Michael Terry) (#658990)
User accounts:
- Hide old message when enrolling (Bastien Nocera)
Wacom:
- Add a left-handed switch (Peter Hutterer) (#657810)
- Improve alignment of lines and widgets (Jakub Steiner) (#657425)
- Make string as translatable (Bastien Nocera)
Translations:
- ast (Xandru Armesto)
- be (Ihar Hrachyshka)
- bg (Ivaylo Valkov)
- de (Mario Blättermann)
- en_GB (Bruce Cowan)
- es (Jorge González, Daniel Mustieles)
- fa (Arash Mousavi)
- gl (Fran Dieguez)
- hu (Gabor Kelemen)
- id (Andika Triwidada)
- it (Luca Ferretti)
- ko (Changwoo Ryu, Seong-ho, Cho)
- lt (Aurimas Černius)
- lv (Rudolfs Mazurs)
- nb (Kjartan Maraas)
- pa (A S Alam)
- pl (Piotr Drąg)
- pt (Duarte Loreto)
- pt_BR (Djavan Fagundes)
- ru (Yuri Myasoedov)
- sr (Мирослав Николић)
- sv (Daniel Nylander)
- ta (Dr.T.Vasudevan)
- th (Theppitak Karoonboonyanan)
- vi (Nguyễn Thái Ngọc Duy)
- zh_CN (Aron Xu)
===========================
Version 3.1.91 (2011-09-05)
===========================
Color:
- Ensure the calibrate program gets run correctly (Richard Hughes)
- Use a mnemonic character on the Import button (Jiro Matsuzawa) (#658167)
- If cancelling profile import don't show the empty assign dialog (Richard Hughes) (#658180)
- Do not use a GtkSeparatorToolItem in the GtkToolbar (Richard Hughes)
Display:
- Clean up signal handling when finalized (Bastien Nocera) (#657919)
Media:
- Use new media-removable icon (Bastien Nocera) (#657801)
Network:
- Set the org.gnome.system.proxy.http 'enabled' key if the user sets a HTTP proxy (Richard Hughes)
- Explicitly unset 'use-same-proxy' as there's no UI for that (Richard Hughes) (#657235)
Power:
- Don't print a message to .xsession-errors if it's not an error (Richard Hughes)
- Use a proper icon for the panel (Jakub Steiner) (#645536)
- Update the UI to reflect the new mockup (Richard Hughes)
Screen:
- Hide brightness heading when unused (Bastien Nocera) (#657606)
Shell:
- Use symbolic name for minimum height (Bastien Nocera)
Sound:
- Add some (element-type) annotations to appease g-i master (Dan Winship)
Wacom:
- Dim the labels (grey, not black) (Peter Hutterer) (#657812)
Translations:
- be (Yuri Matsuk, Ihar Hrachyshka)
- es (Jorge González)
- fi (Timo Jyrinki)
- gl (Fran Dieguez)
- ja (Jiro Matsuzawa)
- nb (Kjartan Maraas)
- pa (A S Alam)
- ru (Yuri Myasoedov)
- sv (Daniel Nylander)
===========================
Version 3.1.90 (2011-08-30)
===========================
Background:
- Allow SVG image files as background (Rodrigo Moya) (#648764)
Color:
- Fix a crash where out internal state gets screwed up (Richard Hughes)
- Only allow the user to import custom profiles with colord >= 0.1.12 (Richard Hughes)
- Remove color managed devices if they are deleted by another process (Richard Hughes)
- Do not attempt to delete the device if it's already added (Richard Hughes)
- If there are no profiles or devices then hide the toolbar (Richard Hughes)
- Add a small italic indication when there are no color managed devices (Richard Hughes)
- Add a new 'Learn more' button to the color panel (Richard Hughes)
- If we have only a few devices and profiles expand the treeview at startup (Richard Hughes)
- Remove unneeded category (Bastien Nocera)
- When setting the default profile for a display, use the correct device (Richard Hughes)
Common:
- Simplify language display (Matthias Clasen)
- Add api for region names (Matthias Clasen)
- Add a region mode to the language chooser (Matthias Clasen)
- Tweak default user list (Bastien Nocera)
- Fix distribution of language chooser glade file (Rodrigo Moya)
Date & Time:
- Use radio buttons for 24h time (Bastien Nocera) (#640059)
Display:
- Clean up ifdef's (Bastien Nocera)
- Simplify panel code (Bastien Nocera)
- Fix the labeller not disappearing (Bastien Nocera)
- Prefer higher frequency modes (Bastien Nocera) (#655041)
Keyboard:
- Add link to the Region panel (Bastien Nocera) (#643101)
- Simplify GtkBuilder calls (Bastien Nocera)
- Use icon without a spanner (Bastien Nocera) (#657556)
Network:
- Mobile broadband bug fixes (Jiří Klimeš) (#657303)
- Fix possible double-free (Bastien Nocera)
- Fix display of IP info for some configs (Jiří Klimeš) (#657303)
- Fix updating VPN info when edited (Jiří Klimeš) (#723489)
- Show VPN type and info in panel (Jiří Klimeš)
- Clarify the VPN service type setting (Bastien Nocera)
- Rename "Options..." to "Configure..." (Bastien Nocera) (#657002)
- Fallback to GNOME as a hotspot name (Bastien Nocera)
- Use icon without a spanner (Bastien Nocera) (#657556)
Online accounts:
- Disable buttons when D-Bus service not available (Bastien Nocera) (#652572)
Power:
- Remove power and suspend buttons config (Bastien Nocera) (#652183) (#657068)
- Don't shrink the panel on desktops (Bastien Nocera)
Region:
- Avoid a crash in the absence of configured layouts (Matthias Clasen)
- Fix locale-changing code (Matthias Clasen)
- Redo the language tab (Matthias Clasen)
- Redo the formats tab (Matthias Clasen)
- Use region names on the region tab (Matthias Clasen)
- Show fewer regions (Matthias Clasen)
- Ensure the system tab is updated (Matthias Clasen)
- Add some spacing to the system tab (Matthias Clasen)
- Initial implementation of 'copy to system' (Matthias Clasen)
- Avoid crash when systemd is not available (Rodrigo Moya)
- Don't show region panel in Unity, it uses its own language selector (Rodrigo Moya)
Shell:
- Only load desktop files from our dirs (Bastien Nocera)
- Don't repeat the item title when searching (Bastien Nocera) (#657020)
- Add Ctrl+Q as a way to exit the shell (Bastien Nocera) (#653443)
Sound:
- Remove trailing spaces in strings (Bastien Nocera) (#657169)
- Track PulseAudio connection state and expose it (Giovanni Campagna) (#645708)
- Update volume-control applet for GVC API changes (Giovanni Campagna) (#645708)
- Don't warn without a sizegroup (Bastien Nocera)
- Fix sizing of sliders (Bastien Nocera)
System info:
- Always show the "Updates" button (Bastien Nocera) (#645274)
Universal access:
- Add more keywords to the desktop file (Matthias Clasen) (#657189)
- Add translator comments (Bastien Nocera) (#657167)
- Keep "text size" items a constant size (Bastien Nocera) (#657188)
- Don't crash when metacity isn't installed (Bastien Nocera)
User accounts:
- Remove some dead code (Matthias Clasen)
- Add a filter entry to the language dialog (Matthias Clasen)
- Prepopulate the language combo (Matthias Clasen)
- Remove trailing space in string (Bastien Nocera) (#657169)
- Add translator comments for split line (Bastien Nocera) (#657168)
- Prevent autologin for disabled users (Matthias Clasen) (#649816)
- Fix life-cycle issues (Matthias Clasen)
Wacom:
- Add a wacom control panel (Peter Hutterer) (#640981)
Translations:
- bg (Ivaylo Valkov)
- de (Mario Blättermann)
- es (Daniel Mustieles, Jorge González)
- gl (Fran Dieguez)
- lt (Aurimas Černius)
- nb (Kjartan Maraas)
- nl (Reinout van Schouwen)
- sr (Мирослав Николић)
- sv (Daniel Nylander)
- ta (Dr.T.Vasudevan)
- ug (Abduxukur Abdurixit)
- zh_CN (Aron Xu)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
==========================
Version 3.1.5 (2011-08-18)
==========================
Common:
- Add some more debug when listing languages (Bastien Nocera)
Network:
- Default to g_get_host_name if pretty hostname call failed (Mathieu Trudel-Lapierre)
Printers:
- Open firewall for required connections when searching (Marek Kasik)
- Use system-config-printer's GetBestDrivers method (Marek Kasik) (#654742)
- Use system-config-printer's GroupPhysicalDevices method (Marek Kasik)
- Use system-config-printer's MissingExecutables method (Marek Kasik)
Region:
- Keep selection when moving layout up/down (Sergey Udaltsov) (#654880)
- Sort locales for format selection (Rodrigo Moya)
- Display user's input source in System tab (Rodrigo Moya)
Shell:
- Port to new gnome-menus API (Vincent Untz) (#655110)
- Do not add a trailing dash in search target when comment is empty (Vincent Untz) (#655487)
Sound:
- Update the sound theme for speaker testing (David Henningsson)
Translations:
- de (Mario Blättermann)
- es (Daniel Mustieles)
- gl (Fran Dieguez)
- he (Yaron Shahrabani)
- id (Andika Triwidada)
- nb (Kjartan Maraas)
- pa (A S Alam)
- sv (Daniel Nylander)
- uk (Daniel Korostil)
- vi (Nguyễn Thái Ngọc Duy, Ngô Chin)
- zh_CN (Yinghua Wang)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
==========================
Version 3.1.4 (2011-07-25)
==========================
Background:
- Add "swap" button for gradients (Bastien Nocera) (#34498)
Common:
- Add safeguards for empty language (Bastien Nocera)
Date & Time:
- Restore TZ envvar as it was (Rui Matos) (#649568)
Info:
- Use the new g_format_size() glib function (Javier Jardón)
Network:
- Kill compilation warnings (Rodrigo Moya)
Power:
- Use the new gnome-settings-daemon DBus names now the power plugin has moved to
g-s-d (Richard Hughes)
- Make insensitive any sleep actions the hardware cannot do (Richard Hughes)
Printers:
- Make model label and ip address label selectable (Marek Kasik) (#651545)
- Add translation context in some places (Matthias Clasen) (#654725)
Region:
- Add weak ref for locale settings (Rodrigo Moya)
- Set LC_ specific variables, not LC_ALL (Rodrigo Moya)
- If no regional settings, use the configured language (Rodrigo Moya)
- Show measurement (Bastien Nocera)
- Don't use markup in bold labels (Bastien Nocera)
Screen:
- Avoid making lots of DBus calls to set the brightness when the slider change
too quickly (Rodrigo Moya)
Shell:
- Shrink vertically (Bastien Nocera) (#645808)
Sound:
- Make hadware page tree a little taller (Bastien Nocera)
Universal access:
- Remove unused column in model (Bastien Nocera)
User accounts:
- Improved new username format message (Robert Roth) (#647851)
- Remove unneeded markup in label (Bastien Nocera)
Translations:
- cz (Marek Černocký)
- es (Daniel Mustieles, Jorge González)
- gl (Fran Dieguez)
- he (Yaron Shahrabani)
- lv (Rudolfs Mazurs)
- nb (Kjartan Maraas)
- pa (A S Alam)
- sl (Matej Urbančič)
- sv (Daniel Nylander)
- tr (Muhammet Kara)
==========================
Version 3.1.3 (2011-07-04)
==========================
Common:
- Bump gsettings-desktop-schemas requirement for locale settings (Rodrigo Moya)
- Add Unity to OnlyShowIn fields (Michael Terry) (#653661)
Library:
- Typo preventing compilation on some platforms (Antoine Jacoutot) (#651162)
Color:
- Add new color setting panel (Richard Hughes)
Date & Time:
- Fix date sensitivity on permission changes (Florian Müllner)
Info:
- Skip test-hostnames if en_US.UTF-8 is not available (Frédéric Peters)
- Fix disk space showing free space (Bastien Nocera) (#639376)
- Fix https scheme handler app setting (Alexandre Rostovtsev) (#653211)
Keyboard:
- Force "icons" toolbar style (Bastien Nocera) (#651595)
- Change precedence for schema in KeyList parser (Florian Müllner) (#653685)
- Fix a small memory leak (Florian Müllner) (#653613)
- Support string array keybindings (Florian Müllner)
Network:
- Fix the wpad warning (Matthias Clasen)
- Avoid a possible crash (Matthias Clasen)
- Use the correct condition for the option button (Matthias Clasen)
- Refresh ui in an idle (Matthias Clasen)
- Implement network sharing (Matthias Clasen)
- Simplify security string for hotspots (Matthias Clasen)
- Add warning dialogs (Matthias Clasen)
- Disable the hotspot button when the device is off (Matthias Clasen)
- Use the 'pretty hostname' for hotspots (Matthias Clasen)
- Remove spaces before question marks (Piotr Drąg)
- Avoid uninitialised variable (Bastien Nocera)
- Fix toolbar style (Bastien Nocera) (#651595)
Online accounts:
- Add panel for gnome-online-accounts (Bastien Nocera)
Printers:
- Allow editing of printer name and location (Marek Kasik) (#649511)
- Use SNMP CUPS backend to discover printers on given address (Marek Kasik)
- Move check for availability of CUPS to better place (Marek Kasik)
- Include cups/ppd.h explicitly (Marek Kasik)
- Force icons toolbar style (Bastien Nocera) (#651599)
Region:
- Fix the labels according to the usability gurus (Sergey V. Udaltsov) (#641021)
- Fix a couple of memory leaks (Rui Matos) (#652360)
- Fix infinite loop dealing with gsettings 'changed' signal (Rui Matos) (#652361)
- Remove helper function not needed since GTK+ 3.0 (Rui Matos) (#652374)
- Trigger the layout chooser dialog response on 'row-activated' signal (RuiMatos) (#652409)
- Add 'formats' tab (Rodrigo Moya)
- Force icons only toolbar style (Bastien Nocera)
- Add 'system' tab (Rodrigo Moya)
Shell:
- Move the raised class hint to the tool item (Cosimo Cecchi)
- Don't update the visibility of the lock button (Florian Müllner) (#652299)
- Make --help-all and --help-gtk work (Bastien Nocera) (#652165)
- Use proper Unicode ellipses in the search renderer (Philip Withnall)
- Fix bad rendering of search results (Bastien Nocera) (#652709)
- Print warning for uninstantiable panels (Bastien Nocera) (#652585)
Sound:
- Fix direction of speaker test in RTL languages (Bastien Nocera) (#651273)
User accounts:
- Fix fingerprint assistant (Matthias Clasen) (#649678)
- Fix deleting users on 32-bit systems (Bastien Nocera) (#652073)
Xrandr:
- Change "Anti-Clockwise" to "Counterclockwise" (Dan Winship) (#652569)
Translations:
- ca (Pau Iranzo)
- ca@valencia (Carles Ferrando)
- de (Mario Blättermann)
- el (Kostas Papadimas)
- eo (Kristjan SCHMIDT)
- es (Daniel Mustieles, Jorge González)
- fa (Arash Mousavi)
- ga (Seán de Búrca)
- gl (Fran Diéguez)
- he (Yaron Shahrabani)
- hu (Gabor Kelemen)
- id (Andika Triwidada)
- lt (Aurimas Černius)
- nb (Kjartan Maraas)
- ru (Yuri Myasoedov)
- sl (Andrej Žnidaršič, Matej Urbančič)
- vi (Nguyễn Thái Ngọc Duy)
==========================
Version 3.0.2 (2011-05-24)
==========================
Common:
- Remove calls to AM_GNU_GETTEXT, IT_PROG_INTLTOOL should be enough (Rodrigo Moya)
Mouse:
- Update from gnome-settings-daemon (Bastien Nocera) (#695041)
Network:
- Properly select the active ap (Matthias Clasen) (#649934)
Power:
- Only show the 'When power is critically low' when there is a laptop
battery or UPS attached (Richard Hughes) (#646053)
Printers:
- Remove the subscription renewal timeout when the panel goes away (Matthias Clasen)
- Make Add button insensitive until user select a printer (Marek Kasik) (#648787)
- Improve search for PPDs for new devices (Marek Kasik)
- Check presence of new printer (Marek Kasik)
Shell:
- Add raised style to "All Settings" button (Cosimo Cecchi) (#645809)
- Kill warning in g_print call (Rodrigo Moya)
User accounts:
- Show username when no real name (Bastien Nocera) (#648348)
- Fix bug when name is changed to contain markup (Bastien Nocera)
- Don't call gtk_main_quit if AccountService is unavailable (David Benjamin) (#648969)
Translations:
- ga (Seán de Búrca)
- gl (Fran Diéguez)
- hu (Gabor Kelemen)
- nb (Kjartan Maraas)
- pl (Piotr Drąg)
- pt_BR (Rodrigo Padula de Oliveira)
- ug (Abduxukur Abdurixit)
- uk (Daniel Korostil)
- zh_CN (Funda Wang)
- zh_HK (Pin-Hsien Li)
- zh_TW (Pin-Hsien Li)
============================
Version 3.0.1.1 (2011-04-26)
============================
Shell:
- Fix initial state of 'search' icon in entry
Region:
- Add 'clear' icon in search entry (#647717)
Keyboard:
- Always add 'custom shortcuts' section (#648091)
- Make adding custom shortcuts work (#648187)
- Make unsetting custom shortcuts work
Display:
- Avoid critical warnings at startup (#648620)
Translation updates:
- Slovak
==========================
Version 3.0.1 (2011-04-26)
==========================
Shell:
- Don't exit when --help is called and the shell is
already running
- Center by default
Printers:
- Fix setting the default printer
- Fix initial state of printer list
- Make it possible to cancel adding new printers
- Set default papersize according to the locale
- Make it faster by caching PPDs for the local printer
Removable Media:
- Make "never autorun" checkbox work
User accounts:
- Try hard to not show the "root" account
- Use local documentation for "good password"
Network:
- Add support for connecting to hidden wireless networks
Background:
- Allow adding multiple images at once
Keyboard:
- Fix shortcuts disappearing when creating a new workspace
- Handle shortcut conflicts when they occur in a different section
Date & Time:
- Fix critical on startup
- Add support for all the possible TZ set on a Linux system
Info:
- Fix possible crash
- Don't block the UI when checking for free space
Sound:
- Only autostart panel applet in GNOME
- Fix clipping when sound volume is > 100%
Loads of updated translations
============================
Version 3.0.0.1 (2011-04-06)
============================
Network:
- Avoid assertions with mobile broadband devices
Background:
- Fix a compiler warning
Printers:
- Actualize printer and job lists automatically
- Avoid crash if policy is unavailable
- Don't set a reason when setting AcceptJobs
Date & Time:
- Fix test-endianess on OpenSUSE (#646780)
Translation updates: Vietnamese, Esperanto, Bengali, Persian
==========================
Version 3.0.0 (2011-04-04)
==========================
Background:
- Don't show errors when loading default bg (Bastien Nocera) (#646056)
- Don't use the GnomeBG thumbnails for the preview area (Cosimo Cecchi) (#646180)
- Don't assert() for typos in XML files (Bastien Nocera) (#646250)
Common:
- Remove API reference, as it's incomplete and going away for next cycle (Rodrigo Moya)
- Fix build on fresh checkouts (Florian Müllner)
Keyboard:
- Set repeat-interval correctly (Bastien Nocera) (#646241)
- Bump gnome-settings-daemon requirement (Bastien Nocera)
Network:
- Use symbolic icon for ad-hoc wireless connections (Cosimo Cecchi) (#646140)
- Hide the security cell renderer if there's no icon to display (Cosimo Cecchi) (#646140)
- Do not add bluetooth devices to the panel to avoid asserting the control-center (Richard Hughes)
- Fix build against NetworkManager on Debian (Matthias Clasen) (#646349)
- Reset the network name combo when disconnected (Matthias Clasen) (#646031)
- Display more detailed status for unavailable devices (Matthias Clasen) (#646027)
- Make creating vpn connections work again (Matthias Clasen)
Printers:
- Make "Print Test Page" button always sensitive (Marek Kasik)
- Do not delete browsed printers (Marek Kasik)
Region:
- Make the layout options modal (Cosimo Cecchi) (#646183)
Shell:
- Turn off spinner cursor when launched (Bastien Nocera) (#646045)
Sound:
- Make the volume icons smaller and center them properly in the bar (Cosimo Cecchi) (#646153)
- Make sound applet work again in fallback (Bastien Nocera) (#646044)
Universal Access:
- Don't incorrectly mark some hboxes as insensitive (Cosimo Cecchi) (#646240)
Translations:
- af (Friedel Wolff)
- ar (Khaled Hosny)
- bn (Jamil Ahmed)
- ca (Jordi Serratosa)
- cz (Marek Černocký)
- da (Ask H. Larsen)
- de (Wolfgang Stöggl)
- el (George Stefanakis, Simos Xenitellis)
- en_GB (Bruce Cowan)
- eu (Iñaki Larrañaga Murgoitio)
- gu (Sweta Kothari)
- hi (Rajesh Ranjan)
- hu (Gabor Kelemen)
- it (Luca Ferretti)
- ja (Jiro Matsuzawa, Takayuki KUSANO)
- kn (Shankar Prasad)
- ko (Changwoo Ryu)
- lt (Gintautas Miliauskas)
- nb (Kjartan Maraas)
- nl (Wouter Bolsterlee)
- pl (Piotr Drąg)
- pt (Duarte Loreto)
- ta (Dr.T.Vasudevan)
- te (krishnababu k)
- tr (Baris Cicek)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
=============================
Version 2.91.93 (2011-03-28)
=============================
Common:
- Add a --verbose option to the shell
- Make sure the desktop file uses categories that show up in menus
Date & Time:
- Fix time widget ordering in RTL locales
Printing:
- Use a single privilege to unlock the entire page
- Honor disable-print-setup lockdown setting
- Use CUPS printer test page
Power:
- Use a better icon
Sound:
- Port to GSettings
- Fallback if loading a non-existent custom theme
User Accounts:
- Remove stray debugging output
- Make crop window modal
- Fix crop window background color
Universal Access:
- Bring screen reader option back
Network:
- Drop creation of custom connections for now, except for VPN
- Show a padlock icon for 'secure' access points
- Memory leak fixes
- Implement on/off switch for wired devices
- Properly track VPN connection state
- Use grids for better UI alignment
- Handle NetworkManager restarts gracefully
Region:
- Remove tooltips from layout list
Background:
- Make the window fit on small screens
Translations:
Arabic, Swedish, Galician, Estonian, Norwegian bokmål, Italian,
Slovenian, Romanian, German, Simplified Chinese, Ukrainian,
Spanish, French, Russian, Catalan, Dutch, Punjabi, Korean,
Czech, Hebrew, Vietnamese, Japanese, Uighur, Latvian, Hindi,
Brazilian Portuguese, Polish
=============================
Version 2.91.92 (2011-03-21)
=============================
Common:
- Bump GTK+ dep to 3.0.2 (Matthias Clasen) (#644182)
- Fix linking of libshortcuts against X (Frédéric Péters) (#644410)
- Improve CUPS detection (Saleem Abdulrasool) (#644064)