forked from ArcticaProject/arctica-greeter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
2208 lines (1190 loc) · 57.6 KB
/
Copy pathChangeLog
File metadata and controls
2208 lines (1190 loc) · 57.6 KB
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
2021-02-05 09:16:32 +0100 Mike Gabriel
* release 0.99.1.5 (HEAD -> master, tag: 0.99.1.5)
2020-12-07 13:16:13 +0000 Jacque Fresco (7ac42ab)
* Translated using Weblate (Malay)
2020-11-24 06:40:01 +0000 Jakub Fabijan (cec6722)
* Translated using Weblate (Polish)
2020-11-11 18:34:43 +0000 Habib Rohman (b1a0662)
* Translated using Weblate (Indonesian)
2020-10-23 21:41:13 +0000 Adolfo Jayme Barrientos (7469254)
* Translated using Weblate (Spanish)
2020-10-23 21:37:51 +0000 Adolfo Jayme Barrientos (b128ea4)
* Translated using Weblate (Catalan)
2020-09-24 08:22:16 +0000 Lauri Virtanen (a33cee4)
* Translated using Weblate (Finnish)
2020-09-21 03:12:45 +0000 Kornelijus Tvarijanavičius (d40b6ae)
* Translated using Weblate (Lithuanian)
2020-09-18 13:07:06 +0000 Satnam S Virdi (e6af2c9)
* Translated using Weblate (Punjabi)
2020-09-14 23:35:51 +0000 Doma Gergő (4479c15)
* Translated using Weblate (Hungarian)
2020-09-12 21:09:13 +0000 ssantos (db07aca)
* Translated using Weblate (Portuguese)
2020-09-13 17:13:03 +0000 Nathan (34d16a4)
* Translated using Weblate (French)
2020-09-08 06:55:46 +0000 Suraj (ad92403)
* Translated using Weblate (Malayalam)
2020-09-04 06:47:09 +0000 antuketot76 (a4e4c5f)
* Translated using Weblate (Malay)
2020-08-27 19:47:13 +0000 Quentin PAGÈS (aecd5be)
* Translated using Weblate (Occitan)
2020-08-29 20:54:21 +0000 oo nth (4bb43cf)
* Translated using Weblate (Hindi)
2020-08-23 16:07:04 +0200 Mike Gabriel (e64eafd)
* debian/control: The bin:pkg is a linux-any package (as we require
systemd at runtime).
2020-08-23 16:00:16 +0200 Mike Gabriel (36d9d07)
* Drop all distro-theming packages and dependencies and default to
Blue-Submarine GTK theme, Adwaita Icon theme and 'Sans'
font.
2020-08-20 10:06:57 +0000 Satnam S Virdi (b95bf57)
* Translated using Weblate (Punjabi)
2020-08-07 19:18:18 +0000 Oğuz Ersen (bd791c2)
* Translated using Weblate (Turkish)
2020-07-30 03:52:53 +0000 Sithu Aung (a6fb951)
* Translated using Weblate (Burmese)
2020-07-28 08:11:11 +0000 Kristjan Räts (e3f879f)
* Translated using Weblate (Estonian)
2020-07-23 10:34:30 +0000 lingcas (9bd4d4b)
* Translated using Weblate (Chinese (Traditional, Hong Kong))
2020-07-19 14:41:46 +0000 ssantos (d6a91f6)
* Translated using Weblate (Portuguese)
2020-07-14 15:01:52 +0000 TA (46d63a5)
* Translated using Weblate (Indonesian)
2020-07-08 12:17:25 +0000 Abdul Khan (7a35bbd)
* Translated using Weblate (Hindi)
2020-06-21 17:32:08 +0000 CHAIWIT PHONKHEN (c5db576)
* Translated using Weblate (Thai)
2020-06-18 04:00:28 +0000 Gaurav Kumar (d967b3f)
* Translated using Weblate (Hindi)
2020-05-30 09:01:21 +0000 Pratchaya Chatuphian (d4cf42c)
* Translated using Weblate (Thai)
2020-05-15 01:07:19 +0000 RIZWAN AHMAD (ca2c104)
* Translated using Weblate (Hindi)
2020-05-14 22:31:01 +0000 Andrius Majauskas (4377379)
* Translated using Weblate (Lithuanian)
2020-05-08 03:44:26 +0000 Abdusalam (27f32db)
* Translated using Weblate (Uyghur)
2020-04-03 17:25:53 +0000 Allan Nordhøy (d5ad59b)
* Translated using Weblate (Nepali)
2020-03-23 11:44:16 +0000 Buescu Bogdan (0683b69)
* Translated using Weblate (Romanian)
2020-03-17 16:18:58 +0000 Satnam S Virdi (5d8e67c)
* Translated using Weblate (Punjabi)
2020-03-13 09:49:10 +0000 Hemanta Sharma (a91297d)
* Translated using Weblate (Nepali)
2020-03-02 17:13:50 +0000 พัชรพล ผาริวงศ์ (a87b542)
* Translated using Weblate (Thai)
2020-02-25 14:38:43 +0000 f0roots (b070191)
* Translated using Weblate (Romanian)
2020-02-19 17:15:47 +0000 Michal Biesiada (957d2d1)
* Translated using Weblate (Polish)
2020-02-19 04:18:01 +0000 Nirmal Manoj C (375f0e8)
* Translated using Weblate (Malayalam)
2020-02-20 13:32:33 +0100 Mike Gabriel (69708cd)
* Revert "Translated using Weblate (Latin)"
2020-02-07 09:55:56 +0000 bughuntermert (f55dfd6)
* Translated using Weblate (Latin)
2020-02-03 23:11:47 +0000 Garreciq (d23a7a4)
* Translated using Weblate (Polish)
2020-02-01 15:10:10 +0000 Guntitat Sawadwuthikul (73a1190)
* Translated using Weblate (Thai)
2020-01-19 08:53:01 +0000 آراز (5b9c13b)
* Translated using Weblate (Persian)
2020-01-10 18:01:18 +0000 ihaveapiece (f88d2e9)
* Translated using Weblate (Persian)
2020-01-08 14:52:51 +0000 Manuela Silva (9de9396)
* Translated using Weblate (Portuguese)
2020-01-07 10:10:50 +0000 Jun Hyung Shin (cf82da9)
* Translated using Weblate (Korean)
2020-01-05 18:24:21 +0000 Prachi Joshi (764e1ca)
* Translated using Weblate (Marathi)
2020-01-02 01:20:13 +0000 Mareks Dunkurs (c4c61a3)
* Translated using Weblate (Latvian)
2019-12-31 13:29:08 +0000 Milo Ivir (938542f)
* Translated using Weblate (Croatian)
2019-12-30 22:35:22 +0000 Sveinn í Felli (05829ca)
* Translated using Weblate (Icelandic)
2019-12-28 17:44:14 +0000 Prachi Joshi (32755b8)
* Translated using Weblate (Marathi)
2019-12-27 18:11:33 +0000 Prachi Joshi (46b6800)
* Translated using Weblate (Marathi)
2019-12-27 17:00:36 +0000 Prachi Joshi (ff023ca)
* Translated using Weblate (Marathi)
2019-12-21 15:00:49 +0000 Prachi Joshi (112e213)
* Translated using Weblate (Marathi)
2019-12-02 22:14:06 +0100 Mike Gabriel (8b23c20)
* release 0.99.1.4 (tag: 0.99.1.4)
2019-12-02 20:02:38 +0100 Mike Gabriel (28202f9)
* Fix 'Creation method of abstract class cannot be public.' in
GreeterList class.
2019-11-28 05:32:54 +0000 Saroj Dhakal (fb7bace)
* Translated using Weblate (Nepali)
2019-11-13 11:23:01 +0000 Oto Zars (7f09744)
* Translated using Weblate (Latvian)
2019-11-09 07:09:28 +0000 Tuomas Lähteenmäki (57ddfd4)
* Translated using Weblate (Finnish)
2019-11-02 14:18:17 +0000 Allan Nordhøy (629d44f)
* Translated using Weblate (Albanian)
2019-10-29 13:40:10 +0000 Arsen Shehi (7bdd512)
* Translated using Weblate (Albanian)
2019-10-23 14:38:15 +0000 Mattias Münster (3a31d29)
* Translated using Weblate (Swedish)
2019-10-14 16:40:53 +0000 ศักดิ์นรินทร์ ชาติทอง (6147e0a)
* Translated using Weblate (Thai)
2019-10-10 12:01:18 +0000 Jennifer (15feb99)
* Translated using Weblate (Dutch)
2019-10-07 22:38:37 +0000 BennyBeat (2a05006)
* Translated using Weblate (Catalan)
2019-10-04 02:05:24 +0000 JaewonLee0217 (1cd7183)
* Translated using Weblate (Korean)
2019-10-01 03:38:47 +0000 김상남 (ebe04fa)
* Translated using Weblate (Korean)
2019-09-28 08:11:25 +0000 yzqzss (a998ad4)
* Translated using Weblate (Chinese (Simplified))
2019-09-28 11:58:20 +0000 Juri Grabowski (c509ed0)
* Translated using Weblate (Russian)
2019-09-07 22:13:14 +0000 thami simo (f7e37f4)
* Translated using Weblate (Arabic)
2019-08-27 02:45:20 +0000 Swann Martinet (e792847)
* Translated using Weblate (English (Canada))
2019-08-27 02:50:37 +0000 Swann Martinet (b974ee0)
* Translated using Weblate (English (Australia))
2019-08-27 11:04:02 +0000 leela (f592d18)
* Translated using Weblate (Uzbek)
2019-08-27 02:41:03 +0000 Swann Martinet (d4a1d9d)
* Translated using Weblate (French)
2019-08-27 02:55:36 +0000 Swann Martinet (a4f3f4e)
* Translated using Weblate (Italian)
2019-08-27 11:05:19 +0000 leela (692424b)
* Translated using Weblate (Catalan)
2019-08-27 11:01:55 +0000 leela (362738b)
* Translated using Weblate (Bosnian)
2019-08-27 11:03:25 +0000 leela (bfd6d93)
* Translated using Weblate (Basque)
2019-08-27 02:44:11 +0000 Swann Martinet (6cebf1f)
* Translated using Weblate (German)
2019-08-27 11:01:05 +0000 leela (7c4ea33)
* Translated using Weblate (Thai)
2019-08-27 11:02:34 +0000 leela (536dab5)
* Translated using Weblate (Gaelic)
2019-08-27 11:04:40 +0000 leela (af77119)
* Translated using Weblate (Valencian)
2019-08-25 12:23:59 +0000 leela (6f51cf1)
* Translated using Weblate (Marathi)
2019-08-22 23:00:31 +0000 Swann Martinet (a38ff99)
* Translated using Weblate (French (Canada))
2019-08-22 22:54:09 +0000 Swann Martinet (5baea11)
* Translated using Weblate (French)
2019-08-23 01:46:32 +0000 leela (5d3d996)
* Translated using Weblate (Hindi)
2019-08-22 23:20:11 +0000 Swann Martinet (ee12a93)
* Translated using Weblate (English (United Kingdom))
2019-08-20 12:51:00 +0000 Adolfo Jayme Barrientos (0cb5ebf)
* Translated using Weblate (Spanish)
2019-08-16 15:37:44 +0000 Elizabeth Sherrock (974d88e)
* Translated using Weblate (Chinese (Simplified))
2019-08-10 06:56:21 +0000 Sourav Jha (fdb4e05)
* Translated using Weblate (Hindi)
2019-08-04 11:28:10 +0000 Matúš Baňas (88b01eb)
* Translated using Weblate (Slovak)
2019-08-01 14:55:51 +0000 saeid porhosein (d649d26)
* Translated using Weblate (Persian)
2019-08-01 15:00:28 +0000 saeid porhosein (ed86167)
* Translated using Weblate (English (United Kingdom))
2019-07-26 15:12:42 +0000 yinaroh@all-mail.net (ef267a7)
* Translated using Weblate (Chinese (Simplified))
2019-07-25 19:57:17 +0000 Alba Kaydus (cde6f47)
* Translated using Weblate (English (United Kingdom))
2019-07-22 21:21:07 +0000 Pierre Soubourou (5f9b0fa)
* Translated using Weblate (Esperanto)
2019-07-25 19:27:12 +0000 Alba Kaydus (983f6b7)
* Translated using Weblate (Filipino)
2019-07-21 16:34:14 +0000 Pierre Soubourou (61ea955)
* Translated using Weblate (Esperanto)
2019-07-14 13:54:26 +0000 Ryo Nakano (80d67d4)
* Translated using Weblate (Japanese)
2019-07-09 13:46:37 +0000 Ali Avcı (17d7e9f)
* Translated using Weblate (Turkish)
2019-07-01 19:15:18 +0000 Elizabeth Sherrock (63042b4)
* Translated using Weblate (Chinese (Simplified))
2019-06-05 07:43:13 +0000 Nader Jafari (84a1d45)
* Translated using Weblate (Persian)
2019-06-11 20:28:28 +0000 Lucas Ayala (797d81f)
* Translated using Weblate (Spanish)
2019-06-05 18:41:11 +0000 Sveinn í Felli (77b8ed1)
* Translated using Weblate (Icelandic)
2019-05-21 11:52:51 +0000 THANOS SIOURDAKIS (ad0e7fa)
* Translated using Weblate (Greek)
2019-05-14 17:50:21 +0000 John Rey Basilio (35532bf)
* Translated using Weblate (Filipino)
2019-04-28 12:30:35 +0000 gvlfm78 (0e872f2)
* Translated using Weblate (Italian)
2019-04-26 07:17:37 +0000 Syahmin Sukhairi (cad5644)
* Translated using Weblate (Indonesian)
2019-04-19 20:56:16 +0000 Rui Mendes (86d2d37)
* Translated using Weblate (Portuguese (Brazil))
2019-04-19 20:53:25 +0000 Rui Mendes (0e228e3)
* Translated using Weblate (Portuguese)
2019-04-17 21:26:15 +0000 Jos Wolfkamp (540f8a2)
* Translated using Weblate (Dutch)
2019-03-17 21:23:02 +0100 Mike Gabriel (fb57bc0)
* release 0.99.1.3 (tag: 0.99.1.3)
2019-03-04 00:56:26 +0000 Pierluigi Ghinello (b25b6f2)
* Translated using Weblate (Italian)
2019-02-24 08:52:01 +0000 Yaron Shahrabani (5ba0434)
* Translated using Weblate (Hebrew)
2019-02-23 07:09:04 +0000 Doma Gergő (8341e2d)
* Translated using Weblate (Hungarian)
2019-02-19 22:30:41 +0000 Sandra M (9e3d9a7)
* Translated using Weblate (Valencian)
2019-03-17 21:15:49 +0100 Mike Gabriel (687a823)
* update NEWS for 0.99.1.2 (we obviously forgot that...)
2019-03-17 21:06:05 +0100 Mike Gabriel (2d9cdd0)
* release 0.99.1.2 (tag: 0.99.1.2)
2019-03-17 19:09:09 +0100 Mike Gabriel (fbced2e)
* src/arctica-greeter.vala: Use set_decorated(false) on main_window,
rather than fullscreen(). With fullscreen() Arctica
Greeter's main window gets only shown on the primary
monitor and one cannot let the login box follow the
pointing device to the active monitor anymore.
2019-03-17 18:19:09 +0100 Mike Gabriel (3319cd2)
*
debian/30_arctica-greeter-theme-debian-futureprototype.gschema.override:
Fix typo in SVG background image path.
2019-03-17 17:25:37 +0100 Mike Gabriel (7aab296)
* Remove mlockall.
2019-03-17 17:16:28 +0100 Mike Gabriel (2a09380)
* Merge branch 'jbicha-vala44'
2019-03-06 13:41:20 -0500 Rico Tzschichholz (88f6c01)
* Fix build with vala 0.44
2019-02-14 16:47:16 +0100 Mike Gabriel (88df37b)
* debian/*.gschema.override: Use <desktop-theme>/login/background.svg
as background image. Works on stretch and buster alike.
2019-02-12 23:19:53 +0100 Mike Gabriel (50ee97a)
* debian/control: Typo fix in LONG_DESCRIPTION. Spotted by Thomas
Vincent.
2019-02-06 11:08:45 +0100 Mike Gabriel (37571f3)
* release 0.99.1.1 (tag: 0.99.1.1)
2019-02-06 11:02:38 +0100 Mike Gabriel (900dcfb)
* update NEWS for 0.99.1.0 (we obviously forgot that...)
2019-01-26 08:36:00 +0000 ssantos (97fc865)
* Translated using Weblate (Portuguese)
2019-01-11 16:13:31 +0000 Louies (7b8f0f2)
* Translated using Weblate (Chinese (Traditional))
2018-12-25 07:39:29 +0000 Yadhesh Assassin (9bdd327)
* Translated using Weblate (Tamil)
2018-12-11 04:24:14 +0000 xhesikab (cc33c95)
* Translated using Weblate (Albanian)
2018-12-02 07:34:26 +0000 Ryo Nakano (bdf931c)
* Translated using Weblate (Japanese)
2018-11-22 20:15:41 +0000 ssantos (5f9e664)
* Translated using Weblate (Portuguese)
2018-11-23 12:20:36 +0000 Ryo Nakano (54ad9db)
* Translated using Weblate (Japanese)
2018-11-15 12:26:51 +0000 Oto Zars (3e378ad)
* Translated using Weblate (Latvian)
2018-11-13 11:00:00 +0000 Ryo Nakano (6cff804)
* Translated using Weblate (Japanese)
2018-11-12 12:44:18 +0000 rt (fbf6bd5)
* Translated using Weblate (Japanese)
2018-11-03 17:02:04 +0000 Kamen (c27ca56)
* Translated using Weblate (Bulgarian)
2018-10-03 11:57:05 +0000 scootergrisen (2aa6dc4)
* Translated using Weblate (Danish)
2018-10-01 00:58:23 +0000 Kristoffer Grundström (8bc3cb7)
* Translated using Weblate (Swedish)
2018-09-27 12:58:20 +0000 Володимир Бриняк (e6a07d4)
* Translated using Weblate (Ukrainian)
2018-09-25 20:47:09 +0000 A BOUZINAC (2d271a7)
* Translated using Weblate (French)
2018-09-23 20:04:47 +0000 Himanshu Awasthi (d25e979)
* Translated using Weblate (Hindi)
2019-02-06 10:50:43 +0100 Mike Gabriel (d2339d9)
* Debian artwork: Move Debian logos into separate bin:pkgs.
2019-02-06 10:22:23 +0100 Mike Gabriel (a6bc3d4)
* debian/arctica-greeter-theme-debian.install: Drop logo file. No
more logo when the generic active theme from Debian gets
used.
2019-02-06 10:20:45 +0100 Mike Gabriel (30a05b6)
* debian/rules: Switch to dh_missing override for --fail-missing
post-install check.
2019-02-06 10:16:38 +0100 Mike Gabriel (b22daed)
* Debian artwork: Provide two new bin:pkgs: Debian 9 Themes
(softwaves) and Debian 10 Themes (futurePrototype). The
default Debian theme will use the Debian system's active
theme.
2019-01-23 12:20:42 +0100 Mike Gabriel (cbe181c)
* GSchema: Prepend a two-digit number to the override name of
arctica-greeter-theme-ubuntumate.
2019-01-23 12:19:10 +0100 Mike Gabriel (b917f0f)
* GSchema: Prepend a two-digit number to the override name of
arctica-greeter-theme-debian.
2018-11-26 13:37:46 +0100 Cobinja (96fc2ca)
* Fix background if image file is not readable.
2018-11-26 13:33:06 +0100 Mike Gabriel (ad14c13)
* arctica-greeter-theme-ubuntumate: Add theme for Ubuntu MATE (cave:
not installable on Debian).
2018-11-19 12:47:02 +0100 Mike Gabriel (909a90a)
* debian/control: Update B-R libayatana-ido3-0.4-dev ->
libayatana-ido3-dev.
2018-09-11 18:26:32 +0000 Mike Gabriel (0771250)
* Translated using Weblate (German)
2018-09-06 20:18:47 +0000 mohsen sorny (bbb6f88)
* Translated using Weblate (Persian)
2018-09-05 04:13:03 +0000 mohamad farid (b4284cc)
* Translated using Weblate (Malay)
2018-08-31 12:12:28 +0000 Yaron Shahrabani (e2095b3)
* Translated using Weblate (Hebrew)
2018-08-29 21:29:40 +0000 WaldiS (135b12d)
* Translated using Weblate (Polish)
2018-08-28 13:33:12 +0000 Allan Nordhøy (ad4e62d)
* Translated using Weblate (Norwegian Bokmål)
2018-08-23 20:53:53 +0000 Viktar Vauchkevich (ef04927)
* Translated using Weblate (Belarusian)
2018-08-22 04:23:05 +0000 Kristjan Räts (da364e3)
* Translated using Weblate (Estonian)
2018-08-18 08:48:26 +0000 OIS (fdb8c84)
* Translated using Weblate (Occidental)
2018-08-18 09:12:50 +0000 OIS (bcf54c8)
* Translated using Weblate (Russian)
2018-09-06 08:00:46 +0200 Mike Gabriel (4d0870b)
* src/background.vala: Fix for previous commit. Vala needs a bool
expression in if-clauses.
2018-08-22 12:40:41 +0200 Mike Gabriel (db7f409)
* src/background.vala: Fix FTBFS against Vala 0.42. This introduces a
slight behaviour change compared to the previous version,
but actually in a direction we want it to be.
2018-08-17 08:05:31 +0000 Mike Gabriel (be4ea18)
* Translated using Weblate (German)
2018-08-17 09:59:49 +0200 Mike Gabriel (27e46fc)
* translations: Update translation files.
2018-08-17 09:58:13 +0200 Mike Gabriel (7446652)
* translations: Add Occidental (ie) language as requested by OIS on
Weblate.
2018-08-09 04:48:21 +0000 deebeepea (58d308e)
* Translated using Weblate (Filipino)
2018-08-08 19:42:59 +0000 Filip Hron (c0ad68e)
* Translated using Weblate (Czech)
2018-08-08 16:38:31 +0000 Dharmendra (1988c9c)
* Translated using Weblate (Gujarati)
2018-07-19 13:47:03 +0000 Dovydas Jakas (2431ea1)
* Translated using Weblate (Lithuanian)
2018-07-19 13:42:46 +0000 Dovydas Jakas (2c1e18e)
* Translated using Weblate (Lithuanian)
2018-07-10 15:26:26 +0000 Srichon Buntarigwong (fecfed1)
* Translated using Weblate (Thai)
2018-06-29 07:50:57 +0000 kong (fc915fa)
* Translated using Weblate (Thai)
2018-06-17 22:40:46 +0000 Calin Sopterean (c780d95)
* Translated using Weblate (Romanian)
2018-06-18 06:23:34 +0000 Doma Gergő (5a3edd5)
* Translated using Weblate (Magyar)
2018-06-12 13:20:26 +0000 whr (d4d1c40)
* Translated using Weblate (Chinese (Simplified))
2018-06-11 16:43:04 +0000 Ilyas Bakirov (f83eba6)
* Translated using Weblate (Kyrgyz)
2018-06-07 01:17:52 +0000 ۋولقان (ea6df0e)
* Translated using Weblate (Uyghur)
2018-06-07 00:51:43 +0000 Nureli (41bbe5d)
* Translated using Weblate (Uyghur)
2018-05-30 19:43:41 +0000 Aashish Chenna (93be2e3)
* Translated using Weblate (Telugu)
2018-05-29 17:20:07 +0000 Aashish Chenna (22f02b3)
* Translated using Weblate (Telugu)
2018-05-25 14:12:13 +0000 Jacky Blois (7ab88fa)
* Translated using Weblate (French)
2018-05-17 21:52:13 +0000 Nicola Lombardi (b96ea76)
* Translated using Weblate (Italian)
2018-05-17 21:44:58 +0000 Nicola Lombardi (50f94e1)
* Translated using Weblate (Italian)
2018-05-10 21:54:34 +0000 Gayathri Das (30c8dd6)
* Translated using Weblate (Hindi)
2018-04-27 22:45:21 +0000 antuketot76 (c85bde6)
* Translated using Weblate (Malay)
2018-04-27 22:27:39 +0000 antuketot76 (192a56c)
* Translated using Weblate (Malay)
2018-06-21 13:34:50 +0000 Mike Gabriel (b64aabd)
* Posix.Signal.<SIG>: Provide old-style Posix.SIG<SIG> API calls if
built with Vala API version << 0.40. (Fixes FTBFS on
Debian 9).
2018-06-16 23:35:22 +0200 Mike Gabriel (b12c6d9)
* Use Posix.Signal.* rather than Posix.SIG*. (Vala 0.40
deprecations).
2018-06-16 22:36:15 +0200 Cobinja (d1caee5)
* Add option to show GUI on a specific monitor
2018-06-16 22:25:26 +0200 Victor Kareh (85ec476)
* arctica-greeter-check-hidpi: Fix HiDPI auto-detection.
2018-06-16 22:24:39 +0200 Mike Gabriel (cc72215)
* debian/control: Add D: marco.
2018-06-16 20:22:13 +0200 Mike Gabriel (9b3526d)
* src/arctica-greeter.vala: Have MATE's marco WM as window manager
for Arctica Greeter. Makes handling windows opened via
some of the indicators much more organic.
2018-05-11 20:43:15 +0200 Mike Gabriel (606273e)
* src/user-list.vala: Rename gsettings key remote-service-fqdn to
remote-service-configure-uri. Support an empty string as
value and show a more intelligent message if it's empty.
2018-05-11 16:48:38 +0200 Mike Gabriel (b54ac1c)
* Remote Logon configuration support: session name is now
"remoteconfigure".
2018-05-08 23:38:30 +0200 Mike Gabriel (f9c678d)
* user-list.vala: fix missing parentheses from previous commits
2018-05-08 09:21:55 +0200 Mike Gabriel (411bbb6)
* src/user-list.vala: Rephrase username field text to "Account ID"
(can be email or user name).
2018-05-08 09:15:31 +0200 Mike Gabriel (a27d1f0)
* src/user-list.vala: Hide "Set up..." button, if uccsconfigure is a
non-supported remote login session.
2018-05-08 09:09:29 +0200 Mike Gabriel (6ad8446)
* src/user-list.vala: Mention X2Go in remote logon help / setup hint.
2018-05-07 15:45:15 +0200 Mike Gabriel (97e48ff)
* release 0.99.1.0 (tag: 0.99.1.0)
2018-05-07 11:35:47 +0200 Mike Gabriel (da0cd95)
* arctica-greeter-guest-account-script.in: Copy site guest session
skel over dist guest session skel, so that the site admin
is in fact able to override some settings in the dist
skeleton that we provide.
2018-05-06 01:39:57 +0200 Mike Gabriel (3cd3dd0)
* src/user-list.vala: Add debugging to remote_login PAM prompt
responding.
2018-05-04 22:14:00 +0200 Mike Gabriel (879b9e6)
* src/user-list.vala: Obtain PAM_FREERDP2 prompts from public API in
security/pam-freerdp2.h.
2018-05-04 15:25:46 +0200 Mike Gabriel (eed9d64)
* src/user-list.vala: Obtain PAM_X2GO prompts from public API in
security/pam.x2go.h.
2018-05-04 14:02:18 +0200 Mike Gabriel (9ff8e09)
* src/user-list.vala: Follow-up fix for previous commit.
2018-05-04 13:02:19 +0200 Mike Gabriel (91b8cbd)
* Use RLS/pam_x2go.so API v5. The PAM prompt now queries "remote
command:", not "x2gosession:".
2018-04-16 16:29:55 +0200 Mike Gabriel (df4800a)
* debian/control: Drop from B-D: libgnome-desktop-3-dev. Not needed.
2018-03-15 02:31:35 +0100 Björn Esser (897df0e)
* main-window: Calculate the really needed screen size properly
2018-03-16 14:44:32 +0100 Mike Gabriel (cfec4f6)
* release 0.99.0.4 (tag: 0.99.0.4)
2018-03-16 14:17:05 +0100 Mike Gabriel (8aba383)
* src/arctica-greeter.vala: Trigger UPower activation when greeter
starts.
2018-03-16 14:16:14 +0100 Mike Gabriel (76f2e65)
* HiDPI: Do not enable it in test-mode.
2018-03-16 13:52:28 +0100 Mike Gabriel (9e025f2)
* debian/*.install: Correctly install the guest session script man
page into the guest session bin:pkg.
2018-03-16 12:37:45 +0100 Mike Gabriel (7ddfa06)
* Port HiDPI support from slick-greeter.
2018-03-16 12:00:30 +0100 Mike Gabriel (48db8ca)
* src/{user-list.vala,user-prompt-box.vala}: Fix segfault in newly
introduced debug message.
2018-03-15 07:59:17 +0100 Robert Ancell (1e59b6a)
* Use Ubuntu logo for Unity session (has no since no longer Ubuntu
default)
2018-03-12 21:10:45 +0100 Michael Webster (5c611a8)
* src/arctica-greeter.vala: Clear the AT_SPI_BUS property on the root
window on exit, so the user session components won't fail
to connect.
2018-03-12 21:07:48 +0100 Ikey Doherty (bda58f0)
* greeter: Avoid expensive Python calls when it isn't needed.
2018-02-28 10:59:19 +0100 Mike Gabriel (177dab0)
* post-release update of debian/changelog
2018-02-28 10:14:24 +0100 Mike Gabriel (6777383)
* release 0.99.0.3 (tag: 0.99.0.3)
2018-02-20 11:36:29 +0000 Veselin Georgiev (3c8b7e5)
* Translated using Weblate (Bulgarian)
2018-02-15 10:03:26 +0000 Ko Phyo (94ff0d8)
* Translated using Weblate (Burmese)
2018-02-11 00:55:34 +0000 Rafael Henrique Mendes de Oliv (3dfb9d7)
* Translated using Weblate (Portuguese (Brazil))
2018-02-11 00:54:45 +0000 Rafael Henrique Mendes de Oliv (8f85b15)
* Translated using Weblate (Portuguese (Brazil))
2018-02-09 19:31:11 +0000 Joel Vinay Kumar (965ac26)
* Translated using Weblate (Telugu)
2018-02-04 15:04:33 +0000 Michal Čihař (b94becf)
* Translated using Weblate (Telugu)
2018-02-03 17:32:50 +0000 scootergrisen (2d86552)
* Translated using Weblate (Danish)
2018-01-30 21:05:43 +0000 Марс Ямбар (b30f69a)
* Translated using Weblate (Ukrainian)
2018-01-29 05:49:46 +0000 Joel Vinay Kumar (d4ece44)
* Translated using Weblate (Telugu)
2018-01-27 08:57:44 +0000 Mutaz Tayyeb AbuSaad (5131b49)
* Translated using Weblate (Arabic)
2018-01-27 08:50:59 +0000 Mutaz Tayyeb AbuSaad (0e921da)
* Translated using Weblate (Arabic)
2018-01-24 09:16:22 +0000 Sveinn í Felli (3073113)
* Translated using Weblate (Icelandic)
2018-01-22 20:21:35 +0000 Марс Ямбар (c50983a)
* Translated using Weblate (Ukrainian)
2018-01-04 20:22:29 +0000 Sebastian Rasmussen (7473640)
* Translated using Weblate (Swedish)
2018-01-04 15:32:06 +0000 Tamir Azaz (1e72c52)
* Translated using Weblate (Slovenian)
2018-02-27 19:26:26 +0100 Mike Gabriel (e13e0d9)
* Merge branch 'jbicha-vala39'