forked from mate-desktop/mate-power-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS.GNOME
2622 lines (2242 loc) · 106 KB
/
NEWS.GNOME
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 2.32.0
~~~~~~~~~~~~~~
Released: 2010-09-27
* Translations
- Updated Arabic translation (Khaled Hosny)
- Updated Bulgarian translation (Damyan Ivanov)
- Updated Dutch translation (Wouter Bolsterlee)
- Updated Italian translation (Milo Casagrande)
- Updated Japanese translation (Takayuki KUSANO)
- Updated Lithuanian translation (Žygimantas Beručka)
- Updated Russian translation (Yuri Myasoedov)
- Updated Swedish translation (Daniel Nylander)
Version 2.31.92
~~~~~~~~~~~~~~~
Released: 2010-09-16
* Translations
- Update Czech translation (Marek Cernocky)
- Updated Brazilian Portuguese translation (Antonio Fernandes C. Neto)
- Updated British English translation (Bruce Cowan)
- Updated Finnish translation (Timo Jyrinki)
- Updated French translation (Bruno Brouard)
- Updated Greek translation for gnome-power-manager (Michael Kotsarinis)
- Updated Italian translation (Milo Casagrande)
- Updated Norwegian bokmål translation (Kjartan Maraas)
- Updated Polish translation (Piotr Drąg)
- Updated Portuguese translation (Duarte Loreto)
- Updated Swedish translation (Daniel Nylander)
- Update Simplified Chinese help translation (Aron Xu)
* Bugfix:
- Only disable deprecated code for --enable-strict builds (Richard Hughes)
- Remove last traces of DeviceKit-power (Michael Biebl)
Version 2.31.91
~~~~~~~~~~~~~~~
Released: 2010-08-31
* Translations
- Updated Danish translation (Ask H. Larsen)
- Updated Estonian translation (Mattias Põldaru)
- Updated Hungarian translation (Gabor Kelemen)
- Updated Indonesian translation (Andika Triwidada)
- Updated Serbian translation (Милош Поповић)
- Updated Slovak translation (Pavol Šimo)
- Updated Slovenian translation (Matej Urbančič)
- Updated Traditional Chinese translation(Hong Kong and Taiwan) (Chao-Hsiung Liao)
* Bugfix:
- brightness-applet: Add missing include (Martin Pitt)
- inhibit-applet: Add missing include and re-enable deprecated GDK functions (Martin Pitt)
- Do not autoscale the percentage graph in the history tab. Fixes #613984 (Richard Hughes)
- Do not dist org.gnome.power.policy in the tarball (Richard Hughes)
- Fix #627711 - Don't crash on systems which don't have XBACKLIGHT (Chris Coulson)
- Only connect the UpClient::device-added signal after the coldplug (Richard Hughes)
- Re-enable deprecated GDK functions for brightness applet (Martin Pitt)
- Use the correct backlight step value when using the legacy fallback device (Will Woods)
Version 2.31.90
~~~~~~~~~~~~~~~
Released: 2010-08-18
* Bugfix
- Deal with the deprecation of GtkNotebookPage (Frederic Peters)
- Cast idle_time_in_msec to appropriate type (Frederic Peters)
* Translations
- Updated German translation (Christian Kirbach)
- Updated Spanish translation (Jorge González)
- Updated Galician translation (Fran Diéguez)
- Updated Hebrew translation (Yaron Shahrabani)
- Updated Norwegian bokmål translation (Kjartan Maraas)
- Updated Punjabi translation (A S Alam)
- Updated Swedish translation (Daniel Nylander)
- Updated Simplified Chinese translation (Aron Xu)
Version 2.31.6
~~~~~~~~~~~~~~
Released: 2010-08-06
* Important note:
- This is 2.31.6, which is forked from the gnome-2-30 branch.
- If you have been using 2.31.5 or any earlier 2.31 version, then you will
notice the UI and functionality going back in time. This is unfortunate.
- GNOME 3 has been pushed back 6 months, and the GSettings and GtkApplication
code is not ready for prime-time just yet. I'm not willing to add multiple
levels of ifdef'd code for the n-permutations of distros on different GTK
and GLib versions, so people are just going to make do with 3.30.x with
a few backported bugs and translation fixes. I do apologise to the
translators, who have wasted some time on translating git master.
- This release does not use the new control center panel, GDBus or GSettings.
- I don't intend on wasting time backporting features from git master into
GNOME 2.32.x. Bugfixes will be, where they make sense.
- In my personal opinion, GNOME 2.32.0 is going to blow goats.
* New Features:
- Add new 6 hours period in power history stats (Rafał Rosiak)
- Use device icons from the icon name specification (Richard Hughes)
* Bugfix:
- Adjust dim timeout when necessary (Tim Liim)
- As we no longer have more than one backlight mechanism, remove a ton of abstract code (Richard Hughes)
- Backport support for new devices recognised in UPower (Richard Hughes)
- Backport various translation fixes and translator comments from git master (Richard Hughes)
- Do not assume the lid is open at boot. Fixes #622026 (Richard Hughes)
- Do not show gnome-power-statistics in the menus (Richard Hughes)
- Do not show the prefs menu on LiveCD's and with GDM. Fixes #621674 (Richard Hughes)
- Don't treat percentage=0 as error condition (Chow Loong Jin)
- Fix a crash when displaying the 'No GConf schema warning' (Richard Hughes)
- Port from DeviceKit-power to UPower (Richard Hughes)
- Provide a pkexec helper for systems that do not have xbacklight capability (Richard Hughes)
- Remove hardcoded paths from pkexec setup (Brian Hutsell)
- Remove the use of HAL from gnome-power-manager (Richard Hughes)
Version 2.30.1
~~~~~~~~~~~~~~
Released: 2010-04-26
* Translations
- Updated Catalan (Valencian) translation (Carles Ferrando, Jordi Serratosa)
- Updated Estonian translation (Mattias Põldaru)
- Updated Greek translation (Jenny Petoumenou)
- Updated Indonesian translation (Andika Triwidada)
- Updated Kannada translations (Shankar Prasad)
- Updated Oriya translation (Manoj Kumar Giri)
- Updated Thai translation (Theppitak Karoonboonyanan)
- Update Simplified Chinese translation (Chen Xing)
* Bugfix:
- Only dim the screen on idle when on the active console (Chris Coulson)
- Make EggConsoleKit a singleton (Chris Coulson)
- Fix up a critical warning from the GpmScreensaver code (Richard Hughes)
Version 2.30.0
~~~~~~~~~~~~~~
Released: 2010-03-29
* Translations
- Updated Arabic translation (Khaled Hosny)
- Updated Basque language (Inaki Larranaga Murgoitio)
- Updated Bengali translation (Jamil Ahmed)
- Updated Brazilian Portuguese translation (André Gondim)
- Updated British English translation (Bruce Cowan)
- Updated Bulgarian translation (Alexander Shopov)
- Updated Catalan translation (David Planella)
- Updated Czech translation (Marek Černocký)
- Updated Danish translation (Ask H. Larsen)
- Updated Dutch translation (Wouter Bolsterlee, Ruben Vermeersch)
- Updated Estonian translation (Mattias Põldaru, Priit Laes)
- Updated Finnish translation (Tommi Vainikainen)
- Updated French translation (Claude Paroz)
- Updated Galician translation (Fran Diéguez)
- Updated German translation (Christian Kirbach)
- Updated Greek doc translation (Simos Xenitellis)
- Updated Greek translation (Kostas Papadimas, Nikos Bakaoukas)
- Updated Hungarian translation (Gabor Kelemen)
- Updated Italian translation (Milo Casagrande)
- Updated Korean translation (Changwoo Ryu)
- Updated Lithuanian translation. (Gintautas Miliauskas)
- Updated Malayalam translation (Praveen Arimbrathodiyil)
- Updated Norwegian bokmål translation (Kjartan Maraas)
- Updated Polish translation (Piotr Drąg)
- Updated Portuguese translation (Duarte Loreto)
- Updated Punjabi translation (A S Alam)
- Updated Romanian translation (Adi Roiban)
- Updated Russian translation (Alexander Saprykin, Юрий Козлов)
- Updated Serbian translations (Miloš Popović)
- Updated Slovenian translation (Matej Urbančič)
- Updated Spanish translation (Jorge González)
- Updated Swedish translation (Daniel Nylander)
- updated Tamil translation (vasudeven)
- Updated Traditional Chinese translation(Hong Kong and Taiwan) (Chao-Hsiung Liao, Kevin Wei)
- Updated Ukrainian translation (Maxim V. Dziumanenko)
* Bugfix:
- Check for libpanel only if building the applets (Saleem Abdulrasool)
- Check for XRR* functions using library version instead of proto version (Rémi Cardona)
- Use pkg-config instead of autoconf macros to find X libs and protos (Rémi Cardona)
- Declare GError in gpm_brightness_hal_init to fix build failure (Chris Coulson)
- Do not set a charge warning if the device is on AC (Pramod Dematagoda)
- Do not use EggDbusProxy in GpmScreensaver (Marc Deslauriers)
- Don't query the capabilities of the notification daemon (Chris Coulson)
- Ensure we close any 'battery low' notifications when we switch to being on AC (Richard Hughes)
- Fix a problem where the critical action is not done in the case of a UPS (Pramod Dematagoda)
- Fix a race condition where we can miss the idle reset alarm (Chris Coulson)
- Fix up a translation using ngettext rather than assuming the plural. Fixes #612950 (Richard Hughes)
- Fix wrong suspends with docked laptops (Martin Pitt)
- If a battery charge is low but not critical don't play the sound meant for a critical charge event (Pramod Dematagoda)
- Play a sound loop if the charge of a laptop battery/ups reaches a critical level. Fixes rh#470090 (Pramod Dematagoda)
- Remove the pointy-finger status icon when the idletime code fails to work correctly (Richard Hughes)
- Replace devkit-power call with upower in gnome-power-bugreport.sh (Chris Coulson)
Version 2.29.91
~~~~~~~~~~~~~~~
Released: 2009-03-01
* Translations
- Updated Bulgarian translation (Alexander Shopov)
- Updated British English translation (Bruce Cowan)
- Updated Traditional Chinese translation (Chao-Hsiung Liao)
- Updated French translation (Claude Paroz)
- Updated Brazilian Portuguese translation (Djavan Fagundes)
- Updated Simplified Chinese translation (Eleanor Chen)
- Updated Galician Translation (Fran Diéguez)
- Updated Spanish translation (Jorge González)
- Updated Arabic translation (Khaled Hosny)
- Updated Russian translation (Leonid Kanter, Yuri Kozlov)
- Updated Romanian translation (Lucian Adrian Grijincu)
- Updated German translation (Mario Blättermann)
- Updated Slovenian translation (Matej Urbančič)
- Updated Italian translation (Milo Casagrande)
- Updated Polish translation (Piotr Drąg)
- Updated Norwegian Nynorsk translation (Torstein Adolf Winterseth)
- Updated German translation (Wolfgang Stöggl)
- Updated Tamil translation (vasudeven)
* Bugfix:
- DeviceKit-disks is now called UDisks (Richard Hughes)
- Ensure we clear all notification bubbles on resume (William Jon McCann)
- Set the timeout for critical battery notification to never (William Jon McCann)
- Increase the critical action timeout to 20 seconds (William Jon McCann)
- When we're critically low, don't give a time as it's often imprecise (William Jon McCann)
Version 2.29.2
~~~~~~~~~~~~~~
Released: 2009-02-01
* Translations
- Updated Bulgarian translation (Alexander Shopov)
- Updated Welsh translation (Iestyn Pryce)
- Updated Bengali translation (Jamil Ahmed)
- Updated Spanish translation (Jorge González)
- Updated Arabic translation (Khaled Hosny)
- Updated Norwegian bokmål translation (Kjartan Maraas)
- Updated Thai translation (Theppitak Karoonboonyanan)
- updated Tamil translation (vasudeven)
- Updated Slovenian translation (Matej Urbančič)
- Updated Estonian translation (Mattias Põldaru)
- Updated Ukrainian translation (Maxim V. Dziumanenko)
- Updated Vietnamese translation (Nguyễn Thái Ngọc Duy)
* New Features:
- Move the power management preferences into the hardware section of the control center (Richard Hughes)
- Use the name of 'Power' for the power management preferences capplet (Richard Hughes)
* Bugfix:
- Don't rely on the cached value of the lid status, to fix a double suspend issue (Chow Loong Jin)
- Add a flag to inhibit consolekit events just after we resumed (Chow Loong Jin)
- Don't automatically suspend if there are suspend inhibits (Chris Coulson)
- Do not exit if hal is not available (Martin Pitt)
- Only connect to HAL if there is no xrandr backlight hardware (Martin Pitt)
- Fix compile when using an ld that defaults to --as-needed (Richard Hughes)
- Enable the help action in gnome-power-statistics. Fixes #607005 (Richard Hughes)
- Ensure the window is realized before we invalidate it. Fixes #604918 (Richard Hughes)
- Don't show the user a sleep failed link pointing to the quirk site (Richard Hughes)
- Show the device name even when using UPower (Richard Hughes)
Version 2.29.1
~~~~~~~~~~~~~~
Released: 2009-12-08
* Translations
- Updated Simplified Chinese translation (Aron Xu)
- Updated Swedish translation (Daniel Nylander)
- Updated Catalan translation (David Planella)
- Updated Estonian translation (Ivar Smolin)
- Updated Spanish translation (Jorge González)
- Updated Norwegian bokmål translation (Kjartan Maraas)
- Updated Greek translation. (Kostas Papadimas)
- Updated Romanian translation (Lucian Adrian Grijincu)
- Updated Danish translation (Mads Lundby)
- Updated Oriya translation (Manoj Kumar Giri)
- Updated Czech translation (Marek Černocký)
- Updated Slovenian translation (Matej Urbančič)
- Updated Simplified Chinese translation (Tao Wei)
- Updated Shavian translation (Thomas Thurman)
- Updated Hebrew translation (Yaron Shahrabani)
- Updated Hebrew translation (Yaron Sharabani)
- Updated Tamil translation (drtvasudevan)
- Added Simplified Chinese translation user manual (苏运强)
* New Features:
- Switch to a single menu design, rather than a seporate left and right menu (Richard Hughes)
- Show the sleep failure as a modal dialog box. Fixes rh#427065 (Richard Hughes)
- Sets some tooltips for the gnome-power-preferences buttons (Richard Hughes)
- Throttle screensaver before suspend/hibernate (Tormod Volden)
- Add a --device parameter to gnome-power-statistics so we can set the device focus (Richard Hughes)
- When we click on a battery device in the context menu, show the gnome-power-statistics dialog. Fixes #596983 (Richard Hughes)
- Use gnome-settings-daemon popup code (Bastien Nocera)
* Bugfix:
- Add missing indirection to return value of DriveSetAllSpindownTimeouts call (Chris Coulson)
- Use accessor functions instead direct access (Javier Jardón)
- Fix some error messages and comments (Martin Pitt)
- Help the kernel through its key name confusion (Matthias Clasen)
- Remove devkit-power check (Michael Biebl)
- Remove HAL_LIBS/HAL_CFLAGS (Michael Biebl)
- Remove obsolete check-foreground-console support. (Michael Biebl)
- Use separate variables for dbus and dbus-glib (Michael Biebl)
- Improve configure summary wrt HAL (Michael Biebl)
- Remove outdated information about DeviceKit from README (Michael Biebl)
- Sync compiler warnings handling with DK-power (Michael Biebl)
- Remove DBUS_SYS_DIR from configure summary (Michael Biebl)
- Do not hide some radio buttons depending on the current machine state (Richard Hughes)
- Correctly set the focus on the last used device in gnome-power-statistics (Richard Hughes)
- Add GSEAL_ENABLE to CPPFLAGS (Richard Hughes)
- Apparently 'whilst' is only a British English thing. Change to 'while' throughout. Fixes #596963 (Richard Hughes)
- Remove the 'About' and 'Help' items from the status area context menu (Richard Hughes)
- Rename show_context_menu to show_actions as we're moving to a mono-menu design (Richard Hughes)
- Remove show_actions_in_menu GConf key as the menu items are being removed eventually (Richard Hughes)
- Remove the suspend and hibernate menu items (Richard Hughes)
- Fix a bug where we try to match and refresh a virtual device, which means g-p-s crashes on next start (Richard Hughes)
- DeviceKit-disks is expecting an int, not a uint (Scott Howard)
Version 2.27.92
~~~~~~~~~~~~~~~
Released: 2009-09-07
* Translations
- Added Belarusian translation (Alexander Nyakhaychyk)
- Added Catalan (Valencian) translation (Carles Ferrando)
- Updated Turkish translation (Baris Cicek)
- Updated Portuguese translation (Duarte Loreto)
- Updated Lithuanian Translation (Gintautas Miliauskas)
- Updated Basque translation (Inaki Larranaga Murgoitio)
- Updated Bengali translation (Jamil Ahmed)
- Updated Arabic translation (Khaled Hosny)
- Updated Norwegian bokmål translation (Kjartan Maraas)
- Updated German translation (Mario Blättermann)
- Updated Estonian translation (Mattias Põldaru)
- Updated Serbian translation (Miloš Popović)
- Updated Bengali India Translations (Runa Bhattacharjee)
- Updated Gujarati Translations (Sweta Kothari)
- Updated Tamil Translations (ifelix)
- Updated Telugu Translations (krishnababu k)
* Bugfix:
- When building with hal, link gnome-power-manager against libhal-glib (Frédéric Péters)
- Make notifications more reliable at session startup (Pramod Dematagoda)
- Fix a bug where the critical time was not displayed correctly (Richard Hughes)
- Don't crash g-p-s when there are no devices (Richard Hughes)
- Open the gnome-power-manager help, not the 'cheese' help (Richard Hughes)
- Never, never, show 'Unknown time'. Fixes rh#520999 (Richard Hughes)
- Allow compile without HAL. Inspired from a patch from Javier Jardón, many thanks (Richard Hughes)
- Remove small memory leak spotted using clang (Richard Hughes)
- Assign the correct icon when the sleep fails (Richard Hughes)
- Correct some shoddy error checking. Spotted by clang (Richard Hughes)
Version 2.27.91
~~~~~~~~~~~~~~~
Released: 2009-08-24
* Translations
- Updated Bulgarian translation (Alexander Shopov)
- Updated Galician translation (Antón Méixome)
- Update Korean translation (Changwoo Ryu)
- Updated Traditional Chinese translation (Chao-Hsiung Liao)
- Updated French translation (Claude Paroz)
- Updated Swedish translation (Daniel Nylander)
- Updated Brazilian Portuguese translation (Djavan Fagundes)
- Updating Estonian translation (Ivar Smolin)
- Updated Spanish translation (Jorge González)
- Updated Norwegian bokmål translation (Kjartan Maraas)
- Updated Oriya Translation (Manoj Kumar Giri)
- Updated German translation (Mario Blättermann)
- Updated Hebrew translation (Mark Krapivner)
- Updating Estonian translation (Mattias Põldaru)
- Updated Irish translation (Seán de Búrca)
- Updated Thai translation (Theppitak Karoonboonyanan)
- Updated Polish translation (Tomasz Dominikowski)
- Updated Finnish translation (Tommi Vainikainen)
* Bugfix:
- Remove the depricated Encoding= lines from the desktop files. Fixes #590612 (Richard Hughes)
- Fix up quite a few translations, inspired by a patch from Scott Howard (Richard Hughes)
- Add the enumerated actions in a 64bit safe way. Fixes #590991 (Richard Hughes)
- Don't show the brightness OSD when system AC state changes (Richard Hughes)
- Remove all the bodges from the IDLETIMER code now X is fixed (Richard Hughes)
- Only show shutdown in the prefs GUI if ConsoleKit allows it (Richard Hughes)
- Always show the battery status icons in the left click action (Richard Hughes)
- Change the notification default for fully charged to FALSE for #592613 (Richard Hughes)
Version 2.27.5
~~~~~~~~~~~~~~
Released: 2009-08-03
* Translations
- Updated Traditional Chinese translation (Chao-Hsiung Liao)
- Updated Swedish translation (Daniel Nylander)
- Updated Finnish translation (Ilkka Tuohela)
- Updated Estonian translation (Ivar Smolin)
- Updated Spanish translation (Jorge González)
- Updated Ukrainian translation (Maxim V. Dziumanenko)
- Updated Irish translation (Seán de Búrca)
- Updated Dutch translation (Tino Meinen)
- Updated Tamil translation (drtvasudevan)
* New Features:
- Claim org.freedesktop.Policy.Power on D-BUS (Martin Pitt)
- Remove PolkitGnome code completely as PolicyKit 1.0 doesn't need this (Matthias Clasen)
- Add a bodge to reset the idletime XAlarm when we are no longer inhibited (Richard Hughes)
- Add functionality to debug the idle code by setting GPMIDLEDEBUG on the command line (Richard Hughes)
- Use the same composited OSD for brightness notification. Fixes rh#512968 (Richard Hughes)
- Add DeviceKit data to the bugreport script (Richard Hughes)
* Bugfix:
- Fix pointer alignment to build on sparc (Martin Pitt)
- gnome-power-bugreport.sh: add missing hasbang (Martin Pitt)
- Show .desktop files in XFCE (Martin Pitt)
- Make hotkeys work with modifiers (Martin Pitt)
- Remove an unused include to fix compile (Matthias Clasen)
- Be more paranoid about setting idle in a race (Richard Hughes)
- Remove some UI elements after UI review (Richard Hughes)
- Correct the type of the fully-charged signal. Fixes #588259 (Richard Hughes)
- Don't ever fallback to the warning icon in the tray when batteries are invalid (Richard Hughes)
- Don't show a discharging battery notification on each battery, just the global battery (Richard Hughes)
- The composite battery is only fully charged if all batteries are fully charged (Richard Hughes)
- Remove GpmNotify, and do the notifications in a more sane way. Fixes #423186 (Richard Hughes)
- Constrain the user to a dropdown selection of times, as freeform sliders are bad UI (Richard Hughes)
- Add policy to show icon when low, rather than critically low. Fixes #589125 (Richard Hughes)
- Inhibit gnome-session in the applet, not gnome-power-manager (Richard Hughes)
- Change the default to hibernate when critically low on battery power (Richard Hughes)
- When libnotify fails, fall back to modal dialogs (Richard Hughes)
- Use enumerated values for the policy actions, and hide 'Do nothing' unless specified in GConf (Richard Hughes)
- Finally remove the CanSuspend and CanHibernate options, now that gnome-session is ported (Richard Hughes)
- Switch back to org.gnome.PowerManager as we don't adhere to the shared spec anymore (Richard Hughes)
- Compile common code with a noinst library to make compile quicker, and reduce the compressed package size by 100kB (Richard Hughes)
- Add a GConf key to show or hide the sleep quirk site (Richard Hughes)
- Make the orange icons yellower. Fixes rh#512962 (Richard Hughes)
- Use the correct DBus signal types when watching gnome-session (Richard Hughes)
- Save the caches value before we emit the inhibit and idle signals (Richard Hughes)
- Only show gnome-power-statistics in the context menu if it is installed. Fixes rh#514249 (Richard Hughes)
- Only use libpanel-applet flags to build applets (Vincent Untz)
==============
Version 2.27.2
==============
Translations:
- Updated Estonian translation (Ivar Smolin)
- Updated Spanish translation (Jorge Gonzalez)
- Updated Norwegian bokmål translation (Kjartan Maraas)
- Updated Estonian translation (Mattias Põldaru)
- Updated Estonian translation (Priit Laes)
- Updated Bengali India Translation (Runa Bhattacharjee)
- Updated Tamil translation (drtvasudevan)
Features:
- Enable pretty compiler output with new automake versions (Richard Hughes)
- Use composite battery mode by default to fix multi-battery laptops (Richard Hughes)
- Add manager policy to change the disk spindown based on timeouts set in GConf (Richard Hughes)
- Add GConf keys for the disk spindown functionality (Richard Hughes)
- Add preferences checkboxes for the disk spindown functionality (Richard Hughes)
- No longer support HAL legacy buttons (Richard Hughes)
- Add support for recall data provided by DeviceKit-power (Richard Hughes)
Bugfixes:
- Prefix GTKBuilder files with gettext/glade (Claude Paroz)
- Use gtk_show_uri i.s.o. gnome-open (Jaap A. Haitsma)
- Remove -Wunitialized because it does not compile on Ubuntu Jaunty (Jaap A. Haitsma)
- Fix the category in the gnome-power-statistic desktop file. Fixes rh#489041 (Richard Hughes)
- Make minimum size of th statistics graphs smaller. Fixes rh#491426 (Richard Hughes)
- Don't show the feedback widget when the brightness changes, only on key press and when interactive (Richard Hughes)
- If we caught our idletime alarm, then remove from the filter (Richard Hughes)
- Take the battery capacity into account when using multiple batteries (Richard Hughes)
- Ignore capacity readings of less than 1% (Richard Hughes)
- Show a label to the user when there is no graph data (Richard Hughes)
- Add statistics devices in visually pleasing order (Richard Hughes)
- Use the composite device for getting the global system warning icon (Richard Hughes)
- Setup the reset event before we do the idle action, to finally fix blanking (Richard Hughes)
- Be more paranoid about setting idle in a race (Richard Hughes)
- Remove three unused GConf keys (Richard Hughes)
- Don't show the whole object path in the GUI, just show the ID (Richard Hughes)
- Only print the DeviceKit device if we are using --verbose (Richard Hughes)
- Remove a little bit more of our HAL dep, and use the lid-is-present DK-p property (Richard Hughes)
- Fix compile with DKP_DISABLE_DEPRECATED turned on (Richard Hughes)
- Remove ambient light sensor support, and keyboard backlight devices (Richard Hughes)
- Support DKP_DEVICE_STATE_PENDING_x in more places (Richard Hughes)
==============
Version 2.27.1
==============
Translations:
- Updated Korean translation (Shankar Prasad)
- Updated Greek translation (Simos Xenitellis, Michael Kotsarinis)
- Updated Tamil translation (drtvasudevan)
- Updated Punjabi (Gurmukhi) Translation (A S Alam)
- Updated Simplified Chinese translation (Gavin Huang, Deng Xiyue)
- Updated Catalan translation (David Planella, Jordi Mas i Hernandez)
- Updated Serbian translation (Miloš Popović)
- Updated Galician translation (Suso Baleato)
- Updated Estonian translation (Ivar Smolin)
- Updated Spanish translation (Jorge Gonzalez)
- Updated Slovenian translation (Matej Urban)
- Updated Ukrainian translation (Maxim V. Dziumanenko)
- Updated German translation (Nathan-J. Hirschauer)
- Updated Russian translation (Nickolay V. Shmyrev)
- Updated Czech translation (Lucas Lommer, Petr Kovar)
Features:
- Add DOAP file (Richard Hughes)
- Connect to gnome-session and exit on logout (Richard Hughes)
- Change the default lid close on AC policy to be suspend, not blank (Richard Hughes)
- Show the processor device if we have capability, not if we have events (Richard Hughes)
- Add support for the DeviceKit-power property lid-is-closed so we can now run without --enable-legacy-buttons (Richard Hughes)
- Convert from libglade to GtkBuilder (Richard Hughes)
- Expose graph details as properties on the object, and constrain time to user value. Fixes #581910 (Richard Hughes)
- Add a composite device to GpmEngine so we can DTRT for multiple primary batteries (Richard Hughes)
Bugfixes:
- Add desktop category to doap file (Olav Vitters)
- Only setup the blanking timeout when a timeout is set. Fixes rh#498041 (Kyle McMartin)
- Attach the libnotify popups to the notification icon later (Pramod Dematagoda)
- Check whether xrandr-1.3 features are really supported by xorg-server. Fixes #582142 (Priit Laes)
- Preload gconf tree /apps/gnome-power-manager recursively. Fixes #578545 (Behdad Esfahbod)
- Fix the low capacity warning to fix rh#489832 (Richard Hughes)
- Rewrite the DPMS class to have 1% of the complexity (Richard Hughes)
- Remove unused GConf keys (Richard Hughes)
- Use ngettext for a 2.26.x era string. Fixes #576128 (Richard Hughes)
- Unref the popup window when it's cleared. Fixes #577901 (Richard Hughes)
- Ensure we clear the default DPMS timeout of 1200s. Should fix #576169 (Richard Hughes)
- Remove our local copy of libdevkit-power (Richard Hughes)
- Convert a floating reference to prevent a GTK warning (Richard Hughes)
- Use G_GINT64_FORMAT to fix compile on 64 bit computers (Richard Hughes)
- Do the lid policy action on active-change. Fixes rh#497262 (Richard Hughes)
- Don't segfault if org.gnome.Session is not present on the bus. Fixes #581425 (Richard Hughes)
- Ensure we are on battery power before we take any of the low power battery actions (Richard Hughes)
- Remove the unused abstraction GpmAdapter, and use DkpClient directly (Richard Hughes)
- Remove the single use abstract GpmRefcount and use a local timer (Richard Hughes)
- Remove some methods on the DBus interface that have moved to DeviceKit-power (Richard Hughes)
- Remove the inhibit interface, and rely on gnome-session (Richard Hughes)
- Use DeviceKit-power to get the can-suspend and can-hibernate properties (Richard Hughes)
- Handle return to NORMAL idle when lid closed a bit better (Richard Hughes)
- Correct the polarity of the on-ac battery check when inhibiting the screensaver (Richard Hughes)
- Correct the logic for the fully charged and discharging popups (Richard Hughes)
- Don't try to keep closing the feedback widget (Richard Hughes)
- Don't always show a single graph dot in gnome-power-statistics (Richard Hughes)
==============
Version 2.26.0
==============
Translations:
- Added mai: Rajesh Ranjan
- Updated as: Amitakhya Phukan
- Updated el: Kostas Papadimas
- Updated lt: Žygimantas Beručka
- Updated da: Ask H Larsen
- Updated mr: Sandeep Shedmake
- Updated ta: I Felix
- Updated hi: Rajesh Ranjan
- Updated nb: Kjartan Maraas
- Updated te: Krishnababu K
- Updated or: Manoj Kumar Giri
- Updated hi: Rajesh Ranjan
- Updated gu: Ankitkumar Patel
Help Manual Translations:
- Added fi: Kaarina V Sauna-aho / Nomovok
===============
Version 2.25.92
===============
- Fixed #529214, Need longer timeout periods (Richard Hughes)
- Fixed #571330, gnome-power-manager shouldn't start on session panel phase (Lucas Rocha)
- Fixed #571950, make default-button have a floppy in it (Richard Hughes)
- Fixed #485103, Don't crash if there's no gnome-session (Richard Hughes)
- Fix double free when passed --version (Richard Hughes)
- Fix the battery history when using a new DeviceKit-power (Richard Hughes)
- Fix up the icon when we are state unknown, and very close to the charging capacity (Richard Hughes)
- Disable the ambient light sensor by default (Richard Hughes)
Translations:
- Updated be@latin: Ihar Hrachyshka
- Updated bg: Alexander Shopov
- Updated da: Ask H, Ask Hjorth Larsen
- Updated de: Wolfgang Stöggl, Wolfgang Stoeggl
- Updated en_GB: Philip Withnall, David Lodge
- Updated es: Jorge González, Jorge Gonzalez
- Updated eu: Iñaki Larrañaga Murgoitio, Inaki Larranaga Murgoitio
- Updated fi: Ilkka Tuohela
- Updated fr: Claude Paroz
- Updated hu: Gabor Kelemen
- Updated it: Milo Casagrande
- Updated ja: Takeshi AIHANA
- Updated kn: Shankar Prasad
- Updated ko: Changwoo Ryu
- Updated lt: Gintautas Miliauskas
- Updated lv: Raivis Dejus
- Updated nl: Wouter Bolsterlee
- Updated or: Manoj Kumar Giri
- Updated pl: Tomasz Dominikowski
- Updated pt: Duarte Loreto
- Updated pt_BR: Djavan Fagundes, Vladimir Melo
- Updated ro: Adi Roiban, Jani Monoses
- Updated sv: Daniel Nylander
- Updated ta: Tirumurthi Vasudevan, Dr.T.vasudevan
- Updated th: Theppitak Karoonboonyanan
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao
Help Manual Translations:
- Updated ca: Joan Duran
- Updated en_GB: Philip Withnall
- Updated es: Jorge Gonzalez, Jorge González
- Updated eu: Inaki Larranaga Murgoitio, Iñaki Larrañaga Murgoitio
- Updated it: Milo Casagrande
- Updated sv: Daniel Nylander
===============
Version 2.25.91
===============
- Fixed #545886, Hard-to-distinguish charge levels for charging icons (Richard Hughes)
- Fixed #568756, Install the autostart file in the xdg directory (Richard Hughes)
- Fixed #545886, Add 32x32 icons, and make sure all charging icons are blue (Lapo Calamandrei)
- Fixed #570242, Add some translator comments to the new stats interface (Richard Hughes)
- Fixed #570254, Used new icons in 16, 22, and 24 sizes in on-shelf perspective (Andreas Nilsson)
- Fixed problem where the icon would not show on startup or when the notification try was reloaded (Richard Hughes)
- Start in the GNOME Panel phase, not the GNOME Applications phase so we work with the fast user switch applet (Richard Hughes)
- Don't show the discharging icon when the status is unknown (Richard Hughes)
- Remove translatable flag from gtk-refresh stock button (Gabor Kelemen)
- Ask for edge triggers on system idle time, not level triggers (Adam Jackson)
- Add a configure option for --enable-legacy-buttons to support HAL and Xorg keys. By default we are now only supporting Xorg events (Richard Hughes)
- Fix compile failure with gcc-4.4.0 and old versions of glib2 (Richard Hughes)
Translations:
- Updated ast: Gil Forcada, Astur
- Updated es: Jorge González, Jorge Gonzalez
- Updated gu: Sweta Kothari
- Updated hu: Gabor Kelemen
- Updated nb: Kjartan Maraas
- Updated te: Krishnababu K, Krishna Babu K
- Updated vi: Clytie Siddall
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao
Help Manual Translations:
- Updated de: Mario Blättermann
- Updated sv: Daniel Nylander
==============
Version 2.25.3
==============
- Fixed #562576, profile is not saved correctly (Richard Hughes)
- Fixed #563791, GNOME Goal: Clean up GLib and GTK+ includes (Pedro Fragoso)
- Fixed #565076, Use g_timeout_add_seconds where possible (Richard Hughes)
- Fixed #565552, gtk_status_icon_set_tooltip has been deprecated (Frederic Peters)
- Fixed #565867, build time check for DeviceKit (Richard Hughes)
- Fixed #566115, Fails to build on sparc (fails to build on sparc)
- Fixed #567295, statistics doesn't update title (Richard Hughes)
- Fixed #567298, some minor code issues in gpm-statisctics.c main() (Richard Hughes)
- Fixed #567918, idle delay changes (Richard Hughes)
- Fixed #569100, when brightness is to 0, pressing one more brightness down makes brightness up/down stop working. (Richard Hughes)
- Fixed #569356, build error, missing egg-idletime.c (Richard Hughes)
- Add processor wakeup support into gnome-power-statistics. This requires DeviceKit-power from git master to work properly.
- Don't rely on the gnome-screensaver idle key now we are using gnome-session
Translations:
- Updated ca: David Planella
- Updated es: Jorge González, Jorge Gonzalez
- Updated fi: Timo Jyrinki
- Updated he: Yaniv Abir <yanivabir at gmail dot com>, Yair Hershkoviz
- Updated ko: Changwoo Ryu
- Updated nb: Kjartan Maraas
- Updated ru: Nickolay V. Shmyrev
- Updated sv: Daniel Nylander
- Updated zh_CN: 甘露(Gan Lu)
Help Manual Translations:
- Updated de: Mario Blättermann
==============
Version 2.25.2
==============
- Fixed #565076, Use g_timeout_add_seconds where possible (Richard Hughes)
- Fixed #565552, gtk_status_icon_set_tooltip has been deprecated (Frederic Peters)
- Fixed #566115, Fails to build on sparc (fails to build on sparc)
Translations:
- Updated es: Jorge González, Jorge Gonzalez
- Updated nb: Kjartan Maraas
- Updated zh_CN: 甘露(Gan Lu)
==============
Version 2.25.1
==============
- Rewrite engine to support DeviceKit-power
- Rewrite statistics graphing application to support DeviceKit-power
- NOTE: you can still build g-p-m without DeviceKit-power, but functionality
is very limited, and there are no statistics or battery profiling available.
It's also not tested by me. The next release will probably have the HAL
compatability code removed completely.
- Distros that do not yet ship DeviceKit-power can ship packages from
GNOME_POWER_MANAGER_2_24_X which is still maintained.
- Fixed #462109, make distcheck fails on my laptop (Richard Hughes)
- Fixed #549844, DBUS times out after longer suspends (Richard Hughes)
- Fixed #551582, build error ('warning' undeclared) (Richard Hughes)
- Fixed #558103, Build fails with undefined symbol XF86XK_Battery (Frederic Peters)
- Fixed #558670, Make "Make defaults" actually work :-) (Vincent Untz)
- Fixed #559994, missing locale.h includes (Frederic Peters)
- Fixed #561114, Escape should close/cancel focused toplevel dialog (Richard Hughes)
- Fixed #562445, build failure; missing gpm-engine.h (Richard Hughes)
- Fixed #562836, GPM OSD does not popup on machines that support keys in HW but not in xrandr (Richard Hughes)
- Fixed #562900, gnome power manager keeps using xrandr backend after failed calls (Richard Hughes)
- Fixed #564531, build error, applets depend on libgnomeui (Richard Hughes)
Translations:
- Updated ast: Astur, Gil Forcada
- Updated bg: Alexander Shopov
- Updated ca: David Planella
- Updated cs: Pavel Sefranek, Petr Kovar
- Updated da: Kenneth Nielsen
- Updated de: Michael Kanis, Hendrik Richter
- Updated es: Jorge González, Jorge Gonzalez
- Updated et: Ivar Smolin
- Updated eu: Iñaki Larrañaga Murgoitio, Djihed Afifi
- Updated fi: Timo Jyrinki
- Updated gl: Ignacio Casal Quinteiro
- Updated he: Yair Hershkoviz, Yaniv Abir
- Updated hr: Robert Sedak, Tomislav Pavlović
- Updated hu: Gabor Kelemen
- Updated is: Djihed Afifi
- Updated it: Luca Ferretti, Milo Casagrande
- Updated ko: Changwoo Ryu
- Updated lt: Gintautas Miliauskas
- Updated lv: Djihed Afifi
- Updated mk: Djihed Afifi, Arangel Angov
- Updated nb: Kjartan Maraas
- Updated nl: Wouter Bolsterlee
- Updated pl: Tomasz Dominikowski
- Updated pt: Duarte Loreto
- Updated pt_BR: Djihed Afifi
- Updated ro: Mugurel Tudor, Alexandru Szasz
- Updated ru: Yuriy Penkin, Djihed Afifi
- Updated sr@latin: Goran Rakić, Ignacio Casal Quinteiro
- Updated sv: Daniel Nylander
- Updated uk: Djihed Afifi
- Updated vi: Nguyễn Thái Ngọc Duy, Clytie Siddall
- Updated zh_CN: Funda Wang, YangZhang
- Updated zh_TW: Hialan Liu, Djihed Afifi
Help Manual Translations:
- Updated ca: Joan Duran
- Updated fr: Robert-André Mauchin
- Updated hu: Gabor Kelemen
- Updated it: Luca Ferretti, Milo Casagrande
===============
Version 2.23.91
===============
- Fixed #547502, gnome-power-manager won't configure (Gilles Dartiguelongue)
- Fixed #547766, Crash in gpm_cell_array_update gpm-cell-array.c:273 (Richard Hughes)
- Fixed #549789, "unknown" battery type untranslated (Seán de Búrca)
- Fixed #549854, gpm-cell.c not translator friendly (Claude Paroz)
Translations:
- Updated LINGUAS, [email protected], sr@Latn: Goran Rakic
- Updated be@latin: Ihar Hrachyshka
- Updated es: Jorge González, Jorge Gonzalez
- Updated eu: Inaki Larranaga Murgoitio, Iñaki Larrañaga Murgoitio
- Updated fi: Ilkka Tuohela
- Updated fr: Robert-André Mauchin and Claude, Claude Paroz, Robert-André Mauchin and Claude Paroz
- Updated ga: Seán de Búrca
- Updated he: Yair Hershkoviz, Yaniv Abir
- Updated ja: Takeshi AIHANA
- Updated lt: Gintautas Miliauskas
- Updated nb: Kjartan Maraas
- Updated pt: Duarte Loreto
- Updated pt_BR: Fábio Nogueira, Fábio Nogueira and Leonardo Ferreira Fontenelle
- Updated sv: Daniel Nylander
- Updated th: Theppitak Karoonboonyanan
- Updated vi: Nguyễn Thái Ngọc Duy, Clytie Siddall
- Updated zh_HK: Chao-Hsiung Liao
- Updated zh_TW: Chao-Hsiung Liao, Hialan Liu
==============
Version 2.23.6
==============
- Fixed #544298, gpm 2.23.3 fails to compile (Richard Hughes)
- Fixed #546556, g-p-m unable to startup on Solaris Sparc because of missing XRandr (Simon Zheng)
- Supress low battery warning on Eee as it's reported as non-rechargeable (Matthew Garrett)
- Use polkit-simple to simplify the optional PolicyKit bits (Richard Hughes)
- Completely remove all traces of the skipping suppressed action warning (Richard Hughes)
- Don't use a libnotify window for the battery information, use a GtkDialog instead (Richard Hughes)
Translations:
- Updated ar: Khaled Hosny
- Updated cs: Pavel Šefránek, Pavel Sefranek
- Updated es: Jorge González, Jorge Gonzalez
- Updated gl: Ignacio Casal Quinteiro
- Updated he: Yaniv Abir, Yair Hershkoviz
- Updated nb: Kjartan Maraas
- Updated oc: Yannig Marchegay, Yannig Marchegay (Kokoyaya)
- Updated pt_BR: Vladimir Melo, Leonardo Ferreira Fontenelle
- Updated sl: Matej Urbančič
- Updated th: Theppitak Karoonboonyanan
Help Manual Translations:
- Updated sv: Daniel Nylander
==============
Version 2.23.3
==============
- Fixed #483144, Gconf key for battery brightness labeled incorrectly... (Richard Hughes)
- Fixed #492132, policy timeout prevents computer from suspend (Richard Hughes)
- Fixed #517914, Inconsistent colors of graphs (Richard Hughes)
- Fixed #521686, Removing gnome_program_init removes session management (Richard Hughes)
- Fixed #522078, aborts when suspend is chosen when running under GDM (Richard Hughes)
- Fixed #522236, g-p-m should set a window type hint for the brightness feedback window (Richard Hughes)
- Fixed #522336, Change Playbin state back to NULL on error and EOS : fix potential memory leak when using pulsaudio (Richard Hughes)
- Fixed #523152, GetBrightness returns a INT not a UINT (Richard Hughes)
- Fixed #524449, gnome-power-preferences gives a critical warning (Richard Hughes)
- Fixed #526178, Should check user capability "CanShutdown" before providing shutdown option in combo box (simon.zheng)
- Fixed #526349, gnome-power-bugreport.sh doesn't work on Solairs (simon.zheng)
- Fixed #534335, cpu load calculation doesn't work on Solaris (simon.zheng)
- Fixed #535271, XBACKLIGHT is very slow (Richard Hughes)
- Fixed #536956, Should remove cpufreq_show gconf key (simon.zheng)
Translations:
- Updated ru: Yuri Kozlov
- Updated fr: Claude Paroz
- Updated bg: Alexander Shopov
- Updated nn: Eskild Hustvedt
- Updated el: Kostas Papadimas
- Updated vi: Clytie Siddall
- Updated is: Andre Klapper
- Updated sv: Daniel Nylander
- Updated ar: Djihed Afifi
- Updated en_GB: Richard Hughes
- Updated th: Theppitak Karoonboonyanan
- Updated cs: Petr Kovar
- Updated et: Priit Laes
- Updated gl: Ignacio Casal Quinteiro
- Updated es: Jorge Gonzalez
==============
Version 2.23.1
==============
- Fixed #526178, Should check user capability "CanShutdown" before providing shutdown option in combo box (Simon Zheng)
- Fixed #526349, gnome-power-bugreport.sh doesn't work on Solairs (Simon Zheng)
- Fixed #522236, g-p-m should set a window type hint for the brightness feedback window (Danny Baumann)
- Fixed #522078, Don't try to generate a config_id when we have no primary batteries (Richard Hughes)
- Fixed #517914, The graph colors are used inconsistently between the various graphs (Jérôme Guelfucci)
- Fixed #524449, Fix a critical warning in gnome-power-preferences (Richard Hughes)
- Fixed #108075, Don't show some notifications under GDM (Richard Hughes)
- Fixed rh#444026, Check keys for writability before we try to change them (Richard Hughes)
- Fixed rh#443069, Be more paranoid about the rates reported from HAL (Richard Hughes)
- Fix a bunch of build warnings with glib trunk (Kjartan Maraas)
- Use Unique to make g-p-p and g-p-s single instance (Richard Hughes)
- Add a default button for GConf settings (Matthias Clasen)
- Remove all the hidden cpufreq code, as I keep being told I'm insane by Matthew (Richard Hughes)
- Use the same logic for xrandr as hal when we have a large number of brightness steps (Richard Hughes)
- Clear the brightness applet background properly so we can draw on it later (Ted Gould)
- Remove the lid sounds. Everbody hates them (Richard Hughes)
- Add new functionality allowing us to change the backlight brightness using XRANDR (Richard Hughes)
- Make the backlight do what the user expects rather than what the policy says (Richard Hughes)
Translations:
- Updated bg: Alexander Shopov
- Updated nn: Eskild Hustvedt
- Updated is: Andre Klapper
- Updated ar: Djihed Afifi
- Updated th: Theppitak Karoonboonyanan
- Updated cs: Petr Kovar
- Updated et: Priit Laes
- Updated en_GB: Richard Hughes
==============
Version 2.22.0
==============
- Fixed #514590, brightness applet is bloaty (Matthias Clasen)
- Fixed #520411, interaction between brightness applet and prefs dialog (David Zeuthen)
- Add some missing finaliser calls (Richard Hughes)
Translations:
- Updated el: Simos Xenitellis
- Updated vi: Nguyễn Thái Ngọc Duy
- Updated it: Luca Ferretti
- Updated cy: Rhys Jones
- Updated fi: Ilkka Tuohela
- Updated cs: Petr Kovar
- Updated es: Jorge Gonzalez
- Updated sr.po, sr@Latn: Danilo Šegan
- Updated tr: Baris Cicek, Turkish
- Updated lt: Gintautas Miliauskas
- Updated en_GB: Philip Withnall
- Updated fr: Stéphane Raimbault
- Updated pt_BR: Leonardo Ferreira Fontenelle
- Updated de: Hendrik Richter
- Updated da: Kenneth Nielsen
- Updated nl: Vincent van Adrighem
- Updated hu: Gabor Kelemen
- Updated ja: Takeshi AIHANA
- Updated he: Yair Hershkoviz
- Updated be@latin: Ihar Hrachyshka
- Updated ko: Changwoo Ryu
- Updated kn: Runa Bhattacharjee, kn
- Updated mk: Arangel Angov
- Updated sk: Marcel Telka
- Updated uk: Maxim Dziumanenko
===============
Version 2.21.92
===============
- Fixed #507789, GPM can't beep (Simon Zheng)
- Fixed #510068, Reduction brightness on battery doesn't work (Simon Zheng)
- Fixed #512267, Automatically put right version in to desktop.in files (Jaap Haitsma)
- Fixed #514077, Battery profiling does not work (Richard Hughes)
- Resave as plain vacuumed svg to save over 2Mb from the tarball and installed size (Nicu Buculei)
- Drop unused gnome client from gpm-main.c (Jani Monoses)
Translations:
- Updated vi: Clytie Siddall
- Updated ca: Gil Forcada
- Updated cs: Petr Kovar
- Updated as: Amitakhya Phukan
- Updated ar: Djihed Afifi
- Updated ga: Seán de Búrca
- Updated eu: Inaki Larranaga Murgoitio
- Updated gl: Ignacio Casal Quinteiro
- Updated es: Jorge Gonzalez
- Updated pt: Duarte Loreto
- Updated nb: Kjartan Maraas
- Updated lt: Gintautas Miliauskas
- Updated th: Theppitak Karoonboonyanan
- Updated pl: Wadim Dziedzic
- Updated zh_HK: Hong Kong
- Updated pt_BR: Leonardo Ferreira Fontenelle
- Updated zh_TW: Taiwan
- Updated hu: Gabor Kelemen
- Updated fi: Ilkka Tuohela
- Updated he: Yair Hershkovitz
- Updated nn: Eskild Hustvedt
- Updated oc: Yannig Marchegay
- Updated sv: Daniel Nylander
- Updated mr: Rahul Bhalerao
==============
Version 2.21.1
==============
- Fixed #413360, After loading gnome gpm starts but shows nothing in tray icon despite option (Mart Raudsepp)
- Fixed #474973, Lack of context to translate (Gabor Kelemen)
- Fixed #497298, The +/- buttons on the brightness applet sometimes get stuck. (Simon Zheng)
- Fixed #497298, Avoid float computation error (Simon Zheng)
- Fixed #497328, Incorrect documentation for --enable-checkfg (Josselin Mouette)
- Fixed #496367, Work out the size of the label text to avoid truncating numbers in other locales (Richard Hughes)
- Correct much of the documentation in many different ways (Bob Mauchin)
- Use _NEVER for sleep problems notification, so that the user can always see it (Rodrigo Moya)
- Pass make distcheck on a desktop machine without a battery (Richard Hughes)
- Fix the keyboard brightness up button. From the ubuntu patch archive (Richard Hughes)
- Use the correct DBUS return types now HAL enforces the return type (David Zeuthen)
- Rip out GpmWebcam - it's pretty crack, and I'm getting some odd bugreports
about flashing webcam lights and brightness levels changing (Richard Hughes)
Translations:
- Updated fr: merged from gnome-2-20
- Updated bg: Alexander Shopov
- Updated pt_BR: Guilherme de S. Pastore
- Updated ca: Jordi Mallach
- Updated ko: Changwoo Ryu
- Updated sv: Daniel Nylander
- Updated mk: Jovan Naumovski
- Updated ar: Djihed Afifi
- Updated pl: Artur Flinta
- Updated et: Priit Laes
- Updated nb: Kjartan Maraas
- Updated es: Jorge Gonzalez
==============
Version 2.20.0
==============
- Fixed #470481, Inhibit applet does not work after first login (Alex Jones)
Translations:
- Updated el: Nikos Charonitakis
- Updated gu: Ankit Patel
- Updated vi: Clytie Siddall
- Updated ca: Gil Forcada, Josep Puigdemont i Casamajó
- Updated it: Alessio Frusciante
- Updated ar: Djihed Afifi
- Updated eu: Inaki Larranaga Murgoitio
- Updated et: Priit Laes
- Updated es: Jorge Gonzalez