aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 7bcc77d0a0b1a8c75f90a660046b16d01d604dab (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
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'

2018-02-27 09:06:23 -0500 Jeremy Bicha (3b79b4b)

	* Fix build with vala 0.39

2017-12-07 11:24:13 +0100 Mike Gabriel (a1266d6)

	* debian/control: Let's recommend the new FreeRDPv2 version of
          lightdm-remote-session-freerdp(2).

2017-12-07 08:53:43 +0100 Mike Gabriel (f22b7af)

	* White-space cleanup. Removing superfluous EOL white-spaces.

2017-11-29 18:22:14 +0000 Juan Picca (c855090)

	* Translated using Weblate (Spanish)

2017-11-29 13:38:11 +0100 Mike Gabriel (174191b)

	* update-po(t).sh: Handle .xml and .ini files gracefully.

2017-11-28 18:22:53 +0100 Mike Gabriel (a313875)

	* release 0.99.0.2 (tag: 0.99.0.2)

2017-11-28 18:22:07 +0100 Mike Gabriel (3537ac6)

	* debian/copyright: Update copyright attributions for new man page.

2017-11-28 18:02:56 +0100 Mike Gabriel (96b5cac)

	* data/arctica-greeter.1: Improve (not much, but a little) the
          arctica-greeter man page.

2017-11-28 18:02:25 +0100 Mike Gabriel (9ef87a0)

	* arctica-greeter-guest-account-script: Add brief man page for the
          guest account creation script.

2017-11-28 17:17:21 +0100 Mike Gabriel (1a2635a)

	* More places to fix for the guest session script renaming.

2017-11-28 17:09:57 +0100 Mike Gabriel (33f57b4)

	* Update translation files.

2017-11-17 23:24:26 +0000 Allan Nordhøy (27c02f4)

	* Translated using Weblate (Norwegian Bokmål)

2017-11-28 16:46:35 +0100 Mike Gabriel (acd892c)

	* Rename various scripts, so that they have 'arctica-greeter' in
          their file name (and not just 'arctica').

2017-11-28 16:34:39 +0100 Mike Gabriel (4fe6467)

	* debian/control: Bump Standards-Version: to 4.1.1. No changes
          needed.

2017-11-28 16:10:47 +0100 Mike Gabriel (a1f2ee0)

	* debian/copyright: Add machine-generated copyright.in file.

2017-11-28 16:10:16 +0100 Mike Gabriel (dec42ab)

	* debian/copyright: Update copyright attributions. Appropriate for
          official Debian package.

2017-11-28 15:09:15 +0100 Mike Gabriel (55f0154)

	* data/badges/COPYING.badges: Add attributiong for desktop session
          badges.

2017-11-28 14:52:54 +0100 Mike Gabriel (82e9fb7)

	* Update files update-po(t).sh, includes added license headers.

2017-11-28 14:51:58 +0100 Mike Gabriel (5a19212)

	* no Transifex anymore, we have moved to Weblate...

2017-10-30 09:40:21 +0100 Mike Gabriel (6f8134a)

	* Revert "a11y: Use HighContrast rather than HighContrastInverse."

2017-10-30 09:19:49 +0100 Mike Gabriel (ce53a04)

	* debian/control: Typo fix in D of arctica-greeter (comma vs. dot).

2017-10-26 15:11:55 +0200 Mike Gabriel (a7472c9)

	* debian/control: Add to D (arctica-greeter): x11-xkb-utils (for
          setxkbmap).

2017-10-26 15:10:56 +0200 Mike Gabriel (64719ae)

	* arctica-greeter-set-keyboard-layout: Add encoding tag to the
          header.

2017-10-26 15:06:40 +0200 Mike Gabriel (5791c16)

	* arctica-greeter-set-keyboard-layout: Add license header and
          copyright holder. Assume same license as in COPYING file.

2017-10-26 14:51:25 +0200 Clement Lefebvre (6d087e7)

	* a11y: Use HighContrast rather than HighContrastInverse.

2017-10-26 14:43:24 +0200 Mike Gabriel (818a6c0)

	* debian/control: Switch to Arch: any for bin:pkg
          arctica-greeter-guest-session.

2017-10-26 14:30:54 +0200 Mike Gabriel (164a06e)

	* Explicitly set the keyboard layout

2017-10-26 14:17:27 +0200 Clement Lefebvre (f192e26)

	* Add support for numlockx.

2017-10-26 14:14:40 +0200 Mike Gabriel (0f7e41f)

	* src/settings.vala: White-space cleanup.

2017-10-26 14:05:59 +0200 Mike Gabriel (b78391b)

	* copyright holdership: Add myself as copyright holder and author to
          file headers of files I have worked on.

2017-10-26 13:47:01 +0200 Mike Gabriel (afdb9fc)

	* src/arctica-greeter.vala: Fix debug message, we use MSD, not USD.

2017-10-25 19:43:48 +0200 Mike Gabriel (b6e1341)

	* src/user-list.vala: Add debug message providing info about added
          users / labels.

2017-10-23 23:33:58 +0200 Mike Gabriel (32ffe2d)

	* release 0.99.0.1 (tag: 0.99.0.1)

2017-10-23 23:18:06 +0200 Mike Gabriel (5ad6cbc)

	* src/user-list.vala: Use directory enumerator for getting a random
          number of background image. Check if the returned
          directory entry is not a sub-directory. If so, then skip
          it.

2017-10-23 23:13:02 +0200 Michael Webster (0003057)

	* background: Don't realize() this immediately - only start the image
          gathering thread during initialization.

2017-10-23 22:55:17 +0200 Mike Gabriel (3bc7cc6)

	* data/org.ArcticaProject.arctica-greeter.gschema.xml: Fix schema
          path.

2017-10-16 08:19:32 +0000 Michal Čihař (af13ba7)

	* Translated using Weblate (German)

2017-10-07 20:16:59 +0000 Kristjan Räts (5575cbe)

	* Translated using Weblate (Estonian)

2017-10-03 09:48:15 +0000 developerchan1 (55cbf1c)

	* Translated using Weblate (Indonesian)

2017-10-02 05:17:32 +0000 Marc Schöni (0459355)

	* Translated using Weblate (German)

2017-10-02 05:16:01 +0000 Marc Schöni (78f28e2)

	* Translated using Weblate (German)

2017-09-29 18:04:44 +0000 Anders Jonsson (c41f749)

	* Translated using Weblate (Swedish)

2017-09-16 03:14:46 +0000 Allan Nordhøy (f41055e)

	* Translated using Weblate (Norwegian Bokmål)

2017-09-08 09:51:50 +0000 ប៉ុកណូ រ៉ូយ៉ាល់ (4256251)

	* Translated using Weblate (Central Khmer)

2017-08-29 10:02:10 +0000 Jan Poulsen (ceb047d)

	* Translated using Weblate (Danish)

2017-08-29 09:11:07 +0000 Kjetil Fleten (c58bb1d)

	* Translated using Weblate (Danish)

2017-08-21 15:12:30 +0000 Володимир Бриняк (2a3ab44)

	* Translated using Weblate (Ukrainian)

2017-08-13 17:47:50 +0000 Viktar Vauchkevich (d6fe6df)

	* Translated using Weblate (Belarusian)

2017-07-21 16:24:25 +0200 Mike Gabriel (2183709)

	* po/: Update po/.po files from newly generated arctica-greeter.pot
          file.

2017-07-21 16:24:05 +0200 Mike Gabriel (c14bc0a)

	* update-po.sh: Add simple script to update po/*.po files.

2017-07-21 16:23:02 +0200 Mike Gabriel (9d50a7d)

	* po/: Update arctica-greeter.pot file.

2017-06-20 23:48:39 +0200 Mike Gabriel (a55e300)

	* src/arctica-greeter.vala: Don't load any external application when
          launched in test mode.

2017-06-20 23:48:12 +0200 Mike Gabriel (123a23f)

	* src/menubar.vala: Disable all indicators in test mode.

2017-06-20 23:17:44 +0200 Mike Gabriel (d297788)

	* src/settings_daemon.vala: sd_pid is a private property.

2017-06-20 21:43:56 +0200 Mike Gabriel (dded5f2)

	* src/greeter-list.vala: Move get_active_entry() functionality from
          ListDBusInterface to the GreeterList class.

2017-06-20 15:53:01 +0200 Clement Lefebvre (4216b5d)

	* Fix Arctica Greeter preventing DE from applying cursor theme/size.

2017-06-20 15:42:34 +0200 Clement Lefebvre (31ce82f)

	* Don't draw the background before starting the session.

2017-06-20 15:37:30 +0200 Mike Gabriel (d14e5d8)

	* rebase debug PID

2017-06-20 15:36:56 +0200 Mike Gabriel (dcf9702)

	* src/menubar.vala: Silence build warning due to usage call to
          deprecated ensure_style() method.

2017-06-20 15:36:01 +0200 Clement Lefebvre (89876fc)

	* src/background.vala: No runtime warning on empty background image
          filename. Ported from slick-greeter.

2017-06-20 15:33:20 +0200 leigh123linux (b37ceae)

	* Add basic screenshot capability. Ported from slick-greeter.

2017-06-20 15:31:58 +0200 Mike Gabriel (54ff85c)

	* debugging: Print out process PIDs for launched subprocesses.

2017-06-20 15:20:08 +0200 Clement Lefebvre (ba46af1)

	* Add support for validating session names (and proper fallback for
          uninstalled sessions). Ported from slick-greeter.

2017-06-20 14:20:23 +0200 leigh123linux (2fa9791)

	* Work around GTK 3.20's new allocation logic. Ported from
          slick-greeter.

2017-06-20 14:32:18 +0200 Mike Gabriel (196464c)

	* Fix at-spi-bus-launcher path in Fedora (ported and modifed from
          slick-greeter).

2017-06-20 14:19:53 +0200 Mike Gabriel (70a6deb)

	* white-space fix

2017-06-20 13:32:10 +0200 Mike Gabriel (c66157e)

	* debian/rules: Remove duplicate override_dh_install target.

2017-06-20 13:19:56 +0200 Mike Gabriel (399b52b)

	* src/background.vala: Drop logo background.

2017-06-20 12:17:49 +0200 Michael Webster (ae38752)

	* src/arctica-greeter.vala: Disconnect the event filter when the main
          window is destroyed.

2017-06-20 11:28:09 +0200 Michael Webster (d68171e)

	* src/prompt-box.vala: Avoid 'pango_layout_get_cursor_pos: assertion
          'index >= 0 && index <= layout->length' failed' error.

2017-06-20 11:27:44 +0200 Michael Webster (29eb6f8)

	* src/prompt-box.vala: get_preferred_height() ovrride only needed
          with GTK3 >= 3.20.

2017-06-20 11:20:35 +0200 Michael Webster (552dd36)

	* Fix prompt display in gtk3 > 3.20 (ported from slick-greeter)

2017-06-20 10:49:30 +0200 Mike Gabriel (434484b)

	* Move data/*_badge.png to data/badges/ subfolder.

2017-06-20 10:42:38 +0200 leigh123linux (6dea496)

	* menubar clean-up before session start: i.e. kill onboard and orca
          on session startup (ported from slick-greeter).

2017-06-17 10:03:26 +0200 Mike Gabriel (d58721a)

	* Debian Theme: use Debian 9 logo including the version number as is
          for now.

2017-06-16 16:59:46 +0200 Mike Gabriel (b8d4893)

	* New theming bin:package: arctica-greeter-theme-debian.

2017-06-16 16:59:46 +0200 Mike Gabriel (4181e30)

	* New theming bin:package: arctica-greeter-theme-debian.

2017-06-16 16:58:51 +0200 Mike Gabriel (cc5dcc0)

	* src/logo-generator.vala: Make logo-generator more flexible. Allow
          passing-in of output logo's width and height. Fix placing
          of version string.

2017-06-16 14:24:19 +0200 Mike Gabriel (a78a48f)

	* configure.ac: Stop automake from whining, set subdir-objects flag.

2017-06-16 14:18:39 +0200 Mike Gabriel (2bf440e)

	* src/session-list.vala: Regression fix for failing session logins
          caused by eece8599b774b4b30eeb31a39bc7c3c36d24b011.

2017-06-16 13:41:43 +0200 Mike Gabriel (de6ec89)

	* data/arctica-guest-session-startup.desktop.in: Remove double slash
          in Exec= field.

2017-06-16 13:38:09 +0200 Mike Gabriel (cb831b9)

	* arctica-guest-session-auto.sh: Don't rely on .profile to be loaded,
          define a default for DIALOG_SLEEP.

2017-06-16 13:10:44 +0200 Mike Gabriel (c88e2b1)

	* Update .po files.

2017-06-16 13:10:24 +0200 Mike Gabriel (ea07b73)

	* po/arctica-greeter.pot: Update translation template, now with
          translatable text from our guest shell scripts.

2017-06-16 13:07:20 +0200 Mike Gabriel (90c9d12)

	* Make arctica-desktop.desktop xgreeters file translatable.

2017-06-16 13:05:37 +0200 Mike Gabriel (987fb8c)

	* debian/arctica-greeter-guest-session.install: Let's have EOL and
          EOF.

2017-06-16 13:04:42 +0200 Mike Gabriel (afd9836)

	* Make intltool more happy with our guest shell scripts (i.e. adding
          .sh suffix).

2017-06-16 10:16:11 +0200 Mike Gabriel (94b4313)

	* src/session-list.vala: Present list of available sessions in
          case-insensitive order.

2017-06-14 13:17:54 +0200 Mike Gabriel (0d5437a)

	* Artwork: Add icon badge for Sugar Desktop.

2017-06-14 13:13:31 +0200 Mike Gabriel (56392e6)

	* Artwork: Add icon badge for surf-display.

2017-06-14 12:49:32 +0200 Mike Gabriel (8818fd6)

	* Artwork: Add icon badge for Xmonad.

2017-06-14 12:48:22 +0200 Mike Gabriel (b1175d8)

	* Artwork: Add icon badge for the Window Maker.

2017-06-13 23:44:30 +0200 Mike Gabriel (a7bb797)

	* Artwork: Add icon badge for the Budgie Desktop.

2017-06-13 22:16:27 +0200 Mike Gabriel (095b1df)

	* Artwork: Add icon badge for awesome.

2017-06-13 22:06:55 +0200 Mike Gabriel (213f805)

	* Artwork: Add icon badge for the matchbox wm.

2017-06-13 22:04:43 +0200 Mike Gabriel (b3e44b2)

	* Artwork: Add icon badge for i3 wm.

2017-06-13 21:38:54 +0200 Mike Gabriel (d1debd1)

	* data/lxde_badge.png: Recreate from .xcf file, removes gray
          outlines.

2017-06-12 15:12:22 +0200 Mike Gabriel (63394a6)

	* override_font() deprecation warning: replace by GtkCssProvider
          blocks. Additionally, don't hard-code Cabin font anymore,
          use font_name gsettings property instead.

2017-06-12 13:36:11 +0200 Mike Gabriel (99d2c26)

	* FIXME: Disable the greeter wrapper so far, as systemctl --user
          calls will fail with the wrapper enabled. (This brings
          back the Ayatana Indicators to the greeter login screen).

2017-06-12 13:30:44 +0200 Mike Gabriel (c76e0b1)

	* src/arctica-greeter.vala: Fix copy+paste flaw blocking atspid to be
          destroyed at greeter exit.

2017-06-12 11:06:27 +0200 Mike Gabriel (a3d58d0)

	* Makefile.am: Add 'compile' to list of DISTCLEANFILES.

2017-06-12 10:44:00 +0200 Mike Gabriel (e3b4202)

	* Make guest account support functional. Port various items from
          Ubuntu's LightDM package.

2017-06-12 01:20:07 +0200 Mike Gabriel (ccba9e5)

	* debian/control: Drop mate-settings-daemon from Recommends: field.
          Already in Depends: field.

2017-06-12 01:17:59 +0200 Mike Gabriel (8a7f97e)

	* Split up packaging: outsource arctica-greeter-remote-logon and
          arctica-greeter-guest-session. Allow the admin to
          selectively add those features or remove them, if needed.

2017-06-12 00:57:46 +0200 Mike Gabriel (1fa6100)

	* guest-account: Blindly copy Ubuntu's guest-account script from
          bin:package lightdm into this project.

2017-06-08 21:25:39 +0200 Mike Gabriel (2e747f6)

	* src/settings-daemon.vala: Make sure the SettingsDaemon subprocess
          gets killed when greeter exits.

2017-06-07 16:19:47 +0200 Mike Gabriel (49f36af)

	* src/settings-daemon.vala: Flaw when switching to m-s-d. The
          media-keys plugin is to be diabled.

2017-06-07 16:12:20 +0200 Mike Gabriel (0109864)

	* src/settings-daemon.vala: Avoid race condition that could launch
          the settings daemon twice.

2017-06-04 23:52:50 +0200 Mike Gabriel (c1fcb12)

	* Rename owned greeter bus to a generical, product-independent name:
          org.ayatana.Greeter.

2017-05-31 16:24:39 +0200 Mike Gabriel (4017149)

	* Play system-ready sound when arctica-greeter is ready for loggin
          the user in. Ship system-ready sound with our own sound
          theme as ubuntu-sounds is not available on all distros.

2017-05-31 16:14:21 +0200 Mike Gabriel (9e97d28)

	* fix-patch-whitespace: Help tool from X.org to have white-space
          clean changeset commits.

2017-05-30 12:01:17 +0200 Mike Gabriel (25606b6)

	* Use ShutdownDialogType.SHUTDOWN on incoming shutdown requests. This
          enables Hibernate and Suspend buttons, which is nice.

2017-05-30 12:00:48 +0200 Mike Gabriel (087e04c)

	* src/shutdown-dialog.vala: Grab Reboot button focus when user
          requests a reboot.

2017-05-28 02:36:30 +0200 Mike Gabriel (0e4fbb4)

	* Return "greeter" as session_name rather than "ubuntu" in
          SessionManager DBus interface.

2017-05-28 02:32:53 +0200 Mike Gabriel (8e50dfa)

	* nm-applet startup: Fix typo in cmd line option.

2017-05-26 01:59:28 +0200 Mike Gabriel (ebf839b)

	* comment change: MATE and GNOME share the same session manager
          namespace

2017-05-23 12:02:34 +0200 Mike Gabriel (930c41a)

	* DBus own_name: Clear up mess. Arctica Greeter owns two buses:
          org.ArcticaProject.ArcticaGreeter (formerly:
          com.canonical.UnityGreeter) and org.ayatana.Desktop
          (formerly: com.canonical.Unity).

2017-05-23 10:57:36 +0200 Mike Gabriel (794b686)

	* src/arctica-greeter.vala: Enable nm-applet again, launch with
          --indicators option and let's hope the system has
          nm-applet with indicators support compiled-in.

2017-05-18 23:29:59 +0200 Mike Gabriel (63d9a2f)

	* Acquire DBus session bus 'com.canonical.Unity' for now. Same bus
          name is used in ayatana-indicator-session and maybe
          elsewhere.

2017-05-18 23:27:51 +0200 Mike Gabriel (5d54b6a)

	* session list's back button: Make background transparent.

2017-05-18 23:05:43 +0200 Mike Gabriel (cd2de8b)

	* src/menubar.vala: Give the indicator icons a bit more space (i.e.
          height := 32).

2017-05-18 23:02:29 +0200 Mike Gabriel (2a524d3)

	* Theming: Use Numix GTK/icon theme.

2017-05-17 16:46:38 +0200 Mike Gabriel (f238d62)

	* Gdk.cairo_create() has been deprecated in GTK 3.22. Use
          Gdk.Window.begin_draw_frame() instead.

2017-05-17 16:45:44 +0200 Mike Gabriel (aa15b94)

	* Disable nm-applet while we are not able to pipe it into
          ayatana-indicator-application.

2017-05-17 16:04:18 +0200 Mike Gabriel (8dd317d)

	* Silence GTK 3.22 warnings relating to deprecation in Gdk.Screen.

2017-05-17 14:25:55 +0200 Mike Gabriel (c9f0793)

	* src/arctica-greeter.vala: Cleanly exit nm-applet when switching to
          the user context.

2017-05-17 14:20:15 +0200 Mike Gabriel (0916a5f)

	* indicator service launching: Check AGSettings for what indicator to
          load and remember loaded indicators to clean up properly
          when switching to the user context.

2017-05-17 10:20:59 +0200 Mike Gabriel (0cddbb4)

	* indicator support: Launch ayatana-indicator-session service via
          Arctica Greeter.

2017-05-16 14:27:06 +0200 Mike Gabriel (237d630)

	* indicator services: Launch inicator power service via systemd
          before showing the greeter.

2017-05-15 16:49:07 +0200 Mike Gabriel (5ad2a0e)

	* src/arctica-greeter.vala: Fix systemd launch of
          ayatana-indicator-application service.

2017-05-15 16:48:26 +0200 Mike Gabriel (0ee3892)

	* Fix indicator name for ayatana-application.

2017-05-15 13:44:52 +0200 Mike Gabriel (8a8362a)

	* arctica-greeter.vala: Fix .service file name for starting up
          Ayatana Indicators Application as a service.

2017-05-15 13:41:21 +0200 Mike Gabriel (9649a93)

	* Use systemd to launch the Ayatana Indicators Application Service.

2017-05-15 13:31:16 +0200 Mike Gabriel (1347098)

	* debian/rules: Let's skip tests for now, until we got them fixed.

2017-05-15 13:30:45 +0200 Mike Gabriel (54d2745)

	* debian/control: Fix Recommends: field. Let's use
          ayatana-indicator-* packages rather.

2017-04-30 23:35:30 +0200 Mike Gabriel (e0afbd7)

	* rebase m-s-d

2017-04-29 21:30:15 +0000 Mike Gabriel (a4ab356)

	* Switch to using MATE's Settings Daemon.

2017-04-18 08:23:00 +0000 Robert Ancell (d70a693)

	* Handle errors from liblightdm.

2017-04-18 08:16:30 +0000 Robert Ancell (e36ceb6)

	* Show error when failing to connect to LightDM daemon.

2017-04-18 08:15:20 +0000 Robert Ancell (4d8cb25)

	* Use GenericSet instead of HashTable.

2017-04-18 08:13:45 +0000 Robert Ancell (9d87509)

	* Compile with Vala debugging information

2017-04-18 08:12:26 +0000 Robert Ancell (b7ffb48)

	* Fix test mode by skipping xsettings checks.

2017-04-18 07:56:29 +0000 Robert Ancell (a3cf506)

	* Use valgrind to make build logs bigger help in triaging FTBFS
          problems.

2017-04-15 14:50:33 +0000 Mike Gabriel (24d9086)

	* vala: Replace all 'static const' declaration by 'const'.

2017-04-15 14:45:33 +0000 Mike Gabriel (5274b88)

	* debian/rules: Preserve upstream's po/arctica-greeter.pot (it gets
          recreated during build).

2017-04-15 14:43:11 +0000 Mike Gabriel (77ee958)

	* unit tests: GLX extension not required in our Xvfb test runs.

2016-09-15 10:18:55 +0000 Mike Gabriel (b206777)

	* Don't use deprecated -GtkWidget-focus-line-width style property
          anymore, replace by outline-width property.

2016-09-15 10:02:52 +0000 Mike Gabriel (47ff24f)

	* Don't use deprecated GtkButton-child-displacement-{x|y} style
          properties anymore.

2016-09-15 11:27:53 +0200 Mike Gabriel (b262c5e)

	* po/co.po: Add co language to Transifex and update (empty .po file).

2016-09-15 09:22:06 +0000 Mike Gabriel (faf1999)

	* update po/arctica-greeter.pot

2016-09-15 09:13:38 +0000 Robert Ancell (65cc346)

	* Explicitly set scale and geometry for Cairo.XlibSurface.

2016-09-15 09:11:49 +0000 Robert Ancell (440a813)

	* Limit prompt fields to 200 characters in case a key is being held
          down (e.g. by a cat).

2016-09-15 09:07:39 +0000 Mike Gabriel (df985b3)

	* Wait for gnome-settings-daemon xsettings plugin is ready to avoid
          HiDPI resolution changing.

2016-09-15 08:54:00 +0000 Robert Ancell (8b9cf7f)

	* Update LINUGAS.

2016-09-15 08:53:16 +0000 Robert Ancell (fabfbff)

	* Work around Vala trying to use a new GTK 3.20 function.

2016-09-15 08:49:20 +0000 Iain Lane (b20beff)

	* Apply the Gtk.ResizeMode.QUEUE fix to another place, so that the
          shutdown dialog is positioned correctly again.

2016-02-26 11:34:08 +0100 Mike Gabriel (1190fb9)

	* Rename RemoteLoginService interface to RemoteLogonService.

2016-02-26 11:33:30 +0100 Mike Gabriel (27a7262)

	* Find nasty typo in our project name. Thanks to Jeppe Simonson for
          helping with getting that tracked.

2016-02-23 15:05:01 +0100 Mike Gabriel (305e0c5)

	* debian/control: Alternative Ds fonts-droid-fallback | fonts-droid.
          Fix FTBFS on Debian stretch/unstable.

2016-02-23 08:37:15 +0100 Mike Gabriel (c6b9d72)

	* debian/control: Add D (arctica-greeter): gnome-settings-daemon.

2016-02-23 07:25:25 +0100 Mike Gabriel (0d47a28)

	* Transifex: Add .tx/config configuration file.

2016-02-22 23:06:56 +0100 Mike Gabriel (7b3849b)

	* po: Add helper script update-pot.sh.

2016-02-22 22:39:15 +0100 Mike Gabriel (585f614)

	* po: Add arctica-greeter.pot PO translation template file.

2015-11-10 23:30:04 +0100 Mike Gabriel (16012a3)

	* debian/control: Fix build-dependency issue for nightly builds.

2015-11-07 06:08:26 +0000 Mike Gabriel (37f53f3)

	* Build against Ayatana Indicators instead of Ubuntu Inidicators.

2015-11-05 13:52:17 +0100 Mike Gabriel (9f47961)

	* Use org.ayatana namespace for Ayatana indicators.

2015-11-05 13:51:52 +0100 Mike Gabriel (0cf0756)

	* NEWS.Canonical: Fix copy+paste error.

2015-10-28 23:35:33 +0100 Mike Gabriel (25ad920)

	* Set a session name in our own namespace.

2015-10-28 15:34:16 +0100 Mike Gabriel (252faeb)

	* toggle-box.vala: Catch Glib.Error where it occurs when setting
          normal button style.

2015-10-28 05:10:09 +0100 Mike Gabriel (fac2a33)

	* Re-do session badges with proper color to alpha algorithm.

2015-10-28 04:46:11 +0100 Mike Gabriel (80488bf)

	* Make our new icons transparent in the logo area, not black.

2015-10-27 22:41:27 +0100 Mike Gabriel (69a43a8)

	* Make session list in toggle box configurable concerning font color
          and button bg color.

2015-10-27 21:54:27 +0100 Mike Gabriel (d1d9cb3)

	* Set default background color (before image is loaded) to a color
          similar to our default image.

2015-10-27 21:45:04 +0100 Mike Gabriel (7a09c56)

	* add forgotten xsession_badge.{png,xcf}

2015-10-27 21:43:14 +0100 Mike Gabriel (e03befb)

	* Add badge (.png) for default Xsession.

2015-10-27 21:29:30 +0100 Mike Gabriel (41cd118)

	* Add badge (.png) for Openbox window manager. Also make greeter
          aware of openbox-kde and openbox-gnome.

2015-10-27 21:14:36 +0100 Mike Gabriel (cf52b7d)

	* Add badge (.png) for TWM window manager.

2015-10-27 20:43:24 +0100 Mike Gabriel (7001ab9)

	* fix for last commit

2015-10-27 20:39:12 +0100 Mike Gabriel (5fff773)

	* Darken badges for MATE and LXDE.

2015-10-27 20:27:57 +0100 Mike Gabriel (3dcfdaf)

	* data/Makefile.am: Drop
          org.ArcticaProject.ArcticaGreeterSession.gschema.xml from
          target.

2015-10-27 19:54:46 +0100 Mike Gabriel (e50ccde)

	* data/Makefile.am: Install new badges.

2015-10-27 19:49:12 +0100 Mike Gabriel (ba8900a)

	* Attempt to fake a session with org.gnome.SessionManager.

2015-10-27 19:29:32 +0100 Mike Gabriel (8ad0245)

	* Add badge (.png) for XFCE desktop session.

2015-10-27 19:23:47 +0100 Mike Gabriel (48dd06f)

	* Add badge (.png) for MATE desktop session.

2015-10-27 19:18:43 +0100 Mike Gabriel (891105e)

	* Add badge (.png) for LXDE desktop session.

2015-10-27 18:18:04 +0100 Mike Gabriel (2ef3a81)

	* fix for a18ab60: UGSettings class has been renamed to AGSettings.

2015-10-27 11:42:32 +1300 Robert Ancell (e80a7fc)

	* Use non-deprecated Gdk.Cursor methods

2015-09-16 08:58:28 -0400 Robert Ancell (a18ab60)

	* Add an option to only show users in a list of specified groups

2015-09-16 08:42:44 -0400 Robert Ancell (a9369a5)

	* Remove obsolete CONFIG_FILE define

2015-02-19 14:57:35 +0200 Alberts Muktupāvels (bedfb6d)

	* Add class name for toggle button

2015-02-19 14:33:16 +0200 Alberts Muktupāvels (4bfa70a)

	* Add class name for option button

2015-01-27 20:34:20 +0000 Lars Uebernickel (a7e3214)

	* DashEntry: remove .spinner class

2015-01-16 21:57:29 +0100 Albert Astals Cid (c1a0b36)

	* Support the session name for Plasma 5

2014-12-17 09:12:01 +0200 Alberts Muktupāvels (adb9b2e)

	* Fix prompt-box height.

2014-11-29 14:14:09 +0200 Alberts Muktupavels (eb9d205)

	* Restore event type for button-release-event.

2014-11-29 13:56:19 +0200 Alberts Muktupavels (4a5a14d)

	* Change event type when calling button press event in release event.

2014-11-19 15:11:44 +0300 Dmitry Shachnev (c8331a0)

	* Update for new gnome-flashback sessions names

2014-11-04 15:56:26 +1300 Robert Ancell (a937ee8)

	* Don't copy delegates. Apparently not allowed

2014-11-04 15:54:24 +1300 Robert Ancell (138bf14)

	* Don't use deprecated Gtk.Widget API

2014-11-04 15:49:30 +1300 Robert Ancell (c1726b3)

	* Don't use deprecated liblightdm API

2014-11-04 15:49:06 +1300 Robert Ancell (269ff16)

	* Don't use deprecated Gdk X11 API

2015-10-27 10:07:58 +0100 Mike Gabriel (aa5077f)

	* Set gettext-domain from unity to arctica-greeter.

2015-10-27 09:55:12 +0100 Mike Gabriel (9767eeb)

	* Logo: Reduce spacing between logo text and version, shrink version
          string.

2015-10-27 09:51:46 +0100 Mike Gabriel (2399e71)

	* Logo: Rework TheArcticaGreeter logo.

2015-10-27 01:03:40 +0100 Mike Gabriel (7b9bd55)

	* Don't own session com.canonical.Unity, own
          org.ArcticaProject.ArcticaProjectGreeter instead.

2015-10-26 23:13:23 +0000 Mike Gabriel (47036c2)

	* Comment out never used upstart_pid variable.

2015-10-27 00:07:43 +0100 Mike Gabriel (28b3e3f)

	* debian/rules: Remove build-cruft (.c files) after build.

2015-10-26 22:46:02 +0000 Mike Gabriel (5aea9e6)

	* logo-generator: Reduce separator between logo text and version
          number.

2015-10-26 22:09:25 +0000 Mike Gabriel (8e72820)

	* Provide TheArcticaGreeter logo, drop Ubuntu logo. Adapt
          logo-generator.

2015-10-26 20:45:14 +0100 Mike Gabriel (c7dbb58)

	* debian/rules: Fix bogus.

2015-10-26 20:35:17 +0100 Mike Gabriel (ce3b008)

	* debian/rules: No need to remove logo.png after package build.

2015-10-26 20:33:54 +0100 Mike Gabriel (cf78e2f)

	* debian/rules: Clean .stamp files after package build.

2015-10-26 20:31:04 +0100 Mike Gabriel (175a4c1)

	* Revert "Remove *.stamp files on distclean."

2015-10-26 20:14:31 +0100 Mike Gabriel (8c82d89)

	* Remove *.stamp files on distclean.

2015-10-26 20:11:45 +0100 Mike Gabriel (c72e594)

	* Add source files (gimp graphics) for background images.

2015-10-26 20:10:39 +0100 Mike Gabriel (f086aa0)

	* Background image: use a more blue'ish background image.

2015-10-26 18:31:57 +0100 Mike Gabriel (b86e64e)

	* Disable code depending on upstart.

2015-10-26 17:26:23 +0100 Mike Gabriel (4ce2ca5)

	* Fix parentheses in dialog message.

2015-10-26 17:13:48 +0100 Mike Gabriel (abc1d35)

	* debian/control: Don't use package name as SYNOPSIS.

2015-10-26 17:13:21 +0100 Mike Gabriel (b48f5ff)

	* Fix dialog message.

2015-10-26 15:59:16 +0100 Mike Gabriel (0a03c98)

	* Use Cantarell font to build versioned logo. Requires
          fonts-cantarell to be available at build time.

2015-10-26 15:55:14 +0100 Mike Gabriel (5811d62)

	* Drop hard-reference to uccs.canonica.com. Make default Remote Logon
          Service server configurable through gsettings.

2015-10-26 15:52:42 +0100 Mike Gabriel (1cfbd06)

	* Drop Ubuntu background. Use some temporary swirly gradient
          background.

2015-10-26 15:35:21 +0100 Mike Gabriel (c301096)

	* debian/rules: No need to extra-copy logo.png at
          override_dh_auto_install.

2015-10-26 15:34:50 +0100 Mike Gabriel (e1573ab)

	* Drop optionally using unity-settings-daemon with Arctica Greeter.

2015-10-26 15:12:51 +0100 Mike Gabriel (51bf806)

	* font work: Use Cabin and Cantatell fonts instead of Ubuntu and
          Ubuntu Light.

2015-10-26 15:09:50 +0100 Mike Gabriel (422c6d0)

	* debian/control: Recommend ubuntu-settings-daemon |
          gnome-settings-daemon instead of mate-settings-daemon.

2015-10-26 13:34:39 +0000 Mike Gabriel (7b4efc8)

	* Drop the idea of using mate-settings-daemon on non-Ubuntu systems,
          use gnome-settings-daemon instead.

2015-10-26 13:31:33 +0000 Mike Gabriel (c9220a0)

	* Fix failing testsuite by enforce setting XDG_DATA_DIRS internally
          if XDG_DATA_DIRS is not set in the environment.

2015-10-26 04:45:27 +0100 Mike Gabriel (a8365c6)

	* Move logo-with-version creation into upstream code and away from
          debian/rules.

2015-10-07 08:28:21 +0000 Mike Gabriel (da5a410)

	* Rename UGSettings to AGSettings.

2015-09-22 20:11:17 +0200 Mike Gabriel (c96cf1a)

	* Fix for last commit: Add forgotten translation files.

2015-09-21 17:56:38 +0200 Mike Gabriel (ab139b6)

	* Rebase against Unity Greeter in Ubuntu 15.10.

2015-09-21 17:47:18 +0200 Mike Gabriel (bf0db8a)

	* Rebase against Unity Greeter from Ubuntu 15.04

2015-09-21 17:42:30 +0200 Mike Gabriel (ec5e539)

	* Rebase against unity from Ubuntu 15.04

2015-09-21 17:33:33 +0200 Mike Gabriel (72ff799)

	* Support alt+super+s for enabling screen reader to match Unity shell
          keybinding.

2015-09-21 17:24:51 +0200 Mike Gabriel (8852309)

	* Make arctica-greeter build on Debian and Ubuntu alike.

2015-09-19 16:53:38 +0200 Mike Gabriel (1896346)

	* Make arctica-greeter build against Debian unstable _and_ Ubuntu
          (and probably break at runtime).

2015-09-19 12:56:08 +0000 Mike Gabriel (eac0956)

	* Makefile.am: Provide dist hooks for creating upstream ChangeLog and
          AUTHORS file.

2015-09-19 14:53:43 +0200 Mike Gabriel (c5beb9c)

	* Set upstream version to 0.99.0.1

2015-09-19 14:42:19 +0200 Mike Gabriel (f2b9070)

	* Adapt to using ArcticaProject's remote-logon-service.

2015-09-19 14:09:33 +0200 Mike Gabriel (13e2fba)

	* Provide our own background image arctica-greeter.png.

2015-09-19 12:40:42 +0200 Mike Gabriel (f84be4f)

	* fork unity-greeter as arctica-greeter

2014-12-06 10:36:38 +0100 Mike Gabriel (a2072d8)

	* Fix failing test "remote_login_only" after we made Remote Login
          only to appear properly on screen.

2014-12-06 10:35:38 +0100 Mike Gabriel (c3bbc8f)

	* Improve selection code of new entry if an entry is removed.

2014-12-02 14:10:45 +0100 Mike Gabriel (2bc8483)

	* Fix config parameter (show-remote-login ->
          greeter-show-remote-login).

2014-12-01 12:25:39 +0000 Mike Gabriel (e74028d)

	* fix for commit 5328fc2

2014-12-01 13:00:30 +0100 Mike Gabriel (15f085a)

	* Add to D: network-manager. TODO: Without network-manager no Remote
          Login. This needs to be addressed later.

2014-12-01 12:58:25 +0100 Mike Gabriel (5328fc2)

	* Show Remote Login box if no other boxes (usernames, other login,
          guest login) are to be shown.

2014-11-28 16:51:55 +0100 Mike Gabriel (5a726a4)

	* Remote Login Only sessions require show-remote-login to be true in
          SeatDefaults.

2014-11-28 16:44:45 +0100 Mike Gabriel (c0e5832)

	* 90-unity-greeter-x2go.conf: Override all known LightDM setups that
          we know of in Ubuntu.

2014-11-28 16:23:40 +0100 Mike Gabriel (2bddd36)

	* We also allow usernames for UCCS login.

2014-11-28 16:07:15 +0100 Mike Gabriel (c3ad1ba)

	* If normal user sessions _and_ guest sessions are disabled, make
          sure the remote login services gets activated.

2014-11-28 15:01:57 +0100 Mike Gabriel (834e272)

	* fix changelog entries

2014-11-28 15:01:36 +0100 Mike Gabriel (4d989d1)

	* Add to R (unity-greeter-x2go): xinput.

2014-11-28 10:55:47 +0100 Mike Gabriel (1c27048)

	* Make lightdm-xsession the default session to launch.

2014-11-28 10:50:59 +0100 Mike Gabriel (0cd9dca)

	* Allow UCCS logins that are not email addresses (but usernames).

2014-11-28 09:29:59 +0100 Mike Gabriel (7f45435)

	* debian/control: Upgrade to D (unity-greeter): lightdm. Upgrade to R
          (unity-greeter): remote-login-service,
          lightdm-remote-login-x2go, lightdm-remote-login-freerdp.

2014-11-27 13:54:56 +0100 Mike Gabriel (3f03110)

	* fix for last commit

2014-11-27 13:54:28 +0100 Mike Gabriel (20dc10f)

	* debian/rules: Fix installation of logo.png into bin:package.

2014-11-12 05:30:43 +0100 Mike Gabriel (b4b0c4e)

	* debian/watch: Drop file (i.e. reference to original unity-greeter
          upstream download resource).

2014-11-12 05:30:07 +0100 Mike Gabriel (c681de9)

	* debian/copyright: Adapt file to forked context of
          unity-greeter-x2go.

2014-11-12 05:23:23 +0100 Mike Gabriel (31d6243)

	* Bump Standards: to 3.9.6. No changes needed.

2014-11-12 05:22:54 +0100 Mike Gabriel (d46818b)

	* Put myself in Maintainer: field.

2014-11-12 05:21:05 +0100 Mike Gabriel (af4e9cc)

	* debian/control: Rename (src:)package: unity-greeter ->
          unity-greeter-x2go.

2014-11-12 05:20:08 +0100 Mike Gabriel (d8f5e85)

	* debian/source/format: Switch to format 1.0.

2014-11-12 05:15:31 +0100 Mike Gabriel (0132755)

	* debian/control: Adapt Suggests: field to usage with X2Go.

2014-11-12 05:13:27 +0100 Mike Gabriel (ef58047)

	* mark as UNRELEASED

2014-11-12 05:12:54 +0100 Mike Gabriel (c356792)

	* Apply patch 01_x2go+rls.patch. Natively support X2Go Session.

2014-11-02 20:41:17 +0100 Mike Gabriel (4ae9e07)

	* upload to ppa:x2go/stable+ppa (ubuntu/14.04.10-0ubuntu1+x2go1)

2014-11-02 20:40:40 +0100 Mike Gabriel (8e2d33d)

	* Imported Upstream version 14.04.10