-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
20349 lines (12655 loc) · 618 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 8ec78275a80734536ee1f6697683294bbe60db6b
Author: Sean Davis <[email protected]>
Date: Sun Mar 18 16:50:29 2018 -0400
Cast to correct types
commit f21d72873ea5a9f12cd8288441971e8ecb4a45e0
Author: Sean Davis <[email protected]>
Date: Sun Mar 18 16:44:50 2018 -0400
Add missing static
commit 591f53a97139b289d27382978e02319e949a5ef1
Author: Emanuele Petriglia <[email protected]>
Date: Sun Mar 18 18:31:54 2018 +0100
I18n: Update translation it (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b4fcbc514426749b8754edc32a1ce6313437ab6d
Author: Πέτρος Σαμαράς <[email protected]>
Date: Sun Mar 18 18:31:54 2018 +0100
I18n: Update translation el (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 558ef884097efb20b83f965af21bc2b59186baa3
Author: Sean Davis <[email protected]>
Date: Tue Mar 13 21:35:55 2018 -0400
Add files to .gitignore
commit 93462f3008826eb97d4f354d973db566551d29e0
Merge: 4779448 e672bc0
Author: Sean Davis <[email protected]>
Date: Tue Mar 13 21:13:35 2018 -0400
Merge remote-tracking branch 'ochosi/draw-active-last' into xfce-4.12
commit 4779448c30576681c58a531a3712a9ba41c1f01a
Author: Anonymous <[email protected]>
Date: Wed Mar 14 00:31:14 2018 +0100
I18n: Update translation da (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e672bc0f2118f9b90c09f23b2e75272da600f0c5
Author: Simon Steinbeiss <[email protected]>
Date: Mon Mar 12 23:20:38 2018 +0100
display: Always draw active display last so it's on top
This is especially useful when multiple displays overlay and ensures
that the currently active output's name is clearly readable and
therefore distinguishable.
Also tweaked the alpha values of both displays as a result.
commit 00b0f9e0349988f3dcfab9b042cbb702cd90246f
Author: Simon Steinbeiss <[email protected]>
Date: Mon Mar 12 22:53:03 2018 +0100
display: Fix race condition on monitor dis/connecting
commit 8441a949aadc6e2ef4fec011856c5aefb259eff3
Merge: db0fcec 34396b2
Author: Sean Davis <[email protected]>
Date: Sun Mar 11 08:07:56 2018 -0400
Merge remote-tracking branch 'schuellerf/mirrored-cloned-inconsistent-4.12' into xfce-4.12
commit db0fcec8f9cf48ff8363b8ef8c9be2eb4694edbd
Author: abuyop <[email protected]>
Date: Sun Mar 11 12:31:26 2018 +0100
I18n: Update translation ms (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6494c64b2eeee74a00c01e6a5ef930ca02d48497
Author: Erlend Østlie <[email protected]>
Date: Sat Mar 10 18:31:33 2018 +0100
I18n: Update translation nb (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit bef17732eb8d6ef8b62c1db6010d6b1941622385
Author: Zmicer Turok <[email protected]>
Date: Sat Mar 10 00:31:33 2018 +0100
I18n: Add new translation be (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 436448a3ab9c448f4f8785b3c751d05bc6136170
Author: Necdet Yücel <[email protected]>
Date: Mon Mar 5 06:31:14 2018 +0100
I18n: Update translation tr (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 0e17dea042098f65dd0bc33da4f533c2492e396c
Author: Florian Schüller <[email protected]>
Date: Sun Mar 4 00:33:45 2018 +0100
display: Fix multimonitor position in extended mode
When adding more than two monitors the widths should be added for all
subsequent monitors.
commit 34396b237268d32959b1c28d297b9b574097446e
Author: Florian Schüller <[email protected]>
Date: Sun Mar 4 00:13:07 2018 +0100
Fixed multimonitor position in extended mode
When adding more than two monitors the widths should be added for all subsequent monitors
commit e42a9a3ef7b5af5532c08314ec52824536ffbba9
Author: Florian Schüller <[email protected]>
Date: Sat Mar 3 22:38:50 2018 +0100
Avoid Segfault on reconnect scenario
I can reproduce a segfault with:
* Connect a monitor (Monitors "overlap" now)
* Select mirror mode
* Apply
* Disconnect monitor
* Connect monitor again
commit 52d69f9e9509039cd76b4d231c7172438f5c3cf0
Author: Simon Steinbeiss <[email protected]>
Date: Fri Mar 2 23:09:07 2018 +0100
Fix the mirror state machine by visualizing all three states
The three states are:
0: not cloned
1: cloned (same x/y, same resolution)
2: mirrored (same x/y, different resolution)
In the case of 2 I added some precautions to make both overlapping
displays visible, so the user knows what the current state is.
TODO: Make sure the resolution combobox is updated correctly when the
mirror checkbox is clicked (currently it remains unaltered, even if the
resolution would change through enabling mirror mode).
commit 8e6f47ba40e7e5186a86851df078923285c60c90
Author: Simon Steinbeiss <[email protected]>
Date: Fri Mar 2 16:22:11 2018 +0100
display: Visually note if two displays overlap (mirrored) but are not cloned
commit d02a6e0a9bdb58584f13f23e864647360f219f8b
Author: Påvel Nicklasson <[email protected]>
Date: Fri Mar 2 18:31:25 2018 +0100
I18n: Update translation sv (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 045fa132933ae11bbce65b778bc3afc33e982e57
Author: Anonymous <[email protected]>
Date: Fri Mar 2 06:31:30 2018 +0100
I18n: Update translation pl (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 20b5c3f07c576f0c1cb65511d699141ba82fe045
Author: Саша Петровић <[email protected]>
Date: Thu Mar 1 12:31:20 2018 +0100
I18n: Update translation sr (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 17a31c24497e53975c6969035b19e14d6e2a790b
Author: Andre Miranda <[email protected]>
Date: Thu Mar 1 06:31:30 2018 +0100
I18n: Update translation pt_BR (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b6919f87e7b9656ee5c3f8f7ea4378cce7105b44
Author: Sean Davis <[email protected]>
Date: Wed Feb 28 19:18:07 2018 -0500
Updates for release
commit bbce4f56ac9bb46e26f05aa47eade1a8074e3157
Author: gabrieltandil <[email protected]>
Date: Wed Feb 28 18:31:38 2018 +0100
I18n: Update translation es (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5c472232c969417c4ba73b01d44579bc0ef51285
Author: Jiri Grönroos <[email protected]>
Date: Wed Feb 28 12:31:44 2018 +0100
I18n: Update translation fi (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 48443315140f00c16d4c36d9f3d0a2a5d3360c14
Author: Florian Schüller <[email protected]>
Date: Sun Nov 26 10:48:35 2017 +0100
Fix division by 0 crash
While it isn't clear why gdk_screen_height_mm() would be 0 in the first place
some users faced this so we try to be on the safe side.
commit 00544567799d177795c833b2ee6337b4b27a5ba1
Author: Florian Schüller <[email protected]>
Date: Sun Nov 26 11:15:33 2017 +0100
Fix syndaemon not starting with certain locales
Fixed syndaemon not starting if the current locale creates a colon in the
float-number for syndaemon.
commit a1b709e3570b30940e9d0d9a0244b7e58358c3c7
Author: SamHX <[email protected]>
Date: Tue Feb 27 18:31:39 2018 +0100
I18n: Update translation zh_CN (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d06b926e672d99665c12b022c95c54298692e12a
Author: Baurzhan Muftakhidinov <[email protected]>
Date: Tue Feb 27 18:31:39 2018 +0100
I18n: Update translation kk (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit defae46979ec46601b71fa16cf492d3971e19f4c
Author: Elishai Eliyahu <[email protected]>
Date: Tue Feb 27 18:31:39 2018 +0100
I18n: Update translation he (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d98c5c207fb87edd0cbb63f559dbb7871ee178e2
Author: gabrieltandil <[email protected]>
Date: Tue Feb 27 18:31:39 2018 +0100
I18n: Update translation es (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b3e979cbcd9eaa58d3b12d372d5f6852661ac6f9
Author: Linuxbruger <[email protected]>
Date: Tue Feb 27 18:31:38 2018 +0100
I18n: Update translation da (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 74a87af0978ecb0e9a1dc2dd1ff56bcb715a8c46
Author: Jeff Huang <[email protected]>
Date: Tue Feb 27 12:31:21 2018 +0100
I18n: Update translation zh_TW (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9779f50138fcf04c580ada40d4d5ed90547d6a81
Author: Slavko <[email protected]>
Date: Tue Feb 27 12:31:21 2018 +0100
I18n: Update translation sk (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 85fcf9e9c343c193680f0d9f918bb2821a91eb1f
Author: Kevin Brubeck Unhammer <[email protected]>
Date: Tue Feb 27 12:31:21 2018 +0100
I18n: Update translation nn (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7593aefde3f8298c63453cdb3cace21313fb4c18
Author: Edin Veskovic <[email protected]>
Date: Tue Feb 27 12:31:21 2018 +0100
I18n: Update translation hr (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d955236253c9d07545bac484ffb02547aca56c08
Author: Πέτρος Σαμαράς <[email protected]>
Date: Tue Feb 27 06:32:07 2018 +0100
I18n: Update translation el (100%).
359 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1cc31f60dcc8f9f83c09d4d5c58d1488f9c8459a
Author: Simon Steinbeiss <[email protected]>
Date: Sun Feb 25 23:55:53 2018 +0100
Update changelog
commit e60b12faecba833979025ea83a2abe41c419782b
Author: Simon Steinbeiss <[email protected]>
Date: Sun Feb 25 23:42:34 2018 +0100
Fix indentation and code formatting
commit 7b808732ceb2b21825d205396eed79d673d9c16c
Author: Simon Steinbeiss <[email protected]>
Date: Sun Feb 25 23:42:18 2018 +0100
Finalize strings for configuration option
commit 91a91862685b725b821d0655f13e1e8d4214c7a0
Author: Simon Steinbeiss <[email protected]>
Date: Sun Feb 25 23:41:48 2018 +0100
Add destroy callback to always free the pixbuf
commit 5a8d1e49413d922d23f6b6948fe4f3288cd2e50f
Author: Simon Steinbeiss <[email protected]>
Date: Sun Feb 25 15:48:21 2018 +0100
Improve code formatting
commit c4bb03d44304602e904ed866bd4e35dd563eac16
Author: Simon Steinbeiss <[email protected]>
Date: Sun Feb 25 15:42:33 2018 +0100
Make sizes const and drop useless includes
commit 151e294abf0649b3f193baeec49168b39f41743c
Author: Simon Steinbeiss <[email protected]>
Date: Sun Feb 25 13:10:37 2018 +0100
Fix race condition and drop lots of unneeded calls
Taking the screenshot should happen before the expose event, not
inside.
Also: don't query things we already know like width and height of
the window or the pointer position (as that always stays the same)
commit 20f9fa26ee7cc2fe2922799b61f0ea7341fbce63
Author: Simon Steinbeiss <[email protected]>
Date: Sun Feb 25 12:36:30 2018 +0100
Clean up the motion-notify-event code
commit f5a51959574642aa3993ddcdb0e83fc5beb7949f
Author: Florian Schüller <[email protected]>
Date: Sun Feb 25 10:47:40 2018 +0100
Fixed screenshot around the "origin"
commit e72d7382db1a328ea170c359220ded4830909bc2
Author: Florian Schüller <[email protected]>
Date: Sat Feb 24 00:46:16 2018 +0100
Workaround for non-compositing mode
commit 104ba82f29ec7edf63d4508ee59c79e12be5415f
Author: Florian Schüller <[email protected]>
Date: Sat Feb 24 00:39:56 2018 +0100
Valgrind findings
commit c1f700b8ff4d9eb2210ed55c2d3855400cc08355
Author: Florian Schüller <[email protected]>
Date: Sat Feb 24 00:38:50 2018 +0100
Reduce hardcoded circle sizes
commit 566476d5190e73dcb1fc1602e382b79d6a6863a5
Author: Florian Schüller <[email protected]>
Date: Sat Feb 24 00:25:42 2018 +0100
Minimize error for wrong coordinates of screenshot
commit 6d67a79ca11f67f3bd07a19ffb1918b87d956de8
Author: Florian Schüller <[email protected]>
Date: Sat Feb 24 00:09:28 2018 +0100
Fixed indentation
commit 35bc2c2db99e49d6624bb284b43b81a0bb682e40
Author: Florian Schüller <[email protected]>
Date: Sat Feb 24 00:07:13 2018 +0100
Fixed screenshot in non-compositor mode
Also a fallback if screenshot fails
commit eaed9027092dc98a9e30ae2d7baf75bc743af734
Author: Simon Steinbeiss <[email protected]>
Date: Fri Feb 23 01:22:15 2018 +0100
Add comments and fixme
commit e608b422c84182363001319c01a8d94b7dd5e80d
Author: Simon Steinbeiss <[email protected]>
Date: Fri Feb 23 01:20:10 2018 +0100
WIP: Fake transparency support
This is for non-composited environments. Currently I have to use an
offset of 1px to get the pixbuf drawn. This should be fixed.
commit 7d7491bc5f9e6f81fbcab341766ec7c854e83704
Author: Simon Steinbeiss <[email protected]>
Date: Thu Feb 22 23:28:31 2018 +0100
Fix build
commit fa5e67c03f8c36e152b21139f3cb7958d7a39017
Author: Simon Steinbeiss <[email protected]>
Date: Wed Feb 21 21:21:00 2018 +0100
Create a popup window instead of a dock
The dock hint and the popup window both have the effect of
the wm ignoring the (partly) offscreen position of the
window. The dock hint is not only wrong, it also means the
wm may draw a shadow underneath (xfwm4 has an option for
shadows under docks).
commit 28fa4526810526a93f621d3d2b246c243c727e92
Author: Simon Steinbeiss <[email protected]>
Date: Wed Feb 21 00:18:08 2018 +0100
Drop Gtk3 property halign
commit 54af000a25a1b6f95c5c91765c517bcaba5b3839
Author: Simon Steinbeiss <[email protected]>
Date: Tue Feb 20 23:44:01 2018 +0100
Make the visualisation follow the mouse-cursor
commit dfa685a1ad2bec457b92f061d014ae714a8412c8
Author: Simon Steinbeiss <[email protected]>
Date: Tue Feb 20 22:53:58 2018 +0100
Rename binary to xfce4-find-cursor for consistency
commit 620bdbb360520551e8143b78b04fc846595e5270
Author: Simon Steinbeiss <[email protected]>
Date: Tue Feb 20 22:28:30 2018 +0100
Backport find-cursor to Gtk2
commit be099e20b30246fe233d0d4a8e6f6656364a4f9b
Author: Simon Steinbeiss <[email protected]>
Date: Tue Feb 20 20:40:34 2018 +0100
Add xfconf setting to enable find-cursor
Currently there is no keyboard shortcut bound, but the script
is only executed if the xfconf boolean setting is true.
commit 5ba3f251541fa8cf45c30886c81de40e8dc8dc77
Author: Simon Steinbeiss <[email protected]>
Date: Tue Feb 20 15:32:15 2018 +0100
Code cleanup and better cairo drawing code
commit 83e650c63335243298910aaef9bb3daa172d93a7
Author: Simon Steinbeiss <[email protected]>
Date: Tue Feb 20 15:29:47 2018 +0100
Make sure that the circles are always correctly positioned
We do this by telling the WM to ignore display boundaries through
setting the GDK_WINDOW_TYPE_HINT_DOCK type hint.
commit c1b58e0cee8df1a4eb5d7580d9503a327d6ed098
Author: Simon Steinbeiss <[email protected]>
Date: Tue Feb 20 00:24:30 2018 +0100
Add a simple find-cursor helper
commit ce7b3e5a2327a7e7262e71809c3a07414e345e88
Author: Sean Davis <[email protected]>
Date: Thu Feb 22 21:08:40 2018 -0500
Update changelog
commit bc40c7f1e25d1f13f874783b1e792b5736720458
Author: Sean Davis <[email protected]>
Date: Thu Feb 22 20:52:43 2018 -0500
Sync translations from 4.13
commit cf04fd4f02c07322778ef6ce194af9244104548c
Author: Sean Davis <[email protected]>
Date: Thu Feb 22 20:42:08 2018 -0500
Adapt the monospace patch to GTK2
commit b9a93ccafe1a81c0b1af1c0cdbd842da90ece7e4
Author: Igor <[email protected]>
Date: Tue Feb 14 17:57:34 2017 +0300
Add Default Monospace Font chooser to Appearance dialog
Signed-off-by: Sean Davis <[email protected]>
commit f628595a81475db27a863564c6a5b6018db8a691
Author: Simon Steinbeiss <[email protected]>
Date: Wed Feb 15 00:21:04 2017 +0100
Support embedded DisplayPort connectors
This is what modern laptops have as internal displays
Signed-off-by: Sean Davis <[email protected]>
commit e128126f5e32c1018854403bb846cb9d6a091bb0
Author: Florian Schüller <[email protected]>
Date: Sun Dec 17 20:56:23 2017 +0100
display: Leave the monitor where it was if possible (Bug #14096)
If a monitor is known and re-attaching it would not lead to a gap don't
move it to (x=0, y=0)
commit a640c11daa5f7bfcfa52cd8149aa237560529e9c
Author: Sean Davis <[email protected]>
Date: Thu Sep 15 07:11:29 2016 -0400
Updates for release
commit f010198fb6e52c66bd1b4a9119ad65c5d1467b3e
Author: Robert Antoni Buj Gelonch <[email protected]>
Date: Mon Aug 22 18:30:50 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 9355c744714cc7b0088cbc5b6bb324912121af8a
Author: Robert Antoni Buj Gelonch <[email protected]>
Date: Mon Aug 15 12:30:58 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 683822cdb02fdbee0a33f767af3dc5caa998d2c8
Author: Dwight Engen <[email protected]>
Date: Wed Sep 23 09:19:00 2015 -0500
Fix color scheme preview on low bit depth displays (Xfce #12223)
Signed-off-by: Sean Davis <[email protected]>
commit cd1ef4dc2a5323f130c31754a631caa228c9fd3b
Author: Sean Davis <[email protected]>
Date: Sat Aug 13 09:19:50 2016 -0400
Fix: Segfault in convert_xfce_output_info when plugging in an external model, fallback on 640x480 (Xfce #12580, RH #1317382)
commit 82a6f87bb7325f1a210ecaaa271fd2d6efbe1bbb
Author: Sean Davis <[email protected]>
Date: Sat Aug 13 08:54:49 2016 -0400
Fix: /Xft/Hinting is never set (Xfce #12086), thanks Dan Callaghan
commit 90c3f40da0ae66f0c532d788249b77b68241e1c0
Author: Sean Davis <[email protected]>
Date: Sat Aug 13 08:44:47 2016 -0400
Fix memory leak in xfce4-appearance-settings (Xfce #11746), thanks LOR-superuser
commit 2233f20a7ec6d7cb7dcc5752d62d98e37d9c21ad
Author: Sean Davis <[email protected]>
Date: Thu Aug 11 20:29:27 2016 -0400
Fix: xfsettingsd resets TV mode to NULL on power cycle (Xfce #11107), thanks to patch by jkampe68
commit af6f6d1c1997c832bab199cb7a09775ca78bd284
Author: Anonymous <[email protected]>
Date: Tue Aug 2 18:30:41 2016 +0200
I18n: Update translation lt (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 803b352bf28e63360643a1dadc5616e2befa58f0
Author: Anonymous <[email protected]>
Date: Sat Jul 2 00:30:57 2016 +0200
I18n: Update translation lt (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 2167e397d20a5e66c78fe7db72031a8185b961aa
Author: Anonymous <[email protected]>
Date: Fri Jun 24 18:31:12 2016 +0200
I18n: Update translation lt (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 6ce9120bf3d4c336aea4741317c3b4ddefa66da8
Author: Anonymous <[email protected]>
Date: Fri Jun 24 12:30:38 2016 +0200
I18n: Update translation lt (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 46de18d79532887c7f1233986f6441a70af6e5f9
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Mon Jun 6 18:31:14 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 2cddb687bc98015a508e56fa42bb329917bd5448
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Mon Jun 6 12:30:42 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 78045a4e86b5cb2f89ea1ed1b404122747a7b98a
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Mon Jun 6 06:31:00 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 075854a1c7b67bf212f31fca8df5d02740592d58
Author: Sergey Alyoshin <[email protected]>
Date: Sun May 29 18:30:47 2016 +0200
I18n: Update translation ru (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 56abfbdda77fe634eb4c42b03b9ce78c20c82e1d
Author: Ivica Kolić <[email protected]>
Date: Sun May 8 12:30:38 2016 +0200
I18n: Update translation hr (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 37e2d2e3255e403a1a8abf26a9e7a6365232b602
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Wed May 4 18:30:50 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit a18888704d43df46e94fead7accb47a7b8d79fef
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Tue May 3 18:30:57 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 44def87280ff2c7c1a36fa176155aad08d34f4b0
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Tue May 3 12:31:22 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 266c866fe0b52c9c1b3dbc702d08910ac55ef5fd
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Tue May 3 00:31:06 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 90f72b427c36d547c17a70d84b459487a938e5eb
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Mon May 2 18:31:26 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 7512802c4d2a33546e8b9f7c88e71d7866a9f9dd
Author: Robert Antoni Buj i Gelonch <[email protected]>
Date: Sun May 1 12:31:34 2016 +0200
I18n: Update translation ca (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 82e7903ef109cad4245ebdebe4240ba3b7c220f8
Author: Anonymous <[email protected]>
Date: Wed Apr 27 00:30:38 2016 +0200
I18n: Update translation lt (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit b6aa8585097f6992a382565cd493de4620f53668
Author: Påvel Nicklasson <[email protected]>
Date: Tue Apr 26 12:30:38 2016 +0200
I18n: Update translation sv (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 91ac942bcae41bb65dd1bd198235f5b0626fa1d5
Author: gyeben <[email protected]>
Date: Tue Mar 29 18:31:42 2016 +0200
I18n: Update translation hu (99%).
353 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 4d1b76da6943d1cd221c71535100cc95f3213c67
Author: Elishai Eliyahu <[email protected]>
Date: Mon Mar 21 18:32:07 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 55b3abbc3cb7c4d4c6163fdb7e4c2721672d7502
Author: Elishai Eliyahu <[email protected]>
Date: Sun Mar 20 18:31:18 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit a19f2010ef70fe448e15d13e07fb55758c1399bd
Author: Elishai Eliyahu <[email protected]>
Date: Sun Mar 20 12:31:40 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 3f626e1bb2b1f491b79f282dc8cec02b3671e105
Author: Elishai Eliyahu <[email protected]>
Date: Thu Mar 17 00:31:10 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 37a88e0c31775854f14b4a253ae02b1c3b2f145a
Author: Elishai Eliyahu <[email protected]>
Date: Wed Mar 16 18:31:41 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 4134b6c611f1dbcff682db9b674c386a1737791c
Author: Elishai Eliyahu <[email protected]>
Date: Wed Mar 16 00:30:41 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit da3854657e9fe135e2f3042387f691865b225ba6
Author: Elishai Eliyahu <[email protected]>
Date: Tue Mar 15 18:32:07 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit ab9dfbdf6eb639ff3243da969c6ecb7d27ec162b
Author: Elishai Eliyahu <[email protected]>
Date: Tue Mar 15 12:30:36 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit ebd8a10797d070cb1cac782116f796c407e93b86
Author: Elishai Eliyahu <[email protected]>
Date: Sun Mar 13 18:31:18 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 06257520b96246f944a31523fb0e63a703d0d6cd
Author: Elishai Eliyahu <[email protected]>
Date: Sun Mar 13 12:30:59 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 085aa808e89d83e059b5135631d152a1bf94221f
Author: Cédric Valmary <[email protected]>
Date: Fri Mar 11 18:32:19 2016 +0100
I18n: Update translation oc (98%).
349 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit bfd5d08cb39f4098d32060e54854b03c5924e89a
Author: Elishai Eliyahu <[email protected]>
Date: Fri Mar 11 18:32:19 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit c872c22b3cc3746982e1aacad07fad53af18c8e4
Author: Elishai Eliyahu <[email protected]>
Date: Fri Mar 11 12:32:03 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 6eef1d371ed0ee9ecef119052420b8f5c1844959
Author: Elishai Eliyahu <[email protected]>
Date: Thu Mar 10 12:31:10 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit ce41cf90e58e56fb169eb426f4670d8b510cfb74
Author: Elishai Eliyahu <[email protected]>
Date: Tue Mar 8 12:31:12 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 255174c823fd951908552d892b73c6c49146c66b
Author: Elishai Eliyahu <[email protected]>
Date: Mon Mar 7 00:30:36 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit b0eac70d618a67a2cb7be23f6a84f3023b36f112
Author: Elishai Eliyahu <[email protected]>
Date: Sun Mar 6 18:31:42 2016 +0100
I18n: Update translation he (100%).
354 translated messages.
Transifex (https://www.transifex.com/projects/p/xfce/).
commit 8428a190b93e68ac21be720ef74216ff145c6b31
Author: Elishai Eliyahu <[email protected]>
Date: Fri Mar 4 18:31:51 2016 +0100
I18n: Update translation he (100%).