-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
21244 lines (13239 loc) · 625 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 19005cac60724fcc3324468c186b0b804d145d6d
Author: 玉堂白鹤 <yjwork@qq.com>
Date: Mon Dec 18 12:31:54 2017 +0100
I18n: Update translation zh_CN (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f390e204b7dcaef47607ee10df3ce15b901c1ecb
Author: abuyop <abuyop@gmail.com>
Date: Wed Dec 13 18:32:01 2017 +0100
I18n: Update translation ms (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 08215d53c378e23543fa75da85a6521324ca907e
Author: Nuno Miguel <nunomgue@gmail.com>
Date: Tue Dec 12 00:31:54 2017 +0100
I18n: Update translation pt (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b8970b0483e6c39b4ec0bb665e4302186b189c56
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date: Mon Dec 4 12:31:52 2017 +0100
I18n: Update translation th (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit fc67b390052cfedb0ccecbeecbad05ccfa3f7c01
Author: Anonymous <noreply@xfce.org>
Date: Tue Nov 28 00:32:02 2017 +0100
I18n: Update translation da (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f911ceb07c5f78fe72887f5438999edb2d7f6d09
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Nov 26 23:55:04 2017 +0100
Fix handling of dialog responses for suspend and hibernate (Bug #13405)
commit 86b0d168955ee7b6aecde5b38c25f9ca56302630
Author: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>
Date: Sun Nov 26 12:31:11 2017 +0100
I18n: Update translation ja (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d60bb615b9b00dc4b20673795b4ee75fffebaf6f
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date: Fri Nov 24 06:30:57 2017 +0100
I18n: Update translation ja (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 27196e769d73966b1ce9ddedb0124231c46a8f9e
Author: Yogesh K S <yogesh@karnatakaeducation.org.in>
Date: Fri Nov 24 00:31:00 2017 +0100
I18n: Update translation kn (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 887102604f6596cfce07631d3de701f798205b16
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Thu Nov 23 00:33:38 2017 +0100
panel-plugin: Hide label by default on desktop systems
The label will only be hidden if the display device, i.e. the one
showing up in the panel is the desktop itself.
commit e34ace3339321b78c8d4f96668e976023a307657
Author: Rizma Banu <Rizmarijju@gmail.com>
Date: Thu Nov 23 12:31:01 2017 +0100
I18n: Add new translation kn (95%).
197 translated messages, 10 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 8d8fce2f9de83c3b576beaf689f9e9ccc4746a54
Author: Silvère Latchurié <slatchurie@gmail.com>
Date: Wed Nov 22 18:30:58 2017 +0100
I18n: Update translation fr (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit fd6e854b7a1a92db1c87110d0d7d7883c8ef16ef
Author: Arve Eriksson <031299870@telia.com>
Date: Wed Nov 22 00:31:17 2017 +0100
I18n: Update translation sv (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3cc3f17e7aa803d3bee5eb1f0b0f264c844f8e4b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Nov 19 23:25:38 2017 +0100
panel-plugin: Drop deprecated CSS styles
commit d58b735197121bd27b3b016148f56c89ee862ec3
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Nov 19 23:17:55 2017 +0100
panel-plugin: Block panel autohide if the menu is open
commit 560a960e663e43f319e703fb9c8e394829066a42
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Nov 19 22:01:32 2017 +0100
panel-plugin: Set ac-adapter icon for desktop systems (Bug #13959)
Unfortunately UPower does not differentiate between desktop and laptop
systems so we decide that it's a desktop if it:
* is not a UPS
* does not have a battery
* does not have a lid
In this case we show the "ac-adapter" icon for the systray and the
"ac-adapter-symbolic" icon for the Xfce Panel Plugin.
Before the "battery-missing" icon was shown, which is what UPower
reports for the display device.
commit 8140857a588b57f7f51ed8069e1c5a0328750d84
Author: Anonymous <noreply@xfce.org>
Date: Fri Nov 17 18:32:43 2017 +0100
I18n: Update translation da (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d15cd9cfb73d24bd01059cd417d381580a3291ad
Author: Charles Monzat <superboa@hotmail.fr>
Date: Thu Nov 16 00:30:59 2017 +0100
I18n: Update translation fr (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 72bbf8908d1ce6a900a49be2382785e294e2620a
Author: Anonymous <noreply@xfce.org>
Date: Wed Nov 15 18:31:16 2017 +0100
I18n: Update translation et (65%).
135 translated messages, 72 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 082d0794601510645907b710199894d82adf8bf3
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date: Tue Nov 14 18:33:13 2017 +0100
I18n: Update translation ko (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 73cfa5328a18de5227b3bfef43c348947b1864f6
Author: Anonymous <noreply@xfce.org>
Date: Tue Nov 14 12:31:47 2017 +0100
I18n: Update translation et (65%).
135 translated messages, 72 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 780ddcfb8f94271b8b07d25e5f7400fc545118f3
Author: Allan Nordhøy <epost@anotheragency.no>
Date: Tue Nov 14 06:31:13 2017 +0100
I18n: Update translation nb (98%).
203 translated messages, 4 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d951b87283e5e590886b781747b124fb1b3a8d73
Author: Anonymous <noreply@xfce.org>
Date: Tue Nov 14 00:30:57 2017 +0100
I18n: Update translation et (64%).
134 translated messages, 73 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 48715c7fadbd47df6859b2db04d482dcef3d3464
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Thu Nov 9 23:57:33 2017 +0100
Fix compilation warning about gtk_menu_popup
commit 17ac6a10f741017d1c853a884ee656a964909aa2
Author: Romain B <skunnyk@alteroot.org>
Date: Wed Nov 8 23:31:19 2017 +0100
Fix build on FreeBSD and DragonFlyBSD (Bug #13984)
- Fix the DPMS detection by adding correct lib/cflags on Xext AC_CHECK_LIB, so -lXext is correctly added on link time (taken from xfwm4)
- Also uses XDT_CHECK_LIBX11_REQUIRE to detect X11
commit 33a16c15e6eb4ae3eb8fa554686b4c7fb1540c32
Author: 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>
Date: Thu Nov 9 12:31:48 2017 +0100
I18n: Update translation ko (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 446e9a96b26f37aae8d6ecb07e895793d1e67102
Author: Tobias Bannert <tobannert@gmail.com>
Date: Wed Nov 8 00:31:08 2017 +0100
I18n: Update translation de (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c66ddd64ca998ca1659c16d8b7a69ceb317bba97
Author: Vinzenz Vietzke <vinz@vinzv.de>
Date: Mon Nov 6 00:31:51 2017 +0100
I18n: Update translation de (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6bae7a2a70e5293b033892e4fa2da792642e5a45
Author: Anonymous <noreply@xfce.org>
Date: Sat Nov 4 00:31:36 2017 +0100
I18n: Update translation da (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7b8e203586bbfe0d5eb7e8e53fbbd6e8b60ad972
Author: Påvel Nicklasson <pavel2@frimix.se>
Date: Fri Nov 3 18:31:53 2017 +0100
I18n: Update translation sv (95%).
197 translated messages, 10 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f5e65fbf166c8436f34a7c6f06e1fb7f4dd7b52d
Author: Elishai Eliyahu <e1907@mm.st>
Date: Fri Nov 3 12:31:10 2017 +0100
I18n: Update translation he (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 791ba4b2400b3033dfe084d6a58de9ca48a52142
Author: Necdet Yücel <necdetyucel@gmail.com>
Date: Thu Nov 2 18:31:15 2017 +0100
I18n: Update translation tr (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 55d605bf69c5914acb339d09fdf2e7b4444fa247
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date: Wed Nov 1 18:31:49 2017 +0100
I18n: Update translation uk (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4463ff3b92c1efb05677e8db368ce377199aa432
Author: Anonymous <noreply@xfce.org>
Date: Wed Nov 1 12:31:01 2017 +0100
I18n: Update translation da (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7d1e6ede682fcb22f8274f20d4827bc86c2239b2
Author: Anonymous <noreply@xfce.org>
Date: Wed Nov 1 06:31:11 2017 +0100
I18n: Update translation da (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5063eeec8ef9a8158d178e327bf59bde11b35fc4
Author: Michal Várady <miko.vaji@gmail.com>
Date: Wed Nov 1 00:31:22 2017 +0100
I18n: Update translation cs (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 05916a78ba27d190ad1f1b253a35fae7f9416e45
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date: Tue Oct 31 18:31:01 2017 +0100
I18n: Update translation kk (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit fc03bb1d61d4459520cc03a6b63c1a022961eb21
Author: Michal Várady <miko.vaji@gmail.com>
Date: Tue Oct 31 18:31:01 2017 +0100
I18n: Update translation cs (97%).
201 translated messages, 6 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a9bd2bcd6c0eda7075c2dfc33c7ab4b76ee37bff
Author: Anonymous <noreply@xfce.org>
Date: Tue Oct 31 12:31:01 2017 +0100
I18n: Update translation lt (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit da3fe9b4d99fe1e8e591a7a4311626778cda1222
Author: Charles Monzat <superboa@hotmail.fr>
Date: Tue Oct 31 12:31:01 2017 +0100
I18n: Update translation fr (99%).
205 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d585815b542762411fe6065dfc9a53a79d526458
Author: Daniel Kubat <dan.kubat@gmail.com>
Date: Tue Oct 31 06:31:00 2017 +0100
I18n: Update translation cs (96%).
200 translated messages, 7 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 8609017b85d584831695f19a313c6bd26117a17a
Author: Charles Monzat <superboa@hotmail.fr>
Date: Tue Oct 31 00:31:52 2017 +0100
I18n: Update translation fr (99%).
205 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 54b9084364b87c70e67e0bb92742d2500f2cea0a
Author: Μιχάλης <mikem132@protonmail.com>
Date: Tue Oct 31 00:31:52 2017 +0100
I18n: Update translation el (97%).
201 translated messages, 6 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 899b75206250a46d04745f2a15b600af42702195
Author: Anonymous <noreply@xfce.org>
Date: Tue Oct 31 00:31:52 2017 +0100
I18n: Update translation da (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c649323dbd80f39b196ee748bc640037dc4837e8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Oct 31 00:28:35 2017 +0100
Fix xfpm startup dialog ignoring response (Bug #13700)
Previously xfpm would be launched in any case, even if the
user chose "no" in the dialog.
commit 32b37815dda2ad108f263176837ef628070ea2e3
Author: Hsiu-Ming Chang <cges30901@gmail.com>
Date: Mon Oct 30 18:32:35 2017 +0100
I18n: Update translation zh_TW (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 20b8fa5a13b16b01fc63e1a43eb596cad8caf08c
Author: Igor <f2404@yandex.ru>
Date: Mon Oct 30 18:32:35 2017 +0100
I18n: Update translation ru (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b8989aed4376dfb306d7adcb84d86fd38b801576
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Mon Oct 30 18:32:35 2017 +0100
I18n: Update translation nl (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a766acfaf23520bec4dd77f13181d59511e67261
Author: Edin Veskovic <edin.lockedin@gmail.com>
Date: Mon Oct 30 18:32:35 2017 +0100
I18n: Update translation hr (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e1094d5ad7daae8b140878e9d8808ada07dd7f2a
Author: Sergio García <oigres200@gmail.com>
Date: Mon Oct 30 18:32:34 2017 +0100
I18n: Update translation es (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit abce06c5a4cbc826f59dc70ab24b5d61f0b1461d
Author: Dušan Kazik <prescott66@gmail.com>
Date: Mon Oct 30 12:31:39 2017 +0100
I18n: Update translation sk (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit cbe7381e759a41a6980e33759dc1f4281608e2ff
Author: Anonymous <noreply@xfce.org>
Date: Mon Oct 30 12:31:39 2017 +0100
I18n: Update translation pl (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f933879734f856048da8effb79701b224873a3a0
Author: Charles Monzat <superboa@hotmail.fr>
Date: Mon Oct 30 12:31:39 2017 +0100
I18n: Update translation fr (98%).
204 translated messages, 3 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 635e98ee9c7582caebd26d23c61ea081cda9960a
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date: Mon Oct 30 12:31:39 2017 +0100
I18n: Update translation bg (100%).
207 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 55a47aa5ab25269d73dc8a20fa701fd216688ea0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Mon Oct 30 00:37:09 2017 +0100
Replace deprecated gdk_screen_get_number
with gdk_x11_screen_get_screen_number. Also lots of
trailing whitespace got removed.
commit 2d321188852c385c67bfb637163323a2278be70d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Mon Oct 30 00:32:50 2017 +0100
Finish migration from expose to draw signal
commit fd35eb009562c81e6bb21c914ff58d9e8e9f9182
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Mon Oct 30 00:05:53 2017 +0100
Improve .gitignore
commit 469cc1e9aaf7cd3f74e57db578b63036d4e9ea8c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 23:32:26 2017 +0100
panel-plugin: Handle out-of-bounds values of show-panel-label in config dialog
commit e319a4932617fed22d8ddb27fe4a917f973f2e58
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 23:28:12 2017 +0100
panel-plugin: Add properties dialog (Bug #13270)
So far the only option we have there is the formerly
hidden option show-panel-label.
commit d57fa9b2142a5989f1c78b8bee9022c895ebb9e0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 23:19:44 2017 +0100
Harmonize capitalisation of hours, minutes and seconds
commit 1a878a57ebe95ca65387260c76b6989db4e6e2d5
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 21:01:24 2017 +0100
Make tooltip more concise (Bug #12342)
commit a3dadb8e0463945896ec46991ef2bcd23d9929f1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 20:59:26 2017 +0100
Drop period at end of all tooltip texts (Bug #12342)
commit 0c2312e317837894356892916d498849d28ced52
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 13:27:20 2017 +0100
Fix scale description and values for light-locker (Bug #13303)
Also make the capitalisation of "minutes" and "seconds" consistent.
commit 858883bef11dddb134ffee3d04b560236c8ce60e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 12:45:08 2017 +0100
Fix type for kb/display-backlight notifications
commit b7f948a69e3b5406b2fd419041384422e0b9d035
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 11:39:21 2017 +0100
Continue with notification cleanup
commit b1195c1b54baa9725a91966281ccb65adb08555c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Oct 29 11:03:24 2017 +0100
Begin cleanup of notification code
Also use symbolic icons where possible/appropriate.
commit 4d6f53105b2048fbe5bef3f9ea159c5304d9665a
Author: Christian Hesse <mail@eworm.de>
Date: Thu Sep 15 16:44:14 2016 +0200
panel-plugin: Hide label in unknown state (Bug #12851)
DEVICE_STATE_UKNOWN means that there is no battery available.
Signed-off-by: Christian Hesse <mail@eworm.de>
commit 68968b5270671701a68602e3b4be74b995edc661
Author: Viktor Odintsev <ninetls@xfce.org>
Date: Fri Sep 15 10:34:57 2017 +0300
Set the transient hint for notifications
commit 1e9e5cb845820aa703155917fa1b776948aae045
Author: Viktor Odintsev <ninetls@xfce.org>
Date: Fri Sep 15 06:48:03 2017 +0300
Add missing common dialog padding
commit 0472ee774e5f0a700abbcdf87d09c22b40b69e13
Author: Viktor Odintsev <ninetls@xfce.org>
Date: Fri Sep 15 06:32:29 2017 +0300
Fix menu leak, attach menu to button (Bug #13466)
commit f1a0eebbc3e61e80204d848973de213295344752
Author: Viktor Odintsev <ninetls@xfce.org>
Date: Fri Sep 15 06:07:27 2017 +0300
Fix misc compilation warnings
commit b667211b6acc2de182d1275afc822009c22b0855
Author: Viktor Odintsev <ninetls@xfce.org>
Date: Fri Sep 15 06:06:03 2017 +0300
Use libxfce4panel function to obtain desired icon size
commit 42c6fbafc820cb4147a9dba6941baadbe00d0faf
Author: Ivica Kolić <ikoli@yahoo.com>
Date: Fri Oct 27 00:31:06 2017 +0200
I18n: Update translation hr (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2c691fe9b08ee32c7ea88e473a5d26a0799ba570
Author: Tobias Bannert <tobannert@gmail.com>
Date: Thu Oct 5 18:31:26 2017 +0200
I18n: Update translation de (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 32734bb8bd19ee58a5c5a031451a6672c19c9a4a
Author: Anonymous <noreply@xfce.org>
Date: Mon Oct 2 00:31:02 2017 +0200
I18n: Update translation lt (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ab31b44c95321190bcab6f25b1e0a44dbd2340dd
Author: Anonymous <noreply@xfce.org>
Date: Sat Sep 30 18:32:25 2017 +0200
I18n: Update translation da (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 495cbfcc05045f6cc8b860af3c8b94b68c4ac798
Author: Anonymous <noreply@xfce.org>
Date: Sat Sep 30 00:31:58 2017 +0200
I18n: Update translation da (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 214d83689b11f2b2fc70cc9a48dcfc729c7496ae
Author: Xfce Bot <transifex@xfce.org>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation ug (54%).
111 translated messages, 91 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6033330afaa8d334660aced984d9947c3c551c03
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation th (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit eeefed618923c79764d84db9575f8073da05f501
Author: Arve Eriksson <031299870@telia.com>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation sv (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c96183b3c8327da183920212c8bb4fb07c8650be
Author: Саша Петровић <salepetronije@gmail.com>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation sr (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 8f3f33e3ccb5ec9d9c3b7995258e1904a3fc42e2
Author: Anonymous <noreply@xfce.org>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation sl (97%).
196 translated messages, 6 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f90d3d4482413d1f0b8d35d2ce51e2b718cdcbe1
Author: Anonymous <noreply@xfce.org>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation ru (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 32810417746e82a94754604ffc49068e95c86123
Author: Nuno Miguel <nunomgue@gmail.com>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation pt (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 0ca114a562d63094263c09bc2216524b78b7e3b4
Author: Michael Martins <michaelfm21@gmail.com>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation pt_BR (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3374fc54b63bd25f5a4f2cdac432ce41fa64c594
Author: m4sk1n <m4sk1n@vivaldi.net>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation pl (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1fb592f944cac113e570f7e5c7f8f9446e7b4cd6
Author: Cédric Valmary <cvalmary@yahoo.fr>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation oc (79%).
160 translated messages, 42 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ae4c76c26443efa526b661f9691d19fe30ebb264
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation nl (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6fc901fae0ca0d1d8c144c72ad7010e3430c3078
Author: Sungjin Kang <potopro@gmail.com>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation ko (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9546ee63a87e76b8f4dbaf496cd0487e81e0c072
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation kk (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a99e3d4117febb7fb4f320ffb971d1212765addd
Author: bebabi34 <bebabi34@email.it>
Date: Sun Sep 24 00:37:24 2017 +0200
I18n: Update translation it (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7a42dedd6292f45f353f91d0c5fff01da6c1fc41
Author: Kukuh Syafaat <syafaatkukuh@gmail.com>
Date: Sun Sep 24 00:37:23 2017 +0200
I18n: Update translation id (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9a91f7c17a680eff5ea05241f8a8a2714b6580fd
Author: gyeben <gyonkibendeguz@gmail.com>
Date: Sun Sep 24 00:37:23 2017 +0200
I18n: Update translation hu (79%).
160 translated messages, 42 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 343d58159b8ebcd00263dec856c208fb0f668b06
Author: Lovro Kudelić <lovro.kudelic@outlook.com>
Date: Sun Sep 24 00:37:23 2017 +0200
I18n: Update translation hr (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit cd61d15deee40d5c5ab6943bb2b5b581351c4ae4
Author: Elishai Eliyahu <e1907@mm.st>
Date: Sun Sep 24 00:37:22 2017 +0200
I18n: Update translation he (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 71244f26cbe214007d8f12b29c551a0294d607a7
Author: Yannick Le Guen <leguen.yannick@gmail.com>
Date: Sun Sep 24 00:37:22 2017 +0200
I18n: Update translation fr (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2b41fca5045d566cc3a8bb620cd183e093a81deb
Author: Brian Peraza-Orozco <brian.peraza@gmail.com>
Date: Sun Sep 24 00:37:21 2017 +0200
I18n: Update translation es (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 25fe792c77d1d220352b37498a73e961a1ee5d0a
Author: Michael Findlay <translate@cobber-linux.org>
Date: Sun Sep 24 00:37:21 2017 +0200
I18n: Update translation en_AU (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f6b716bc7c754a582cc88284bf2a2d981dfdc62a
Author: Xfce Bot <transifex@xfce.org>
Date: Sun Sep 24 00:37:21 2017 +0200
I18n: Update translation ast (85%).
173 translated messages, 29 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4625423363a6f742b33a50688818d40c20dcdbed
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date: Wed Sep 20 00:41:29 2017 +0200
I18n: Update translation zh_TW (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit deed09d988c3f02fe05d39b8eed7a7cba3971195
Author: Xfce Bot <transifex@xfce.org>
Date: Wed Sep 20 00:41:29 2017 +0200
I18n: Update translation zh_HK (55%).
113 translated messages, 89 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e411b991c07e2dd17f06bd8296060affedf2b167
Author: Mingcong Bai <jeffbai@aosc.xyz>
Date: Wed Sep 20 00:41:29 2017 +0200
I18n: Update translation zh_CN (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f2d94b4cd5af5cd1930cd5817b227ba6f1190c44
Author: Xfce Bot <transifex@xfce.org>
Date: Wed Sep 20 00:41:29 2017 +0200
I18n: Update translation vi (55%).
112 translated messages, 90 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 79bcb3e81b278708184a1a3c2527a197aa7bab83
Author: Yarema aka Knedlyk <yupadmin@gmail.com>
Date: Wed Sep 20 00:41:28 2017 +0200
I18n: Update translation uk (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7dfb5ff6951bb583c71f8c9f648b319c87eb00fe
Author: Xfce Bot <transifex@xfce.org>
Date: Wed Sep 20 00:41:28 2017 +0200
I18n: Update translation ug (54%).
111 translated messages, 91 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5cd4b2071e44e0909aa8f100e190a907ad39a7f6
Author: Necdet Yücel <necdetyucel@gmail.com>
Date: Wed Sep 20 00:41:28 2017 +0200
I18n: Update translation tr (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a4f518b475fba46cac6d4897cb6f63d9bacc5fac
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date: Wed Sep 20 00:41:28 2017 +0200
I18n: Update translation th (100%).
202 translated messages.
Transifex (https://www.transifex.com/xfce/public/).