forked from deepin-community/libxfce4ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
19137 lines (11810 loc) · 551 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 a987b4a2c32a1de8a20d6087befc4fa196799f11
Author: Andre Miranda <[email protected]>
Date: Sun Sep 5 18:30:05 2021 -0300
Add 4.16 section to docs
commit 37b8733ef6359c7e189b2b6330e99e1ccf67c60c
Author: Simon Steinbeiss <[email protected]>
Date: Thu Apr 22 22:59:27 2021 +0200
about: Replace stock with regular button
commit 5a1c17b196bfce3388459cb013ee6e68717bfc7a
Author: Simon Steinbeiss <[email protected]>
Date: Thu Apr 22 22:58:07 2021 +0200
about: Make Close button translatable (Fixes #41)
commit a06939b9bdb8215de535ac127cb1c82a93e8905b
Author: Alexander Schwinn <[email protected]>
Date: Thu Mar 4 21:22:58 2021 +0100
Revert "Show image of menu items as well in wayland sessions (Issue
#38)"
This reverts commit fc96ece5c8a7ebc289df573c15c7a8ae988c93e1.
Prevent forcing it. There is already a setting for it in xfce4-settings,
channel "xsettings". So when xfsettingsd will run in wayland, menu items
will be back.
commit c3672e2b21328aa998fdcb30e48b48d92297e15e
Author: Alexander Schwinn <[email protected]>
Date: Mon Mar 1 22:09:52 2021 +0100
Show image of menu items as well in wayland sessions (Issue #38)
commit 2ad668de58be12d00f3485731e816d1f2613fb58
Author: Avinash Sonawane <[email protected]>
Date: Thu Jan 14 14:16:27 2021 +0530
Fix cast alignment warning
commit cc1bd66142ac27c4947015e0f1b9abd11d896c45
Author: Anonymous <[email protected]>
Date: Wed Jan 13 00:45:20 2021 +0100
I18n: Update translation eu (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5c4c1b59fd01df687d823684317d558d8db75bc8
Author: Anonymous <[email protected]>
Date: Tue Jan 12 12:45:28 2021 +0100
I18n: Update translation da (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b10ca650856d8b3b1d929be72b7f7e1840d4eb8b
Author: Anonymous <[email protected]>
Date: Tue Jan 12 00:45:11 2021 +0100
I18n: Update translation da (97%).
192 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6eb03dcbd8e9ab0b994c85174aada84807c766c3
Author: ivmazurenko <[email protected]>
Date: Mon Jan 11 00:45:11 2021 +0100
I18n: Update translation ru (97%).
192 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a264a0b8834a28f039766dae27257f4a7b21c88a
Author: Andreas Müller <[email protected]>
Date: Fri Jan 8 21:59:45 2021 +0100
Remove Gtk2 leftovers
It seems that these cause install performed twice causing natsy races -
see [1] and search for 'TOPDIR/build/tmpfs/hosttools/install -c -m 644
../../libxfce4ui-4.16.0/libxfce4ui/libxfce4ui.h'
[1] https://errors.yoctoproject.org/Errors/Details/540832/
Signed-off-by: Andreas Müller <[email protected]>
Closes !29
commit e6a28271e70cbc49f85eb735b8cb4fc6dd1c7dc2
Author: Maurizio Galli (m4u9) <[email protected]>
Date: Sun Jan 10 23:13:48 2021 +0100
Don't reserve vertical space for subtitles in headerbars
commit 5e4792a37a551b557f46ed9e8b8569225885d8a3
Author: Priit Jõerüüt <[email protected]>
Date: Fri Jan 8 12:45:30 2021 +0100
I18n: Update translation et (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit bc2ce5766b5c3406c0cb6f8e0fde43bd6e55864b
Author: Michael Martins <[email protected]>
Date: Mon Jan 4 00:45:15 2021 +0100
I18n: Update translation pt_BR (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 103b1f78e2e1cfbdd238260d2b29feed1046e63b
Author: Anonymous <[email protected]>
Date: Sun Jan 3 00:45:08 2021 +0100
I18n: Update translation pl (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f789fada46b155fe7593aa5dbe4c2d4cee38ff8c
Author: Ardjuna <[email protected]>
Date: Fri Jan 1 12:45:30 2021 +0100
I18n: Update translation id (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9f9428a6a9aae394dc12cf66b85a21e1ce9428e1
Author: Jiri Grönroos <[email protected]>
Date: Fri Jan 1 12:45:30 2021 +0100
I18n: Update translation fi (89%).
177 translated messages, 20 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 739f9c63eebc4bdb19e7466ded2b134b7cef28c5
Author: Źmicier Turok <[email protected]>
Date: Tue Dec 29 12:45:24 2020 +0100
I18n: Update translation be (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4df3dc5e783090f7191441c7ac6fb59a69fdfafe
Author: Priit Jõerüüt <[email protected]>
Date: Mon Dec 28 12:45:16 2020 +0100
I18n: Update translation et (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7d1bfca3497a2a0c66cf271a4a22b0922fb54aa2
Author: Elishai Eliyahu <[email protected]>
Date: Sun Dec 27 00:45:14 2020 +0100
I18n: Update translation he (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b48db481750422c033cc2e0d6460e71f8383939a
Author: Anonymous <[email protected]>
Date: Sat Dec 26 00:45:08 2020 +0100
I18n: Update translation eu (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c688bd83a5e305bd2beaf76dfb249915b59b8bd6
Author: Arnold Marko <[email protected]>
Date: Fri Dec 25 12:45:27 2020 +0100
I18n: Update translation sl (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ca1d4fb3b970c4f1170c52648532a00a0cc45a6b
Author: Anonymous <[email protected]>
Date: Fri Dec 25 00:45:08 2020 +0100
I18n: Update translation pt_BR (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ee2fe5f9ea1d0d970755df31e94955804e6b5048
Author: Anonymous <[email protected]>
Date: Thu Dec 24 12:45:32 2020 +0100
I18n: Update translation ie (90%).
179 translated messages, 18 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 76a34f371e3bfa012dfc626f3e88c5372c16301b
Author: Саша Петровић <[email protected]>
Date: Thu Dec 24 00:45:08 2020 +0100
I18n: Update translation sr (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3bc7363884e933960e200e38fc46e3f906c97f0b
Author: Yannick Le Guen <[email protected]>
Date: Thu Dec 24 00:45:08 2020 +0100
I18n: Update translation fr (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7e571b591200aa9bd4ae5d7af4d0cae0d7664949
Author: Michal Várady <[email protected]>
Date: Thu Dec 24 00:45:08 2020 +0100
I18n: Update translation cs (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9e1d9f07292c5cc97edc843b8c8c9788fdba4475
Author: Luna Jernberg <[email protected]>
Date: Wed Dec 23 12:45:34 2020 +0100
I18n: Update translation sv (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6c53d9dbc104d9cfd7e2ac88529e231a4b8ae4ef
Author: Kjell Cato Heskjestad <[email protected]>
Date: Wed Dec 23 12:45:34 2020 +0100
I18n: Update translation nb (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 12f66068c80cc901f4cfcdd126964b08ce9fcd45
Author: Nobuhiro Iwamatsu <[email protected]>
Date: Wed Dec 23 12:45:34 2020 +0100
I18n: Update translation ja (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 0d792bea33ac103edc4b030fea5783a5e90eb62f
Author: Anonymous <[email protected]>
Date: Wed Dec 23 12:45:34 2020 +0100
I18n: Update translation es (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7206c598b3846a3bc68b60a1011c15bfe1a2bde1
Author: Emin Tufan Çetin <[email protected]>
Date: Wed Dec 23 00:45:22 2020 +0100
I18n: Update translation tr (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 74587878f35a45a58eb6aa98e4b3699d53a08721
Author: Hugo Carvalho <[email protected]>
Date: Wed Dec 23 00:45:22 2020 +0100
I18n: Update translation pt (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a5f08d5d2f37b94bc6ec04c94d8d039a8710fd46
Author: Anonymous <[email protected]>
Date: Wed Dec 23 00:45:22 2020 +0100
I18n: Update translation lt (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5d74c195d8fd40e344f1fc2c2ead91196fe9fadb
Author: Kiril Kirilov <[email protected]>
Date: Wed Dec 23 00:45:22 2020 +0100
I18n: Update translation bg (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 364dc65f35b809458df39912e4680b62beb17021
Author: Romain Bouvier <[email protected]>
Date: Tue Dec 22 23:58:50 2020 +0100
Back to development
commit b4845df61d0b618c78ddae76d531218478dbb9b1
Author: Romain Bouvier <[email protected]>
Date: Tue Dec 22 21:46:35 2020 +0100
Updates for release
commit 0eaf228b82a16ebfc6cf29cb4b0c878dc6dda3ed
Author: Hugo Carvalho <[email protected]>
Date: Tue Dec 22 00:45:18 2020 +0100
I18n: Update translation pt (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5ab28d674d5e4fd1f3a09843a7e8bf96f263a8fa
Author: Anonymous <[email protected]>
Date: Tue Dec 22 00:45:17 2020 +0100
I18n: Update translation lt (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit becb224a7ef0b3b8bebdd472a3eeb4bf5f4855a8
Author: Simon Steinbeiss <[email protected]>
Date: Tue Dec 22 00:17:37 2020 +0100
about: Harmonize capitalisation
commit 0585ec80337a0a7fe6e8e087a785dbde30c08b87
Author: 黃柏諺 <[email protected]>
Date: Mon Dec 21 12:45:32 2020 +0100
I18n: Update translation zh_TW (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b8b80c463671b0b10cfbb5c5b62cf7884ba51b22
Author: Саша Петровић <[email protected]>
Date: Mon Dec 21 12:45:32 2020 +0100
I18n: Update translation sr (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 628c05f714f183a0c6b2d16c4f79c50233b1938d
Author: Daniel Muñiz Fontoira <[email protected]>
Date: Mon Dec 21 12:45:31 2020 +0100
I18n: Update translation gl (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ffda9d50bd892c13a3a0749cdce11ae79a6ed3df
Author: Lucas Wilm <[email protected]>
Date: Mon Dec 21 00:45:13 2020 +0100
I18n: Update translation pt_BR (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4e7b882a3b3bc102b6d10708451b18ce68a5ddd7
Author: Pjotr <[email protected]>
Date: Mon Dec 21 00:45:13 2020 +0100
I18n: Update translation nl (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6036c47fed94ef979a0e2c9095aa30839d2af4d1
Author: UTUMI Hirosi <[email protected]>
Date: Mon Dec 21 00:45:12 2020 +0100
I18n: Update translation ja (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1628602eef34874a214932e37657f4d3a109b18b
Author: Robert Antoni Buj Gelonch <[email protected]>
Date: Mon Dec 21 00:45:12 2020 +0100
I18n: Update translation ca (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ad87037c6aa677e60129eb3e65ec26ed76a15bce
Author: Kiril Kirilov <[email protected]>
Date: Mon Dec 21 00:45:12 2020 +0100
I18n: Update translation bg (100%).
197 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit fa46886089b0fc2e76ebe867b3b6315d3f53a2a3
Author: Romain Bouvier <[email protected]>
Date: Fri Dec 18 14:41:14 2020 +0100
Update credits for Xfce 4.16
commit 7bac63265403d4d2d99b27028512c3e823f35e62
Author: Kjell Cato Heskjestad <[email protected]>
Date: Fri Dec 18 12:45:36 2020 +0100
I18n: Update translation nb (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ac719d233019fb0c83c9c7b69cf2c4fde5c1848a
Author: Anonymous <[email protected]>
Date: Thu Dec 17 00:45:24 2020 +0100
I18n: Update translation eu (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 12fe4257cc7e0ab9284996a2bc48694f41bb8a14
Author: Simon Steinbeiss <[email protected]>
Date: Wed Dec 16 23:31:58 2020 +0100
Back to development
commit 09d6cfc0c3948ef1cdd36bb4ae0c725e4d953012
Author: Simon Steinbeiss <[email protected]>
Date: Wed Dec 16 23:30:53 2020 +0100
Updates for release
commit 6bc955acc49e84e856814bcfe48ffafceae813be
Author: Саша Петровић <[email protected]>
Date: Wed Dec 16 12:45:42 2020 +0100
I18n: Update translation sr (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3beccb8f6d26037c9ca16d1f1a1acca3c819e050
Author: Emin Tufan Çetin <[email protected]>
Date: Wed Dec 16 00:45:14 2020 +0100
I18n: Update translation tr (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e2273829efa53699916192c438ed124ba86d8d36
Author: UTUMI Hirosi <[email protected]>
Date: Wed Dec 16 00:45:14 2020 +0100
I18n: Update translation ja (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 0b8f74e0029fa8ee49cb92b13b10d393b1884c20
Author: Yannick Le Guen <[email protected]>
Date: Wed Dec 16 00:45:14 2020 +0100
I18n: Update translation fr (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3f7e84118068b6a8c57b9e74d57f34e00dcbd529
Author: Anonymous <[email protected]>
Date: Wed Dec 16 00:45:14 2020 +0100
I18n: Update translation es (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 20345a5844df1226f9ffa42884854ad02cbaaaa6
Author: Robert Antoni Buj Gelonch <[email protected]>
Date: Tue Dec 15 12:45:31 2020 +0100
I18n: Update translation ca (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit fea8e524e02e75504b2c9d86cd521ca7ef78a539
Author: Luna Jernberg <[email protected]>
Date: Tue Dec 15 00:45:14 2020 +0100
I18n: Update translation sv (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7a4d5a3b1ea9b5fd74a47d6084ea4c7117db4d7b
Author: Hugo Carvalho <[email protected]>
Date: Tue Dec 15 00:45:14 2020 +0100
I18n: Update translation pt (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 86741d7a8d5dd19ee81f2125ef546d592826fd06
Author: Emanuele Petriglia <[email protected]>
Date: Tue Dec 15 00:45:14 2020 +0100
I18n: Update translation it (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7d96f03ce2919beb2d948a84552249b33b02c23c
Author: Andreas Eitel <[email protected]>
Date: Tue Dec 15 00:45:14 2020 +0100
I18n: Update translation de (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f3d6ce4690c9feff7f95c34f9e0bf7f1a1df8c77
Author: Simon Steinbeiss <[email protected]>
Date: Mon Dec 14 16:37:43 2020 +0100
Add xfce_has_gtk_frame_extents to better handle CSD
commit b3c57ea8d868d0a5363e5aab2b96c914a448a651
Author: Simon Steinbeiss <[email protected]>
Date: Mon Dec 14 09:28:22 2020 +0100
Back to development
commit da7d23bbc5cca77fe126d8e3cc43de50e0d7e36e
Author: Simon Steinbeiss <[email protected]>
Date: Mon Dec 14 09:26:53 2020 +0100
Updates for release
commit 884e6bce8d5e7805f080124420edea8fb9a3d6cb
Author: Romain Bouvier <[email protected]>
Date: Sun Dec 13 23:45:30 2020 +0100
libxfce4ui now needs libxfce4util >= 4.15.6
commit acf0f0a62bb9c755482ba9641afb8b6bc96ccc20
Author: Romain Bouvier <[email protected]>
Date: Fri Dec 11 18:15:43 2020 +0100
Update configure.ac.in syntax
commit 8b9d6fd6bacbb6cc38a96a0e85794dac1b0ede01
Author: Romain Bouvier <[email protected]>
Date: Fri Dec 11 18:07:19 2020 +0100
Namespace of the gir needs capital first letter
- This will help vapigen to find correct namespaces
- Update m4/introspection.m4
- Update .gitignore
- Remove unused vapi metadata file
- Update python example
- See https://gi.readthedocs.io/en/latest/buildsystems/autotoolsintegration.html
commit 2935abf36027e09d0eab2b2e759085a7f3e33c6d
Author: Romain Bouvier <[email protected]>
Date: Sun Dec 13 14:03:24 2020 +0100
Remove hardcoded translators list
- This file is a pain to maintain, syntax is a mess, is not updated regularly,
some people want to be in the list, other don't want their email listed,
and transifex does not provides stats.
- It's better to add a link to www, then we only need to maintain the
list in one place
- Now we need to find a way to update the list on www too
- This fix issue #19
commit d2ba828dc57e5b2c96fa06f419f9fa3367024bfb
Author: Luna Jernberg <[email protected]>
Date: Sun Dec 13 12:45:27 2020 +0100
I18n: Update translation sv (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 069c4b8e3baa28eaee538d0070d375e23b9cc65a
Author: Arnold Marko <[email protected]>
Date: Sun Dec 13 00:45:26 2020 +0100
I18n: Update translation sl (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 8e2d1f718e2d4a448e8908ad0e251fe8f0755bdf
Author: Michael Martins <[email protected]>
Date: Sat Dec 12 00:45:14 2020 +0100
I18n: Update translation pt_BR (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 609d795496a20226d3452dd08a858dc91676ac56
Author: Jan Ziak <[email protected]>
Date: Fri Dec 11 02:31:24 2020 +0100
Bump libepoxy version to 1.2
Closes: https://gitlab.xfce.org/xfce/libxfce4ui/-/issues/32
commit aea43710d2d628b2f43a8e6e7acffdb76dee589d
Author: Simon Steinbeiss <[email protected]>
Date: Thu Dec 10 22:43:36 2020 +0100
Back to development
commit 59b79a30dace29cd7683ae03f26810eebff5ad32
Author: Simon Steinbeiss <[email protected]>
Date: Thu Dec 10 22:41:53 2020 +0100
Updates for release
commit f395a3662605e2ca8a7c3a0bab83dd5cc841c5f9
Author: Andre Miranda <[email protected]>
Date: Mon Dec 7 22:20:41 2020 -0300
Introduce xfce_spawn and xfce_spawn_command_line
The first function replaces the recently added xfce_spawn_no_child.
The main different, besides the shorter name, is the addition of
a flag to tell whether the spawned process should be a child.
The rationale is to provide more generic functions and deprecate
existing ones.
commit e75d070b8dd101a3081bf1367630f705eee67726
Author: Andre Miranda <[email protected]>
Date: Wed Dec 2 00:08:23 2020 -0300
Add xfce_spawn_command_line_no_child
Closes #34
commit edf2d4fea203c80694de79cc5c69f8908429b2dd
Author: Andre Miranda <[email protected]>
Date: Wed Dec 2 00:08:14 2020 -0300
Fix typo
commit 9bd4075ab0dc5577b7ddcbb53a000591c324376a
Author: Andre Miranda <[email protected]>
Date: Wed Dec 2 00:07:46 2020 -0300
Extract xfce_spawn_command_line
commit 60dce26fed619ca586d887c9fba1a31d38b07428
Author: Anonymous <[email protected]>
Date: Wed Dec 9 00:45:39 2020 +0100
I18n: Update translation pt_BR (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2d8b8903f06a51e82ac0f548b7cca9c747a6a4d6
Author: Alexander Schwinn <[email protected]>
Date: Tue Dec 8 22:42:52 2020 +0100
bump glib (and gio, gthread, etc) minimum to 2.50.0
As agreed on the 4.16 roadmap
commit 3fb39ec96490493cdc9cebc0999646f810509b2f
Author: Саша Петровић <[email protected]>
Date: Sun Dec 6 12:45:39 2020 +0100
I18n: Update translation sr (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit beda3d49c85d0c0407cb1647ae3562bf1021a1bd
Author: Luna Jernberg <[email protected]>
Date: Wed Dec 2 00:45:09 2020 +0100
I18n: Update translation sv (99%).
194 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 46e7dd54a85c41a3d6f44667fa19e5a5792ffe33
Author: Jan Ziak <[email protected]>
Date: Thu Nov 26 16:36:07 2020 +0100
Bump GLib minimum version to 2.44
g_steal_pointer() is available since GLib 2.44
commit 64a07dcd9aad141e2f160d13a901452bceca73f4
Author: 玉堂白鹤 <[email protected]>
Date: Mon Nov 30 12:45:22 2020 +0100
I18n: Update translation zh_CN (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4fb085bd748847c19e14d818721ead77a22d7150
Author: UTUMI Hirosi <[email protected]>
Date: Mon Nov 30 12:45:21 2020 +0100
I18n: Update translation ja (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit eaef3e04cc383fac624c0f0372823fac85bb1620
Author: Hugo Carvalho <[email protected]>
Date: Mon Nov 30 00:45:08 2020 +0100
I18n: Update translation pt (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 28ddfbec3405fbc334a9d213732cb5e120fea53a
Author: Kjell Cato Heskjestad <[email protected]>
Date: Sun Nov 29 00:45:11 2020 +0100
I18n: Update translation nb (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 14e306185221482a2aa8c75bb5511af576ec246c
Author: Triyan W. Nugroho <[email protected]>
Date: Sun Nov 29 00:45:11 2020 +0100
I18n: Update translation id (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 45c3edd4b589f8fcbd4fa81e04d27132e8c311fa
Author: Elishai Eliyahu <[email protected]>
Date: Sun Nov 29 00:45:11 2020 +0100
I18n: Update translation he (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9b800f25eeb01dfad08c0378c4f1987054848d73
Author: Yannick Le Guen <[email protected]>
Date: Sun Nov 29 00:45:11 2020 +0100
I18n: Update translation fr (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit aa47d89d4c05620f995e9b086b592325d3b8bca0
Author: Anonymous <[email protected]>
Date: Sun Nov 29 00:45:10 2020 +0100
I18n: Update translation es (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 150dfa50f63c57aaf93f23e94e250cd495b29308
Author: Emanuele Petriglia <[email protected]>
Date: Sat Nov 28 00:45:09 2020 +0100
I18n: Update translation it (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 47851021515dd0a7f8c802426e895cab8bd17d9d
Author: 黃柏諺 <[email protected]>
Date: Fri Nov 27 12:45:25 2020 +0100
I18n: Update translation zh_TW (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 913151de258180529c8655b37baa92465d3a6a45
Author: Emin Tufan Çetin <[email protected]>
Date: Fri Nov 27 12:45:25 2020 +0100
I18n: Update translation tr (100%).
195 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4c0c28bacb1470c6760268c8334c1d2fc95048bf
Author: Luna Jernberg <[email protected]>
Date: Fri Nov 27 12:45:25 2020 +0100
I18n: Update translation sv (98%).
193 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 441697df084806a5496a1c417e527e8efbde417d
Author: Jan Ziak <[email protected]>
Date: Thu Nov 19 17:35:39 2020 +0100
about: Support multiple GPUs and print GPU memory size
The GPUs are detected using OpenGL and then using GUdev.
If a GPU is detected via OpenGL and also via GUdev, the two pieces of
information are merged into one GPU description.
This patch adds GUdev as an optional dependency to the configuration
file.
The memory size is obtained via the following OpenGL extensions:
GLX_MESA_query_renderer (primary)
GL_NVX_gpu_memory_info (secondary)
Examples:
GeForce® GTX 750
Intel® HD Graphics 4000
Intel® HD Graphics (1.5 GiB)
llvmpipe (LLVM 10.0.1, 128 bits) (7.7 GiB)
Radeon™ RX 5500 XT (8.0 GiB)
See also: https://gitlab.xfce.org/xfce/libxfce4ui/-/issues/27
commit 1b722b862abee32d13f45398de17400ad619f120
Author: Simon Steinbeiss <[email protected]>
Date: Thu Nov 26 00:08:07 2020 +0100
about: Drop window subtitle
The vendor information and xfce version string are now part of the
"System" tab.
commit 169f218005181d4a5eefccf5060694aeb31e1dcf
Author: Hugo Carvalho <[email protected]>
Date: Wed Nov 25 00:45:09 2020 +0100
I18n: Update translation pt (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit aacffbf81fbc89ca30e16860f33ba903f86591ee
Author: Simon Steinbeiss <[email protected]>
Date: Tue Nov 24 00:37:37 2020 +0100
Always perform sanity check
vs. only with debug output enabled.
commit ffeb34a7ce7b5281491889840c4cf11415b5dfb7
Author: Luna Jernberg <[email protected]>
Date: Mon Nov 23 12:45:27 2020 +0100
I18n: Update translation sv (98%).
194 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d7680a8dd74163e00517f5478e1bac7de1ff0d13
Author: Jan Ziak <[email protected]>
Date: Thu Nov 19 20:39:31 2020 +0100
Avoid checking for epoxy if libgtop is disabled
See also: https://gitlab.xfce.org/xfce/libxfce4ui/-/merge_requests/16#note_19100
commit f8608a394e2ddb4cd8565a8fdb92b4a7389860d6
Author: Simon Steinbeiss <[email protected]>
Date: Mon Nov 23 10:25:09 2020 +0100
XfceTitledDialog: Fix erroneous check (Fixes #30)
Checking that the icon_name is not empty is the correct check, otherwise
the icon never gets set with debug output enabled.
commit d78f06c07bcdd06003a0d1e64882b78d07c709f9
Author: Emin Tufan Çetin <[email protected]>
Date: Sun Nov 22 12:45:22 2020 +0100
I18n: Update translation tr (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 00eb9557c34589fb2ee950bea6a3ad2398bb73ab
Author: UTUMI Hirosi <[email protected]>
Date: Sun Nov 22 12:45:22 2020 +0100
I18n: Update translation ja (100%).
196 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b65a7f08478b4a1d379fa2cbe4d7a06414688ad7
Author: Yannick Le Guen <[email protected]>
Date: Sun Nov 22 12:45:22 2020 +0100