forked from mate-desktop/mate-power-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1762 lines (1476 loc) · 84.3 KB
/
ChangeLog
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
commit 4e4fac818bda769a9cdbafe2d88a78c764044b53
Merge: de6402c 0415b57
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Thu Nov 22 21:24:13 2012 -0500
Merge branch 'master' of github.com:mate-desktop/mate-power-manager
commit 0415b57493898c5defa2719d67115f8ff2392904
Merge: 433b548 af64cc9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Nov 22 13:32:35 2012 -0800
Merge pull request #38 from bhull2010/master
Auto-detect whether to build systemd support
commit af64cc9fe7244eeec543c7c22adecef3a402d02a
Author: Brent Hull <bhull2010@live.com>
Date: Thu Nov 22 16:19:14 2012 -0500
Auto-detect whether to build systemd support
configure.ac | 8 +++++---
src/gpm-manager.c | 6 ++++--
2 files changed, 9 insertions(+), 5 deletions(-)
commit de6402cb66f3eecfbb4aa92155f2cec7bc45225a
Merge: f915c84 433b548
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Thu Nov 22 14:18:05 2012 -0500
Merge branch 'master' of github.com:mate-desktop/mate-power-manager
commit 433b548ea199a66afbb5fc874bfdaa31695c1e3c
Merge: 237f70f 30eed18
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Nov 22 08:41:47 2012 -0800
Merge pull request #37 from Firstyear/systemd-inhibit
Systemd inhibit support for MPM
commit 237f70ff586bffba55aaefb2af1128d7f321cb30
Merge: 5fdd6e5 8767ffb
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Nov 22 08:41:26 2012 -0800
Merge pull request #35 from Firstyear/kbd-backlight
Adds on screen display support to keyboard backlight controls
commit f915c8482adab2076b25427517ec6166bb9209a2
Merge: fa7700a 5fdd6e5
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Wed Nov 21 14:47:55 2012 -0500
Merge branch 'master' of github.com:mate-desktop/mate-power-manager
commit 8767ffb8172c1e9ae4410226ac4015309bc03f7f
Author: William Brown <william@firstyear.id.au>
Date: Wed Nov 21 00:24:52 2012 +1030
This fixes the g_settings issue preventing auto dim of keyboard backlight
src/gpm-kbd-backlight.c | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
commit 1e231ca589272dc0a84199b03c28a1b598fc3748
Author: William Brown <william@firstyear.id.au>
Date: Tue Nov 20 21:07:25 2012 +1030
Added some debuging options
src/gpm-kbd-backlight.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
commit cc5f970075a80bd31ab0dcafe7fa6544082ace96
Author: William Brown <william@firstyear.id.au>
Date: Tue Nov 20 19:40:46 2012 +1030
Adds on screen display support to keyboard backlight controls
src/gpm-kbd-backlight.c | 148 ++++++++++++++++++++++++++++++++++++++++-------
1 file changed, 128 insertions(+), 20 deletions(-)
commit 30eed18125a03a0bede7f5e560f8f031db70dcbe
Author: William Brown <william@firstyear.id.au>
Date: Wed Nov 21 09:15:29 2012 +1030
Adds a systemdinhibit configure flag
configure.ac | 20 ++++++++++++++++++++
src/gpm-manager.c | 6 ++++++
2 files changed, 26 insertions(+)
commit c5c3b2a3d755e32a851bf7b3c7ef92a056b5bdef
Author: William Brown <william@firstyear.id.au>
Date: Wed Nov 21 09:06:22 2012 +1030
Initial working support for systemd inhibition
src/gpm-manager.c | 26 +++++++++++++++++---------
1 file changed, 17 insertions(+), 9 deletions(-)
commit bb165fa927540f40b2b2afce1b4703f6e2cffbb1
Author: William Brown <william@firstyear.id.au>
Date: Tue Nov 20 00:08:50 2012 +1030
This now uses the gvariant, and fixes some code logic issues
src/gpm-manager.c | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
commit d0eea338cc627b3083e16669a7f3e7a738410818
Author: William Brown <william@firstyear.id.au>
Date: Sun Nov 18 12:06:34 2012 +1030
Current work on systemd-inhibit support in mpm. DOES NOT WORK YET. See https://bugzilla.redhat.com/show_bug.cgi?id=876396 and https://bugzilla.redhat.com/show_bug.cgi?id=876782
src/gpm-manager.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit f55a6f37d0805fd9f8270903929cdf08fda55e39
Author: William Brown <william@firstyear.id.au>
Date: Sun Nov 18 12:06:34 2012 +1030
Current work on systemd-inhibit support in mpm. DOES NOT WORK YET. See https://bugzilla.redhat.com/show_bug.cgi?id=876396 and https://bugzilla.redhat.com/show_bug.cgi?id=876782
src/gpm-manager.c | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
commit 5fdd6e52207bbf236e3888884cdd6a85c45ab4fd
Merge: ae8cacd e8b4d0f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Tue Nov 20 01:37:34 2012 -0800
Merge pull request #36 from Firstyear/idle
Screen on dim, will not "undim"
commit fa7700abefd3599c109891a454555298561da45e
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Sun Nov 18 20:44:13 2012 -0500
fixed incorrect fsf addresses.
src/gsd-media-keys-window.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit ae8cacd5443dd6f93a5a23a5cad6e60de1b5691e
Merge: e673e8d c4c747f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Sun Nov 18 04:19:03 2012 -0800
Merge pull request #34 from Firstyear/master
Corrects an issue with deprecated glib apis
commit c4c747f87ce3fb6f41f25ed5ad7be0d75d30a5c1
Author: William Brown <william@firstyear.id.au>
Date: Sun Nov 18 16:32:32 2012 +1030
This adds checks for glib version, in regards to deprecated apis. see http://developer.gnome.org/glib/2.31/glib-Deprecated-Thread-APIs.html#g-thread-init
src/gpm-main.c | 6 ++++++
src/gpm-statistics.c | 3 +++
2 files changed, 9 insertions(+)
commit e8b4d0fc370cca038be614e3c7a72da30e0039b8
Author: William Brown <william@firstyear.id.au>
Date: Sun Nov 18 12:00:05 2012 +1030
This fixes an issue that I introduced, where when the screen would dim on idle, it would not undim.
src/gpm-idle.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit e673e8d93e0abef7759547a9131e097106920a6e
Merge: abf46d2 dbc6094
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Thu Nov 15 18:59:21 2012 -0800
Merge pull request #10 from fhucho/master
Added "nvidia_backlight" to the list of backlight interfaces.
commit abf46d226f006c5b6843ccac2010469ae838d68b
Merge: fbf40ff 1ea3233
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Wed Nov 14 07:41:30 2012 -0800
Merge pull request #25 from Firstyear/master
keyboard backlight, with basic controls.
commit 1ea3233503f84366afd4e0a76e47afa258d17d04
Author: William Brown <william@firstyear.id.au>
Date: Wed Nov 14 23:46:18 2012 +1030
Rename some components to mate friendly values
src/gpm-common.h | 2 +-
src/gpm-kbd-backlight.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
commit 0453548baedf4e060bc3785555589b551cf5b98c
Author: William Brown <william@firstyear.id.au>
Date: Wed Nov 14 23:21:58 2012 +1030
This fixes the mismatched dbus library issue
src/gpm-manager.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit fbe4f6cc621eab7520e72463434d192cf64c878d
Author: William Brown <william@firstyear.id.au>
Date: Wed Nov 14 22:37:30 2012 +1030
Fixes an issue where displays would not turn off despite the system being idle
src/gpm-idle.c | 1 +
1 file changed, 1 insertion(+)
commit 9361bbfbb5f7fda96f147310125fc709f4da2200
Author: William Brown <william@firstyear.id.au>
Date: Sun Nov 11 20:02:11 2012 +1030
Keyboard backlight patches, tested as working against 1.5.0 on F18
data/org.mate.power-manager.gschema.xml.in | 20 +
src/Makefile.am | 2 +
src/gpm-common.c | 46 ++
src/gpm-common.h | 11 +
src/gpm-kbd-backlight.c | 734 ++++++++++++++++++++++++++++
src/gpm-kbd-backlight.h | 79 +++
src/gpm-manager.c | 10 +
7 files changed, 902 insertions(+)
commit fbf40ff748a675bdba451168c30aab7abeb5afa2
Author: Nelson Marques <nmo.marques@gmail.com>
Date: Thu Nov 8 01:40:25 2012 +0000
update gpl-2.0 to latest legal text
COPYING | 41 ++++++++++++++++++++---------------------
1 file changed, 20 insertions(+), 21 deletions(-)
commit fab1d53b0a47cc4af26575284324962f7ebad769
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Nov 8 00:38:25 2012 +0100
fix urls
applets/brightness/gpm-common.h | 6 +++---
applets/inhibit/gpm-common.h | 6 +++---
policy/Makefile.am | 2 +-
3 files changed, 7 insertions(+), 7 deletions(-)
commit 4dcaeb1ce70903034ae8541a773277243dccaa8b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Nov 8 00:34:47 2012 +0100
show always "do nothing" option
src/gpm-prefs-core.c | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
commit ae9f45b112c22538465e060c61b2ed2fb1b0544c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Wed Nov 7 23:43:17 2012 +0100
bump version to 1.5.0
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 6176205aa44f2492ccfe09b35511046651350d53
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Wed Nov 7 23:43:09 2012 +0100
update AUTHORS
AUTHORS | 1 +
1 file changed, 1 insertion(+)
commit 1291601153a67b059106a578afd28eaed9f5ea7d
Merge: 773472d 107e353
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Mon Nov 5 00:35:19 2012 -0800
Merge pull request #22 from bhull2010/master
Removed unused functions and enum
commit 107e3530c49bc8e19e5697e82a98c9c346dee20f
Author: Brent Hull <bhull2010@live.com>
Date: Sun Nov 4 19:32:35 2012 -0500
Remove unused enum
src/gpm-screensaver.c | 4 ----
1 file changed, 4 deletions(-)
commit 9fed848678414a926d19f62e9feba4f49edc1bd7
Author: Brent Hull <bhull2010@live.com>
Date: Sun Nov 4 18:15:57 2012 -0500
Remove commented-out screensaver-auth-request functions
src/gpm-manager.c | 31 ---------------
src/gpm-screensaver.c | 101 -------------------------------------------------
src/gpm-screensaver.h | 4 --
3 files changed, 136 deletions(-)
commit 773472d4a41e60cf7ad8db55737b0fcd21b934ba
Merge: 7fa7c26 6e3ef00
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Sun Nov 4 02:58:20 2012 -0800
Merge pull request #21 from bhull2010/master
Remove dependency on mate-screensaver's schema
commit 6e3ef00b551ed8ac5b877f0c7c8ebbc4f7fcb3ff
Author: Brent Hull <bhull2010@live.com>
Date: Sun Nov 4 00:03:13 2012 -0400
Don't depend on mate-screensaver's gschema being installed
src/gpm-control.c | 25 ++++++++++++++++++++-----
src/gpm-screensaver.c | 18 ------------------
src/gpm-screensaver.h | 1 -
3 files changed, 20 insertions(+), 24 deletions(-)
commit 7fa7c26dce5c987539f70b323ae1ff9d40752b0b
Merge: 7c7b090 70aeb9c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Sat Nov 3 16:02:16 2012 -0700
Merge pull request #20 from bhull2010/master
Migrate screensaver setting to Gsettings and update panel requirements
commit 70aeb9c75a5eff23c16d6ce189e770dc22e8ff89
Author: Brent Hull <bhull2010@live.com>
Date: Sat Nov 3 18:22:28 2012 -0400
Update libmatepanel requirements for MATE 1.5
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit b8964a21a6822f9f09215160503377746ea36995
Author: Brent Hull <bhull2010@live.com>
Date: Sat Nov 3 00:08:46 2012 -0400
Migrate screensaver lock setting to Gsettings
configure.ac | 2 --
src/gpm-common.h | 4 ++--
src/gpm-control.c | 9 ++++-----
src/gpm-screensaver.c | 10 +++++-----
src/gpm-statistics.c | 1 -
5 files changed, 11 insertions(+), 15 deletions(-)
commit 7c7b09026bde3ffd1ce886fd545e7bfa1e59aec7
Merge: 83dc101 972be36
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Nov 1 17:33:16 2012 -0700
Merge pull request #19 from bhull2010/gsettings
Port to Gsettings
commit 972be3627b8b6368a0e8c971ade7963ea7d459de
Author: Brent Hull <bhull2010@live.com>
Date: Thu Nov 1 19:40:46 2012 -0400
Remove unnecessary schema version check and some unused constants
data/org.mate.power-manager.gschema.xml.in | 5 -----
src/gpm-common.h | 9 +--------
src/gpm-manager.c | 18 +-----------------
3 files changed, 2 insertions(+), 30 deletions(-)
commit 83dc101045267b2e793af3af4716f1cf02089ac6
Merge: 543b06f aa88be1
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Wed Oct 31 01:41:08 2012 -0700
Merge pull request #18 from bhull2010/master
Fix for two batteries appearing
commit 1e0bea49d7d1959d063c6ab74c99500067236110
Author: Brent Hull <bhull2010@live.com>
Date: Tue Oct 30 17:34:02 2012 -0400
Remove unused key from gsettings schema
data/org.mate.power-manager.gschema.xml.in | 5 -----
src/gpm-common.h | 1 -
2 files changed, 6 deletions(-)
commit 6161e23866e73161dc0943c8ff24039edf8c531e
Author: Brent Hull <bhull2010@live.com>
Date: Tue Oct 30 16:33:38 2012 -0400
Enable translations for gsettings schema
data/Makefile.am | 8 +-
data/org.mate.power-manager.gschema.xml | 359 ----------------------------
data/org.mate.power-manager.gschema.xml.in | 359 ++++++++++++++++++++++++++++
po/POTFILES.in | 2 +-
4 files changed, 366 insertions(+), 362 deletions(-)
commit 060a4507145425c02c6aa0ef810138c04d38f5a9
Author: Brent Hull <bhull2010@live.com>
Date: Tue Oct 30 15:55:35 2012 -0400
Use gsettings enums (partially from GNOME)
data/org.mate.power-manager.gschema.xml | 73 +++++++++++++++++----------
src/gpm-backlight.c | 11 ++--
src/gpm-common.c | 84 -------------------------------
src/gpm-common.h | 4 --
src/gpm-dpms.c | 47 -----------------
src/gpm-dpms.h | 2 -
src/gpm-engine.c | 10 +---
src/gpm-manager.c | 31 +++---------
src/gpm-prefs-core.c | 21 ++------
9 files changed, 64 insertions(+), 219 deletions(-)
commit e58350ab1a00d55e82f7ae97589562e10a77c485
Author: Brent Hull <bhull2010@live.com>
Date: Sat Oct 27 23:04:21 2012 -0400
Port to Gsettings based on GNOME patch by Richard Hughes
configure.ac | 24 +-
data/Makefile.am | 27 +-
data/mate-power-manager.schemas.in | 741 -------------------------------
data/org.mate.power-manager.gschema.xml | 338 ++++++++++++++
po/POTFILES.in | 2 +-
src/gpm-backlight.c | 77 ++--
src/gpm-common.h | 164 ++++---
src/gpm-control.c | 29 +-
src/gpm-engine.c | 50 +--
src/gpm-manager.c | 126 +++---
src/gpm-phone.c | 1 -
src/gpm-prefs-core.c | 263 +++--------
src/gpm-screensaver.c | 2 +-
src/gpm-statistics.c | 54 +--
src/gpm-tray-icon.c | 30 +-
15 files changed, 655 insertions(+), 1273 deletions(-)
commit aa88be1d4a4e545b4141b0065b094d49d3d3a81b
Author: Brent Hull <bhull2010@live.com>
Date: Sat Oct 27 21:17:07 2012 -0400
Get device capabilities in the preferences capplet, not the daemon (GNOME fix for bug #617529 originally by Richard Hughes)
src/Makefile.am | 8 +--
src/gpm-backlight.c | 17 -----
src/gpm-engine.c | 37 ++---------
src/gpm-manager.c | 19 +-----
src/gpm-manager.h | 3 -
src/gpm-prefs-core.c | 97 +++++++++++++----------------
src/gpm-prefs-server.c | 138 -----------------------------------------
src/gpm-prefs-server.h | 67 --------------------
src/org.mate.PowerManager.xml | 3 -
9 files changed, 50 insertions(+), 339 deletions(-)
commit 543b06f44cafd70fe708fd54a82cba198a6da73b
Merge: 40f8224 0645ff5
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Mon Oct 22 10:09:49 2012 -0700
Merge pull request #16 from bhull2010/master
Port power manager applets to dbus
commit 0645ff5a2d3f5115d411860fa32bef376f8e8d2b
Author: Brent Hull <bhull2010@live.com>
Date: Sun Oct 21 13:55:02 2012 -0400
Update configure and POTFILES for the applets port
configure.ac | 2 +-
po/POTFILES.in | 6 ++----
po/POTFILES.skip | 4 ++--
3 files changed, 5 insertions(+), 7 deletions(-)
commit d5d706b9945e2b625de64136328eb0fced479c27
Author: Brent Hull <bhull2010@live.com>
Date: Sun Oct 21 13:54:03 2012 -0400
Port inhibit applet to dbus based on gnome patch by carlosgc
applets/inhibit/MATE_InhibitApplet.server.in.in | 36 -----------
applets/inhibit/MATE_InhibitApplet.xml | 8 ---
applets/inhibit/Makefile.am | 31 ++++++---
applets/inhibit/inhibit-applet-menu.xml | 2 +
applets/inhibit/inhibit-applet.c | 67 ++++++++++++--------
.../org.mate.InhibitApplet.mate-panel-applet.in.in | 16 +++++
...te.panel.applet.InhibitAppletFactory.service.in | 3 +
7 files changed, 83 insertions(+), 80 deletions(-)
commit 907ea326ca56c3cb89bb5dbb96bcba780538c953
Author: Brent Hull <bhull2010@live.com>
Date: Sun Oct 21 13:53:11 2012 -0400
Port brightness applet to dbus based on gnome patch by carlosgc
.../brightness/MATE_BrightnessApplet.server.in.in | 36 -----------
applets/brightness/MATE_BrightnessApplet.xml | 8 ---
applets/brightness/Makefile.am | 32 +++++++---
applets/brightness/brightness-applet-menu.xml | 2 +
applets/brightness/brightness-applet.c | 67 ++++++++++++--------
...g.mate.BrightnessApplet.mate-panel-applet.in.in | 16 +++++
...panel.applet.BrightnessAppletFactory.service.in | 3 +
7 files changed, 84 insertions(+), 80 deletions(-)
commit 40f8224e3871eb98bce2df2c3909a810f5e0b959
Merge: 4fe93e9 35b79d7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Tue Oct 2 07:37:29 2012 -0700
Merge pull request #13 from NiceandGently/master
fix desktop files
commit 35b79d7b25d77b888a0df798be3e7488979a16a0
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date: Tue Oct 2 15:13:11 2012 +0300
Update data/mate-power-statistics.desktop.in.in
remove OnlyShowIn=XFCE and Catgories=MATE
data/mate-power-statistics.desktop.in.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 179d1b6a4f8938051c6189fbcb9694992f0d1103
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date: Tue Oct 2 15:10:34 2012 +0300
Update data/mate-power-preferences.desktop.in.in
remove OnlyShowIn=XFCE
data/mate-power-preferences.desktop.in.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 04160274ab250ce971a077c26f031a009fed77b1
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date: Tue Oct 2 15:09:12 2012 +0300
Update data/mate-power-manager.desktop.in.in
remove OnlyShowIn=XFCE
data/mate-power-manager.desktop.in.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 4fe93e91235ea1ff4bf7e80c019575df58d1eeeb
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Thu Jul 12 14:47:12 2012 -0400
Preparing for 1.4 release.
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit e192b7663d591fd9a0a8fb846adbf0489020916a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Jul 12 13:04:13 2012 +0200
sync translations with transifex
po/ar.po | 1130 +++++++----------------------------------------
po/gnome-copyrights.txt | 998 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 1152 insertions(+), 976 deletions(-)
commit dbc609478699bc792611a1ab982c078c64adb561
Author: fhucho <fhucho@gmail.com>
Date: Sat Jul 7 12:26:54 2012 +0300
Added "nvidia_backlight" to the list of backlight interfaces. Setting brightness with hotkeys should now work on notebooks with the Nvidia binary driver (tested on MacBook Pro 7,1).
src/gpm-backlight-helper.c | 1 +
1 file changed, 1 insertion(+)
commit aa14fa93ea3ec648987b92e6c5cd804c4a2889c9
Merge: ad0d27b 0acdf5c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Sun Jun 24 09:40:59 2012 -0700
Merge pull request #9 from MDykstra/master
idea from: http://cgit.freedesktop.org/gstreamer/gst-plugins-base/commit/?id=0c2f2a64c5a3cde94326950c6b64e04120fe24d7
commit 0acdf5c1cf7b490d81f3d2dfe7850c763408fda1
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date: Sun Jun 24 18:32:36 2012 +0200
deprecated pango_cairo_font_map_create to pango_font_map_create
src/gpm-graph-widget.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit ad0d27b6e59f008f0411d9c036fd45fc347c80fd
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Jun 14 22:15:06 2012 +0200
remove unused wnck refs
README | 3 +--
configure.ac | 2 --
2 files changed, 1 insertion(+), 4 deletions(-)
commit 1e437dffa450d1a62098374a67d1148b8e673d13
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Jun 14 20:12:48 2012 +0200
remove distro/fedora folder
distro/fedora/mate-power-manager.spec | 156 ---------------------------------
1 file changed, 156 deletions(-)
commit 6dd713def558f0e4ca86a4ddd9cf1d300634e3d0
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Fri Apr 6 17:12:40 2012 -0400
removed ubuntu folder from distro.
distro/ubuntu/build | 34 ----------------------------------
distro/ubuntu/postinst | 8 --------
distro/ubuntu/postrm | 8 --------
distro/ubuntu/preinst | 6 ------
distro/ubuntu/prerm | 9 ---------
5 files changed, 65 deletions(-)
commit 8a9759af11763809500ad1ec4a2346de5736b0cd
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Wed Mar 21 15:06:59 2012 +0100
fix combobox deprecation
src/gpm-statistics.c | 66 ++++++++++++++++++++++----------------------------
1 file changed, 29 insertions(+), 37 deletions(-)
commit 971cbd2be698bdd536efa04a8dfaa409ca4eb242
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Wed Mar 21 14:01:25 2012 +0100
add deprecated .ui to data folder
data/Makefile.am | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit d86ae86e6cd5a87547434b416b79fc677d9b3ae9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Tue Mar 20 17:40:58 2012 +0100
fix gpm-prefs, need to fix gpm-statistics
configure.ac | 2 +-
data/gpm-prefs.ui | 12 +-
data/gpm-statistics-deprecated.ui | 505 +++++++++++++++++++++++++++++++++++++
data/gpm-statistics-fix.ui | 505 -------------------------------------
data/gpm-statistics.ui | 6 +-
po/POTFILES.in | 2 +
src/gpm-prefs-core.c | 28 +-
src/gpm-statistics.c | 33 ++-
8 files changed, 552 insertions(+), 541 deletions(-)
commit 352827e8a19139a4bb9ff5cfde3fa86841260d65
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Tue Mar 20 11:16:50 2012 +0100
update Turkish translation
po/tr.po | 2045 +++++++++++++++++++++++++++++++-------------------------------
1 file changed, 1008 insertions(+), 1037 deletions(-)
commit e23ae76053f8c1f7cedd4c2879e23c2da91b83cc
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Sat Mar 17 19:28:51 2012 -0400
Temporary hack to fix GtkComboBoxText issue.
data/gpm-statistics-fix.ui | 505 ++++++++++++++++++++++++++++++++++++++++++++
src/gpm-statistics.c | 7 +-
2 files changed, 511 insertions(+), 1 deletion(-)
commit ccfcf2483ffb52d0af9caaf52db4be44ec6ac160
Merge: 285e040 3178d77
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Sat Mar 17 10:23:09 2012 -0700
Merge pull request #6 from benpicco/master
sync with upstream
commit 3178d77b55f106694ad9aa1e27f437ac1cca862b
Author: Antoine Jacoutot <ajacoutot@openbsd.org>
Date: Tue May 24 11:15:08 2011 +0000
Don't try to close a non-opened fd
On OpenBSD we do not use /proc. As a result, gnome-power-manager segfaults on
startup due to a reverse logic in the code.
Signed-off-by: Richard Hughes <richard@hughsie.com>
src/gpm-load.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 3b3bddfeea90ce4d33aa137d6b64b066e81324f3
Author: Pedro Martinez-Julia <pedromj@um.es>
Date: Mon Mar 7 22:31:40 2011 +0000
Fixed #644143, how to convert from percentage to discrete and vice-versa.
Signed-off-by: Richard Hughes <richard@hughsie.com>
src/egg-discrete.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 285e040fd7ba4bedc25054790b4de9eb0fcb6410
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Wed Mar 14 15:00:57 2012 +0100
update for 1.2
AUTHORS | 8 ++++++--
MAINTAINERS | 3 ---
README | 2 ++
autogen.sh | 4 ++--
configure.ac | 2 +-
5 files changed, 11 insertions(+), 8 deletions(-)
commit 252ecc3b07c71bebb2d442ef1fd518a25998227c
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Tue Jan 10 14:30:08 2012 -0500
Changed mate.gr.jp to gnome.gr.jp as requested in issue #86
po/ja.po | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit 9ac1e51c8da7647f6f88dbaed9712efcdf1e07a3
Author: Perberos <perberos@gmail.com>
Date: Sat Dec 31 14:41:41 2011 -0300
agregando hotfix para libunique 1.0 y flags para construir usando GTK3
configure.ac | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 57 insertions(+), 5 deletions(-)
commit b9bcb2bf11168fcc11481999db16b40d67aa41db
Author: Perberos <perberos@gmail.com>
Date: Sat Dec 31 14:40:44 2011 -0300
removiendo archivos autogenerados
compile | 143 -
ltmain.sh | 8406 --------------------------------------------------
m4/intltool.m4 | 216 --
m4/libtool.m4 | 7360 -------------------------------------------
m4/ltoptions.m4 | 368 ---
m4/ltversion.m4 | 23 -
m4/lt~obsolete.m4 | 92 -
m4/mate-doc-utils.m4 | 53 -
8 files changed, 16661 deletions(-)
commit 95e95e4bf5c45ba83899eb3f04dc766120baff26
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Fri Dec 30 16:40:53 2011 +0100
reverted ssam patch. we need to found a solution to build in fedora
configure.ac | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
commit 6f2018c7a34c7d87ef6c055bcf07ec6e3b9c0b25
Merge: cfa7ef2 558e32c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Fri Dec 30 06:22:42 2011 -0800
Merge pull request #4 from samtygier/master
if glib > 2.30, then need to use unique-3.0, to avoid deprecated G_CONST_RETURN
need testing on debian/ubuntu and arch
commit 558e32cb739aa14ab0eaee2b94fb3d455fc376ab
Author: Sam Tygier <samtygier@yahoo.co.uk>
Date: Thu Dec 29 17:39:08 2011 +0000
if glib > 2.30, then need to use unique-3.0, to avoid deprecated G_CONST_RETURN
configure.ac | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
commit cfa7ef22687d8b4c45f3d7f4921e7eee14d7d0c1
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Dec 29 16:49:46 2011 +0100
Fix double / in url
README | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit cd7f29736b7e48754b5854afa1ca11cfe2978fe0
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Dec 29 16:49:18 2011 +0100
Fix README for MATE
README | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit 30cc6ca0c463d9e2233947f3231399f2d9f64667
Merge: 67bb8c1 7e7ad48
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Thu Dec 29 07:46:50 2011 -0800
Merge pull request #3 from samtygier/master
this finishes off the gtk 2.24 work started by szesch
commit 7e7ad48eeccbee3e899f662ac8bb2fa097638efa
Author: Sam Tygier <samtygier@yahoo.co.uk>
Date: Thu Dec 29 15:24:52 2011 +0000
more gtk_combo_box to gtk_combo_box_text migration for gtk 2.24
src/gpm-statistics.c | 66 ++++++++++++++++++++++++++++++++++++++------------
1 file changed, 50 insertions(+), 16 deletions(-)
commit 89973129ca9fae822573242a9815f1f65ac0ded9
Author: Sam Tygier <samtygier@yahoo.co.uk>
Date: Thu Dec 29 15:07:48 2011 +0000
fix missing switch of GTK_COMBO_BOX to GTK_COMBO_BOX_TEXT
src/gpm-prefs-core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit fcb6eb4aed20575c12818e796dfd3506045373ce
Author: Sam Tygier <samtygier@yahoo.co.uk>
Date: Thu Dec 29 15:02:44 2011 +0000
fix missing semicolons, introduced in 3893856a1e22cb62a9d36eca5ab96284859d0d19
src/gpm-prefs-core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit f895ab2ee8f0e838d01a51544d7ec06693349a06
Author: Sam Tygier <samtygier@yahoo.co.uk>
Date: Thu Dec 29 13:58:45 2011 +0000
gtk_check_version should be GTK_CHECK_VERSION, lowercase version is C function, not a preprocessor macro
src/gpm-prefs-core.c | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
commit 67bb8c1d1446c4056fed6832ecfde5f74660ce4f
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Mon Dec 26 19:33:53 2011 -0500
Fixed gtk_combo_box_append_text deprecation
data/gpm-prefs-deprecated.ui | 1134 ++++++++++++++++++++++++++++++++++++++++++
data/gpm-prefs.ui | 14 +-
src/gpm-prefs-core.c | 76 ++-
3 files changed, 1202 insertions(+), 22 deletions(-)
commit d9b15ee1bfcb82cd62a1a23be6d159f9cae662a0
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Sat Dec 24 16:58:13 2011 -0500
Spacing adventures
src/gpm-prefs-core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit afa89dd320a5ebd12185a57c6a5504732110ec41
Merge: 7e05ad6 a5458eb
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Sat Dec 24 16:55:24 2011 -0500
Merge branch 'master' of https://github.com/mate-desktop/mate-power-manager
commit 7e05ad6ca7077aed029092a4599795fee80bddab
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Sat Dec 24 16:54:49 2011 -0500
lol spacing
src/gpm-prefs-core.c | 120 +++++++++++++++++++++++++-------------------------
1 file changed, 60 insertions(+), 60 deletions(-)
commit a5458eb1570cb8745cd32ec123e2015c6b583254
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Sat Dec 24 16:50:49 2011 -0500
Spacing issues
src/gpm-prefs-core.c | 120 +++++++++++++++++++++++++-------------------------
1 file changed, 60 insertions(+), 60 deletions(-)
commit 3893856a1e22cb62a9d36eca5ab96284859d0d19
Author: Steve Zesch <stevezesch2@gmail.com>
Date: Sat Dec 24 16:45:32 2011 -0500
Fixed gtk_widget_hide_all deprecation
src/gpm-prefs-core.c | 41 +++++++++++++++++++++++++++++++++++------
1 file changed, 35 insertions(+), 6 deletions(-)
commit c3d4f773a0ecc3b824bfcd2d2d21470ca8a7b391
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Tue Dec 13 23:52:31 2011 +0100
updated version to 1.1.0
AUTHORS | 2 ++
configure.ac | 10 +++++-----
distro/archlinux/PKGBUILD | 2 +-
distro/fedora/mate-power-manager.spec | 2 +-
distro/ubuntu/build | 2 +-
5 files changed, 10 insertions(+), 8 deletions(-)
commit 419056bf41f38891c3bb5384293868b479478828
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Tue Dec 13 23:50:42 2011 +0100
added autogen.sh
autogen.sh | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
commit cfb5bafb134572090aba2b5064a9b27c5c784fc7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date: Tue Dec 13 23:50:29 2011 +0100
remove autogenerated files
INSTALL | 237 -
Makefile.in | 842 --
aclocal.m4 | 1930 ----
applets/Makefile.in | 626 --
applets/brightness/Makefile.in | 717 --
applets/inhibit/Makefile.in | 717 --
config.guess | 1561 ---
config.h.in | 110 -
config.sub | 1686 ----
configure |16667 -------------------------------
data/Makefile.in | 834 --
data/icons/16x16/Makefile.in | 626 --
data/icons/16x16/actions/Makefile.in | 484 -
data/icons/16x16/apps/Makefile.in | 486 -
data/icons/16x16/status/Makefile.in | 537 -
data/icons/22x22/Makefile.in | 626 --
data/icons/22x22/actions/Makefile.in | 484 -
data/icons/22x22/apps/Makefile.in | 486 -
data/icons/22x22/status/Makefile.in | 537 -
data/icons/24x24/Makefile.in | 626 --
data/icons/24x24/actions/Makefile.in | 484 -
data/icons/24x24/apps/Makefile.in | 486 -
data/icons/24x24/status/Makefile.in | 537 -
data/icons/32x32/Makefile.in | 626 --
data/icons/32x32/actions/Makefile.in | 484 -
data/icons/32x32/apps/Makefile.in | 486 -
data/icons/32x32/status/Makefile.in | 537 -
data/icons/48x48/Makefile.in | 626 --
data/icons/48x48/actions/Makefile.in | 484 -
data/icons/48x48/apps/Makefile.in | 486 -
data/icons/48x48/status/Makefile.in | 538 -
data/icons/Makefile.in | 641 --
data/icons/scalable/Makefile.in | 626 --
data/icons/scalable/actions/Makefile.in | 484 -
data/icons/scalable/apps/Makefile.in | 486 -
data/icons/scalable/status/Makefile.in | 529 -
depcomp | 630 --
docs/Makefile.in | 430 -
help/Makefile.in | 946 --
install-sh | 520 -
man/Makefile.in | 529 -
mate-doc-utils.make | 578 --
mkinstalldirs | 162 -
omf.make | 61 -
po/Makefile.in.in | 217 -
policy/Makefile.in | 490 -
src/Makefile.in | 2033 ----
tools/Makefile.in | 490 -
xmldocs.make | 101 -
49 files changed, 46546 deletions(-)