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 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161
|
2025-05-26 Mike Gabriel
* Release 0.99.9.4 (HEAD -> master, tag: 0.99.9.4)
* Merge branch 'tari01-pr/menubar-shadow' (42d74db)
2025-05-23 Robert Tari
* Make menubar shadow configurable (8cef7f0)
2025-05-23 Mike Gabriel
* Release 0.99.9.3 (b9170bd) (tag: 0.99.9.3)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Set
menubar-alpha default to 0.3. (Originally 0.2, changed to
0.5 as part of 2bc439d3, now back to a compromise).
(fba0c2d)
2025-05-22 Mike Gabriel
* Merge branch 'tari01-pr/menubar-alpha' (608890b)
2025-05-22 Robert Tari
* Apply custom menubar transparency even if theme background is used
(9991f3e)
2025-05-22 Mike Gabriel
* Merge branch 'tari01-pr/menubar-osd-bg' (7daa7f8)
2025-05-21 Robert Tari
* Use the theme menubar background colour if no custom colour is
specified (2bc439d)
2025-05-20 naikhon
* Translated using Weblate (Burmese) (eb2e110)
2025-05-15 Mike Gabriel
* Release 0.99.9.2 (df04358) (tag: 0.99.9.2)
* Merge branch 'tari01-pr/add-background-position' (800eaa1)
2025-05-12 Robert Tari
* Add background image position (5086318)
2025-05-08 Putta Anantha Lakshmi
* Translated using Weblate (Telugu) (d1d8d80)
2025-05-05 Mike Gabriel
* Release 0.99.9.1 (09061b1) (tag: 0.99.9.1)
* Merge branch 'tari01-pr/group-filters' (17054d5)
2025-05-05 Robert Tari
* src/Makefile.am: Remove arctica_greeter_vala.stamp - it keeps
sending config.h to valac (936f8fa)
* src/animate-timer.vala: EasingFunc cannot be a GLib.Object property
- turn it into a public variable (562b318)
* Allow filtering out users from hidden groups (d32c62a)
2025-05-02 Hugo Carvalho
* Translated using Weblate (Portuguese) (bef6d1f)
2025-04-30 Mike Gabriel
* Release 0.99.9.0 (0b9b963) (tag: 0.99.9.0)
* src/menubar.vala: Also apply menubar-bgcolor to menubar's shadow
style. (01b31d5)
* src/menubar.vala: Set LC_NUMERIC to C.UTF-8 more globally.
(17ab293)
* Merge branch 'tari01-pr/error-below-entry' (e6d5a9c)
2025-04-28 Robert Tari
* Fix and future-proof the menubar (e221a64)
* Allow error label to be displayed below the login entry (652c4d7)
2025-04-28 Mike Gabriel
* Release 0.99.8.11 (c6e0758) (tag: 0.99.8.11)
* Merge branch 'tari01-pr/message-wrap' (ca471e8)
2025-04-27 Robert Tari
* Rewrite Gtk.Alignment (0e7e568)
* src/prompt-box.vala: Add manual text wrapping (ead00fb)
2025-04-24 தமிழ்நேரம்
* Translated using Weblate (Tamil) (bb6492c)
2025-04-24 GiannosOB
* Translated using Weblate (Greek) (ef40d14)
2025-04-24 Mike Gabriel
* Release 0.99.8.10 (43a3900) (tag: 0.99.8.10)
2025-04-22 Mike Gabriel
* Merge branch 'tari01-pr/prompt-box-tweaks' (2d6ade9)
2025-04-11 Robert Tari
* src/settings.vala: Drop unused safe_get_boolean (66148f4)
* Fix deprecated colour overrides (f270371)
* Add logo positioning tweaks (4d10346)
2025-04-10 Robert Tari
* Add prompt box tweaks (33ec57f)
2025-04-10 Mike Gabriel
* Merge branch 'tari01-pr/size-position-fix' (65ccc9a)
2025-04-08 Robert Tari
* src/shutdown-dialog: Fix possible null warning (9153eef)
* src/arctica-greeter.vala: Drop unused wm_message_pid (88c789a)
* src/main-window.vala: Drop deprecated Gdk.Screen.get_* functions
(c2bc2ca)
* src/main-window.vala: Fix content_box.margin_right and margin_left
(a0e8568)
* src/main-window.vala: Fix DBusConnection.call (b5c6f85)
* Fix size and position of elements (e0acacd)
2025-04-08 Mike Gabriel
* Release 0.99.8.9 (81c3c04) (tag: 0.99.8.9)
* Merge branch 'tari01-pr/greeter-accelerators' (908972c)
2025-04-07 Quentin PAGÈS
* Translated using Weblate (Occitan) (044f8b6)
* Translated using Weblate (Occitan) (dcc9194)
2025-04-04 Robert Tari
* src/main-window.vala: Toggle a11y states when accelerators are
pressed (856bd77)
2025-04-01 Mike Gabriel
* Release 0.99.8.8 (7a83daa) (tag: 0.99.8.8)
* Merge branch 'tari01-pr/datetime-high-contrast-label' (e6e3fbe)
2025-04-01 Robert Tari
* src/menubar.vala: Fix DateTime Indicator high contrast label
(4cdc2e0)
2025-03-31 Mike Gabriel
* Release 0.99.8.7 (fc8c76d) (tag: 0.99.8.7)
* Merge branch 'tari01-pr/greeter-list-height-fix' (f1b274e)
2025-03-31 Robert Tari
* arctica-greeter/src/greeter-list.vala: Fix DashBox height when the
content changes (946775b)
2025-03-29 Salkin
* Translated using Weblate (Uyghur) (0ddec6b)
2025-03-26 Mike Gabriel
* Release 0.99.8.6 (a021f8e) (tag: 0.99.8.6)
* src/{arctica-greeter,menubar}.vala: Set locale to LC_NUMERIC before
using printf with floats. (fa0e19e)
2025-03-25 Mike Gabriel
* Release 0.99.8.5 (71f38fc) (tag: 0.99.8.5)
2025-03-24 Mike Gabriel
* Merge branch 'pr/high-contrast-improvements' (c3c5d4b)
* src/main-window.vala: Render the back-button with black background
and white border. As arrow we have a white png. (8a0542e)
* src/prompt-box.vala: Prompt box messages are always white in normal
mode, always black in high-contrast mode (except from
errors). (21ec1e7)
* src/menubar.vala: Render the menubar always white (background is
always black) and use black font for the hostname if
shown. (15fc13d)
* Merge branch 'pr/widget-scaling-factor' (41eb8e9)
2025-03-22 Mike Gabriel
* Introduce UI/widget scaling per scaling factor. (e8d37d2)
2025-03-24 Mike Gabriel
* Merge branch 'pr/soften-menubar-shadow' (6586045)
* src/menubar.vala: Soften the menubar shadow depending on
'menubar-alpha' gsettings configuration. (ad0d442)
2025-03-21 Mike Gabriel
* data/50-org.Arctica-Project.arctica-greeter.rules: Syntax fix.
(234d74d)
2025-02-17 Temuri Doghonadze
* Translated using Weblate (Georgian) (39df5cd)
2025-02-08 Remus-Gabriel Chelu
* Translated using Weblate (Romanian) (88f9010)
2024-12-28 Mike Gabriel
* src/main-window.vala: Recuce the menubar height when settings
struts by 7px ( x scaling factor). (92634b8)
* src/main-window.vala: Apply Gdk property change to toplevel of the
MainWindow (just in case). (f1eaf51)
* src/arctica-greeter.vala: Re-arrange calls to
MainWindow.set_struts(). (303f1bf)
* src/main-window.vala: Make set_struts() a method without parameters
and move previous set_struts() to _set_struts() (private
method now). (e1447b4)
* src/main-window.vala: Set Gdk.WindowTypeHint.DOCK to make struts
not affect the main window itself. (4108d90)
* src/main-window.vala: Convert set_struts() method to a non-static
method (by its code). (b571fe5)
2024-07-09 Mike Gabriel
* release 0.99.8.4 (0c86f3f)
* src/session-list.vala: Document SUSE's handling of default.desktop
in /usr/share/xsessions/. (dc2fa8e)
* src/session-list.vala: Skip session key 'default' when detecting
the session's icon name. (0a03d5e)
* src/session-list.vala: Use xsession_badge.png for session key
"default". (b63c681)
* src/arctica-greeter.vala: Adjust comment (Slick Greeter ->
arctica-greeter). (0ba9af1)
2024-12-17 Distant Prince
* Translated using Weblate (English (Canada)) (430e248)
2024-11-17 AbdurahmanKarisik
* Translated using Weblate (Bosnian) (37c97f0)
2024-11-08 தமிழ்நேரம்
* Translated using Weblate (Tamil) (6b714e6)
2024-10-07 ssantos
* Translated using Weblate (Portuguese) (4f27ae4)
2024-09-28 Remus-Gabriel Chelu
* Translated using Weblate (Romanian) (802561d)
2024-08-24 Aindriú Mac Giolla Eoin
* Translated using Weblate (Irish) (df177e6)
2024-08-06 Jason Cai
* Translated using Weblate (Chinese (Simplified)) (a673035)
2024-07-05 Andi Chandler
* Translated using Weblate (English (United Kingdom)) (242d041)
2024-06-19 Mike Gabriel
* release 0.99.8.3 (1e92ca1) (tag: 0.99.8.3)
* arctica-greeter-check-hidpi: Import syslog module (we use it in
case of an occurring error). (347bbf0)
* src/settings-daemon.vala: Fake org.gnome.SessionManager's
RegisterClient D-Bus method. (8cbb98d)
* src/: Drop another (now) superfluous '!do_test_mode' check.
(f43aca3)
* src/: Skip start_notification_daemon() and start_real_wm() if in
test-mode. (e743bfb)
* src/: Exclude more code from being run in start_indicators() when
in test-mode. (1a5f9e5)
* src/arctica-greeter: Reduce \!do_test_mode checks by 1. (127c52a)
* src/: Only run enable_tap_to_click() when not in test-mode.
(d75bd38)
* src/: Only fiddle with MATE scaling factor settings if not in
test-mode. (6ff5b6f)
* src/arctica-greeter.vala: Handle get_state() return null gracefully
in ArcticaGreeter.GetUser(), don't operate on null as if
it was a string. (fb226b6)
* arctica-greeter-check-hidpi: Don't fail if no DISPLAY variable is
set, silently return scaling factor 1. (0b74a97)
2024-06-19 Robert Tari
* Make position of the greeter magnifier configurable (d9736d7)
2024-06-18 Mike Gabriel
* release 0.99.8.2 (c48673e) (tag: 0.99.8.2)
* arctica-greeter-magnifier: Enforce start without window
decorations. (6f803ae)
* src/: OSK and Magnifier: always keep above other windows, don't use
window decoration. Required when running under a window
manager such as metacity or marco. (7534bae)
* src/: On every toggle/enable resize/reposition the OSK. Required
when running under a window manager such as metacity or
marco. (24da945)
* src/: Let onboard know that it got launched for arctica-greeter.
(1d49f96)
* src/: Resize and position magnifier window. (e5040b0)
* release 0.99.8.1 (b98f5c0) (tag: 0.99.8.1)
* src/main-window.vala: Update struts when monitor setup changed.
(d094aad)
* src/main-window.vala: In set_struts() consider window scaling when
calculting _NET_WM_STRUT{,_PARTIAL} (fixes broken
geometry). (041352d)
* src/: In set_struts(), use already discovered geometry of the
primary monitor. (141a182)
* src/: Don't launch Geoclue agent when in test mode. (5ced7b5)
* src/: Launch/stop real window manager event based. (0bf37dd)
* d/changelog: amend revision in package version (6739f24)
* d/control: Switch from metacity to to marco in D:. (c0f1b48)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Default to
'marco' as window manager. (c400b72)
* window manager: Alternatively to metacity, also support marco.
(aac3361)
* src/arctica-greeter.vala: Don't reference 'Marco' anymore, the WM
is / will be configurable. (b094a11)
* release 0.99.8.0 (238d956) (tag: 0.99.8.0)
* src/: Set _NET_WM_STRUT{,_PARTIAL} so that notification bubbles
don't overlay the menubar. (2757036)
* d/control: Add to R: metacity. (816fdae)
* src/: Re-introduce having a window manager (metacity this time,
with keybindings disabled). Make having it conifugrable
via GSettings. (b9911e7)
* src/: Assure that org.mate.interface's window-scaling-factor is set
to 1x scaling (we handle it ourselves via env vars and
don't want the HiDPI effect to duplicated. (cf054d0)
* src/: Use AGUtils.greeter_set_env() (includes update of the D-Bus
activation environment) instead of
GLib.Environment.set_variable(). (173a498)
* src/: Move all env variable settings before the cmdline option
parse() method to actually have an effect. (762058e)
2024-06-17 Mike Gabriel
* data/50-org.Arctica-Project.arctica-greeter.rules: Make networking
more configurable in Arctica Greeter. (f77de32)
* main window: Keep always below all other windows (esp. helpful for
nm-applets WiFi credentials dialog). (4418e2c)
* Support openSUSE style of marking the default (X11) session.
(30e18f5)
* src/arctica-greeter.vala: Only load state file if it already
exists. (7e692b9)
2024-06-12 Mike Gabriel
* Launch mate-notification-daemon in greeter session for showing
system notifications. (8bc357f)
* Wait with Ayatana Indicators startup until D-Bus mimick services
have come up. (7b0bf06)
* src/settings-daemon.vala: Also mimick org.mate.ScreenSaver D-Bus
service. (f4e287a)
2024-06-11 Mike Gabriel
* data/50-org.Arctica-Project.arctica-greeter.rules: Make file better
readable. (c14dee8)
2024-06-04 Mike Gabriel
* release 0.99.7.0 (f6ae4a3) (tag: 0.99.7.0)
* Revert "Work around GTK 3.20's new allocation logic. Ported from
slick-greeter." (dd603ac)
* src/greeter-list.vala: Redraw greeter box after showing/adding a
message to it. (8286af7)
* src/greeter-list.vala: Drop extra Gtk >= 3.20 queue_allocate(). Not
required anymore. (1b5446f)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Amend
phrasings in GSettings descriptions. (1196cff)
2024-05-28 Mike Gabriel
* Add user filter to greeter's user list. (f5f819e)
2024-05-28 Michael Webster
* Fix hidpi rendering of session badges. (5a2e16b)
* src/promptbox.vala: Use themed icon for unread messages. (dc19d70)
2023-12-15 Michael Webster
* greeter-list.vala: Make the user and session box wider. (6faf57d)
2024-05-28 Eugenio Depalo
* src/{main-window,settings}.vala: Add a setting to configure the
user list alignment. (67fb7bf)
2024-05-20 Mike Gabriel
* src/session-list.vala: Add several more session name / badge
filename aliases. (6cf3cb2)
* data/badges/: Add badge icon for the Weston compositor. (afab250)
* data/badges: Port over various session badge icons from
slick-greeter. (6fecb87)
* src/session-list.vala: Auto-find session badges if session name
matches badge filename. (6b0c722)
2023-07-17 Sam Lane
* Add man pages for arctica-greeter's helper scripts. (fcbc29e)
2024-05-20 Mike Gabriel
* Drop to-be-reviewed slick-greeter patches. 0025 is already applied,
0027 will not be applied. (a3aa22f)
2024-04-08 Mike Gabriel
* release 0.99.6.0 (872a22e)
2024-05-17 Giorgio Berardi
* Translated using Weblate (Italian) (0fc62a9)
2024-04-08 Mike Gabriel
* debian/control: Sort deps in D: (arctica-greeter). (3fff402)
* debian/control: Satisfy dependencies of arctica-greeter-magnifier.
(3b0e9c8)
* debian/arctica-greeter.install: Install arctica-greeter-magnifier
into bin:pkg arctica-greeter. (8e386b8)
* src/arctica-greeter.vala: Permission fix (0755 -> 0644) (4a9ee4f)
* Merge branch 'tari01-pr/magnifier-focus' (0a20bb2)
2024-03-04 Robert Tari
* Add a Magnus fork and wrap it in a new window (f9a1300)
2024-03-14 이정희
* Translated using Weblate (Korean) (e09ca75)
2024-02-06 Mike Gabriel
* release 0.99.5.0 (b8773a7) (tag: 0.99.5.0)
* debian/arctica-greeter.install: Adjust to new binary installation
path. (ffb69e1)
* src/Makefile.am: Install arctica-greeter to <prefix>/bin (instead
of sbin). (e27a49b)
* Merge branch 'Ionic-feature/polkit-0.106' (13cb331)
2023-12-08 Mihai Moldovan
* debian/arctica-greeter.install: add polkit JS rules file. (0db687f)
2023-12-07 Mihai Moldovan
* data/Makefile.am: install
50-org.Arctica-Project.arctica-greeter.rules. (17331af)
* data: add 50-org.Arctica-Project.arctica-greeter.rules. (a16208d)
* data/arctica-greeter.pkla: fix Results* keys. (de9c25b)
2024-02-03 Kristjan Räts
* Translated using Weblate (Estonian) (a5e0cdb)
2024-01-28 Kristjan Räts
* Translated using Weblate (Estonian) (926e4fa)
2024-01-11 Iago Emanuel
* Translated using Weblate (Portuguese (Brazil)) (19093b1)
2024-01-08 Reza Almanda
* Translated using Weblate (Indonesian) (9ec134b)
2023-12-13 Quentin PAGÈS
* Translated using Weblate (Occitan) (4f1728f)
2023-12-06 Mike Gabriel
* release 0.99.4.6 (6312d50) (tag: 0.99.4.6)
* Merge branch 'tari01-pr/add-magnifier' (ce35028)
2023-12-06 Robert Tari
* Add magnifier toggling logic (64e0a76)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Store screen
magnifier state (7f0adec)
2023-12-04 Mike Gabriel
* release 0.99.4.5 (09a1593) (tag: 0.99.4.5)
* Merge branch 'tari01-pr/manual-user-change' (1882ca7)
2023-11-29 bittin1ddc447d824349b2
* Translated using Weblate (Swedish) (eae8415)
* Translated using Weblate (Swedish) (b1a1a09)
2023-11-24 Robert Tari
* Send user change signal for manual user entries (3f333ac)
2023-11-20 Mike Gabriel
* src/session-list.vala: More session name / icon file mappings
(plasmawayland, icewm). (d604c30)
* release 0.99.4.4 (9a7db1c) (tag: 0.99.4.4)
* d/control: recommend ayatana-indicator-display (7b2b609)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Request
display indicator by default, as well. (78fb657)
2023-11-19 Robert Tari
* Merge branch 'sunweaver-pr/geoclue-agent-loading' (9fd6b51)
2023-11-18 Mike Gabriel
* src/arctica-greeter.vala: Support (configurably) loading the
GeoClue-2.0 agent. (6e6190e)
* src/arctica-greeter.vala: Drop comments that we cannot maintain
(because we lack implementation detail knowledge over
time). (7f203af)
2023-11-10 Mike Gabriel
* release 0.99.4.3 (0e1ecfb) (tag: 0.99.4.3)
* src/arctica-greeter.vala: Search at alternative installation path
/usr/lib for indicator service executables. (42a13a2)
* lightdm-arctica-greeter-session: Export sensible system PATH
variable, so that the greeter executables can get found
(issue discovered on openSUSE). (01ff581)
2023-11-07 Mike Gabriel
* release 0.99.4.2 (8d4ac78) (tag: 0.99.4.2)
* d/rules: Drop dh_auto_install override. (e195dda)
* data/: Move config files and policykit .pkla file from debian/ to
data/ and install via automake. (de16229)
* release 0.99.4.1 (b64cf87) (tag: 0.99.4.1)
* data/arctica-greeter.1: Document --test-highcontrast option in man
page. (06d5728)
2023-11-06 Mike Gabriel
* Merge branch 'tari01-pr/kill-orca' (d48b9b3)
2023-11-06 Robert Tari
* src/arctica-greeter.vala: Fix killing Orca (19eb6b5)
2023-11-04 Mike Gabriel
* Merge branch 'tari01-pr/scroll-direction' (4d926cf)
2023-11-04 Robert Tari
* src/menubar.vala: Fix scroll direction value (daec7e9)
2023-11-04 Mike Gabriel
* Merge branch 'tari01-pr/add-scroll' (80d54d1)
2023-11-03 Robert Tari
* src/menubar.vala: Add scroll signalling (bbd3412)
2023-10-23 gallegonovato
* Translated using Weblate (Spanish) (b6e2c6d)
2023-10-20 Ryo Nakano
* Translated using Weblate (Japanese) (84d209c)
2023-10-12 Serhii Horichenko
* Translated using Weblate (Ukrainian) (74c6780)
* Translated using Weblate (Russian) (def5867)
2023-10-13 Quentin PAGÈS
* Translated using Weblate (Occitan) (c8cb544)
2023-10-14 gallegonovato
* Translated using Weblate (Spanish) (13e2d6d)
2023-10-13 Mike Gabriel
* release 0.99.4.0 (a68f7c4) (tag: 0.99.4.0)
2023-10-12 Serhii Horichenko
* Translated using Weblate (Ukrainian) (5de520b)
2023-10-12 Mike Gabriel
* Translated using Weblate (German) (c56d2f3)
* po/: Update translation files once more. (9899ec2)
* po/: Manually fix ru.po and uk.po. (895ea23)
2023-10-12 Serhii Horichenko
* Translated using Weblate (Ukrainian) (01c65b9)
* Translated using Weblate (Russian) (9c206b7)
2023-10-12 Mike Gabriel
* Translated using Weblate (German) (3c78941)
2023-10-12 Serhii Horichenko
* Translated using Weblate (Ukrainian) (355998e)
* Translated using Weblate (Russian) (c52b6b2)
2023-10-12 Mike Gabriel
* po/: Update translation files. (b908fa9)
* src/greeter-list.vala: Leave it unclear in message whether username
or password was invalid. (8c87ad2)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Rework summary
strings, esp. let them end with a full-stop. (e7c25dc)
2023-10-12 Mihai Moldovan
* Merge branch 'sunweaver-mr/add-font-scaling-support' (97001bc)
2023-10-11 Mike Gabriel
* po/: Update translation files. (df05936)
2023-09-30 Mike Gabriel
* settings: Add font scaling via GDK_DPI_SCALE. This is not
adjustable at runtime (for now). (d60f177)
2023-10-10 Mike Gabriel
* Merge branch 'Ionic-feature/hidpi-error-handling' (008705c)
2023-10-06 Mihai Moldovan
* src/arctica-greeter.vala: add error handling to check_hidpi ().
(f3a3bc4)
2023-10-10 Mike Gabriel
* Merge branch 'tari01-pr/indicator-dbus-path' (9e1b5ad)
2023-10-09 Robert Tari
* src/arctica-greeter.vala: Change D-Bus name and path (04b6109)
2023-10-05 Milan Šalka
* Translated using Weblate (Slovak) (a395c5e)
2023-10-06 Mihai Moldovan
* Merge branch 'sunweaver-mr/logo-position' (1c9f536)
* Merge branch 'sunweaver-mr/earlier-hidpi-setup' (23a2bd2)
2023-09-30 Mike Gabriel
* src/arctica-greeter.vala: Move HiDPI setup above OptionContext
parsing. (27993e4)
2023-10-06 Mihai Moldovan
* Merge branch 'sunweaver-mr/earlier-env-var-setup' (57838b0)
2023-09-30 Mike Gabriel
* Move NM_APPLET_HIDE_POLICY_ITEMS env var setting above
OptionContext parsing. (9f1c482)
2023-10-06 Mihai Moldovan
* Merge branch 'sunweaver-mr/drop-big-font-code' (fc424c8)
2023-09-30 Mike Gabriel
* Drop big-font setting. Font scaling will be handled differently and
more statically. (975dafd)
2023-10-06 Mihai Moldovan
* Merge branch 'sunweaver-mr/greeter-set-env' (adfa1f3)
2023-09-30 Mike Gabriel
* Move greeter_set_env to AGUtils. (b96c755)
2023-10-06 Mihai Moldovan
* Merge branch 'sunweaver-mr/show-login-labels' (cab9f6a)
2023-09-25 Mike Gabriel
* Show labels for 'Username:' and 'Password:' if configured via
gsettings. (622780a)
Fixes:
https://github.com/ArcticaProject/arctica-greeter/issues/62
2023-10-05 Mike Gabriel
* src/background.vala: better positioning of logo, make the
positioning independent of logo height (i.e., adjust the
position to the logo height). (7bbd070)
2023-10-05 Mihai Moldovan
* Merge branch 'sunweaver-mr/libexecdir-debian' (df7825b)
2023-09-30 Mike Gabriel
* debian/: Install all helper scripts to LIBEXECDIR. (a94b229)
2023-10-05 Mihai Moldovan
* Merge branch 'sunweaver-mr/drop-commented-out-code' (55cfcc8)
2023-09-26 Mike Gabriel
* src/main-window.vala: Drop obsolete / commented out code. (199b640)
2023-10-05 Mihai Moldovan
* Merge branch 'sunweaver-mr/button-grey-tone-in-toggle-box'
(2d3628e)
2023-09-30 Mike Gabriel
* src/toggle-box.vala: In high-contrast mode, brighten up the
non-selected buttons. Provide as much contrast between
white, gray and black as possible. (28c7db3)
2023-10-03 Mike Gabriel
* Merge branch 'tari01-pr/move-orca-onboard-init' (b98ac08)
2023-10-03 Robert Tari
* src/arctica-greeter.vala: Initialise OnBoard and Orca after the
greeter is presented (a914e22)
2023-10-03 Mike Gabriel
* Merge branch 'sunweaver-mr/initialize-sr-and-osk' (1328cb1)
2023-09-26 Mike Gabriel
* src/arctica-greeter.vala: Initialize screen-reader and OSK as
configured in gsettings. (2f200b0)
2023-10-01 Quentin PAGÈS
* Translated using Weblate (Occitan) (0a64b48)
2023-10-03 Mike Gabriel
* Merge branch 'sunweaver-mr/osk-theme-toggling' (53795ed)
2023-09-21 Mike Gabriel
* a11y / OSK: Restart OSK on theme toggling (normal/high-contrast)
and adjust the OSK theme accordingly. (8943989)
2023-09-30 gallegonovato
* Translated using Weblate (Spanish) (70c3a0f)
2023-09-30 Mike Gabriel
* Translated using Weblate (German) (d3bf7c9)
* po/: Translation update. (e9ee7fd)
2023-09-28 Tomáš Marný
* Translated using Weblate (Czech) (df6700a)
2023-09-26 Tomáš Marný
* Translated using Weblate (Czech) (aaf538e)
2023-09-26 Filip Hron
* Translated using Weblate (Czech) (8cbafec)
2023-09-26 Tomáš Marný
* Translated using Weblate (Czech) (e7c65c8)
2023-09-23 Ryo Nakano
* Translated using Weblate (Japanese) (d26d014)
2023-09-19 Mike Gabriel
* Merge branch 'sunweaver-mr/highcontrast-icon-theme-toggling'
(03092a0)
2023-09-18 Mike Gabriel
* src/settings.vala: refactor (icon) theme setting in a cleaner way.
(273045d)
* src/arctica-greeter.vala: Check for high-contrast mode when
initializing gtk-theme-name and gtk-icon-theme-name.
(0f287c9)
2023-09-19 Mihai Moldovan
* src/settings.vala: remove default_theme_name_ private variable.
(f2f92d4)
2023-09-17 Mike Gabriel
* src/settings.vala: Introduce 'high-contrast-icon-theme-name'
gsetting and toggle icon theme if a11y indicator's high
contrast switch gets toggled. (c57a53e)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Switch from
HighContrastInverse to HighContrast as default GTK+ theme.
(b974016)
2023-09-18 Mihai Moldovan
* Merge branch 'sunweaver-mr/highcontrast-background-color' (264b8a7)
2023-09-18 Mike Gabriel
* src/background.vala: Produce debug output when current_background
gets changed. (d99c415)
* src/background.vala: Disable drawing the grid when in high-contrast
mode. (d49e351)
* a11y: Disable background image when in high-contrast mode.
(72e03f9)
* src/user-list.vala: Add debug output on high-contrast toggle switch
background change requests. (7cbf0b1)
2023-09-16 Mike Gabriel
* Merge branch 'tari01-pr/use-ayatana-a11y' (233d577)
2023-07-03 Robert Tari
* Drop all internal a11y indicator related code (5509d9c)
* src/arctica-greeter.vala: Toggle Orca, high contrast and OnBoard
via D-Bus (2c57167)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Use Ayatana
a11y indicator (ee69fd5)
2023-09-15 Mihai Moldovan
* Merge branch 'sunweaver-mr/hide-default-xsessions' (8f5cb2c)
2023-09-15 Mike Gabriel
* src/arctica-greeter.vala: In validate_session() make it easier for
the human eye to identified code-blocks. (6921a38)
* src/arctica-greeter.vala: Use '&&' operators instead of '&' in
if-clauses. (f917d8c)
* Introduce gsetting (bool): hide-default-xsession. (e3e1452)
2023-09-15 Mihai Moldovan
* Merge branch 'sunweaver-mr/hide-enforce-only-sessions' (a10a482)
2023-09-15 Mike Gabriel
* Introduce gsettings (list): includeonly-sessions,
excluded-sessions. (8dfc61b)
2023-09-15 Mihai Moldovan
* Merge branch 'sunweaver-mr/session-chooser-fix-sorting' (6c027e7)
2023-09-15 Mike Gabriel
* src/session-list.vala: Rework case-insensitive session sorting. Do
the sorting on a deep copy of the session list from
LightDM. (c284698)
2023-09-15 Mihai Moldovan
* Merge branch 'sunweaver-mr/fix-font-size-without-unit' (9faeec2)
2023-09-15 Mike Gabriel
* src/toggle-box.vala: Fix runtime Gtk.Warning about missing size
unit. Using size unit 'pt' now (and reducing font size by
3). (e7f1111)
2023-09-15 Mihai Moldovan
* Merge branch 'sunweaver-mr/preferred-sessions-gsettings' (cf4253c)
2023-09-15 Mike Gabriel
* Introduce gsetting (array of strings): preferred-sessions.
(2c4ff94)
2023-09-15 Mihai Moldovan
* Merge branch 'sunweaver-mr/default-to-gtk-drop-auto-detection'
(b542dbe)
2023-09-15 Mike Gabriel
* configure.ac: Drop auto-recognition of GTK library, default to
GTK-3. (277c25e)
* Merge branch 'Ionic-feature/gtk34-chooser' (5a0a920)
2023-09-12 Mihai Moldovan
* {src,tests}/Makefile.am: implement proper GTK+ 3/GTK 4 switching
support. (df8e0f9)
Fixes:
https://github.com/ArcticaProject/arctica-greeter/issues/56
* configure.ac: add --disable-gtk4 flag. (60a55eb)
Fixes:
https://github.com/ArcticaProject/arctica-greeter/issues/56
2023-09-11 Mike Gabriel
* Merge branch 'sunweaver-pr/fix-multiseat-support-with-systemd'
(b54bc72)
* src/arctica-greeter.vala: Add FIXME for new/direct indicator
startup method. (c3d8a7d)
2023-09-01 Mike Gabriel
* data/50-arctica-greeter.conf.in: Reenable
lightdm-arctica-greeter-session greeter-wrapper again.
(2561414)
* src/arctica-greeter.vala: Drop indicator startup via systemctl and
spawn_async them directly. (0c431ca)
* debian/control: Drop dbus-x11 from B-D. (0fd4f87)
* lightdm-arctica-greeter-session: Switch from dbus-launch to
dbus-run-session. (dfbe9cb)
2023-09-11 Mike Gabriel
* Merge branch 'Ionic-bugfix/shutdown-dialog-resize' (b35978f)
2023-09-04 Mihai Moldovan
* src/shutdown-dialog.vala: keep dialog size fixed. (d29ba9c)
Fixes:
https://github.com/ArcticaProject/arctica-greeter/issues/58
2023-09-08 gallegonovato
* Translated using Weblate (Spanish) (35c88c1)
2023-09-07 Mihai Moldovan
* Merge branch 'sunweaver/rephrase-shutdown-timeout-message'
(4af2208)
2023-09-01 Mike Gabriel
* src/shutdown-dialog.vala: Rephrase shutdown dialog's new timeout
message(s) slightly. (6bfe258)
2023-09-06 bittin1ddc447d824349b2
* Translated using Weblate (Swedish) (65b9431)
2023-09-03 Serhii Horichenko
* Translated using Weblate (Ukrainian) (1678fc1)
* Translated using Weblate (Russian) (8e0de0e)
2023-09-02 gallegonovato
* Translated using Weblate (Spanish) (0764365)
2023-08-31 Mike Gabriel
* Translated using Weblate (German) (57fc828)
* po/: Update translation files. (ef896f8)
* Merge branch 'Ionic-feature/shutdown-dialog-timeout' (6df8607)
2023-08-31 Mihai Moldovan
* src/shutdown-dialog.vala: implement timer function triggering
focused button. (91d8d20)
Fixes:
https://github.com/ArcticaProject/arctica-greeter/issues/39
* src/shutdown-dialog.vala: remove focus_{next,prev}. (9b8185c)
* settings: add shutdown-dialog-timeout integer option. (2c782ad)
2023-08-30 Mike Gabriel
* Merge branch 'Ionic-bugfix/tiny-window-on-startup' (d5463d3)
2023-08-30 Mihai Moldovan
* src/arctica-greeter.vala: fix tiny main window on startup.
(9a8c29d)
Fixes:
https://github.com/ArcticaProject/arctica-greeter/issues/47
2023-08-28 Mike Gabriel
* Merge branch 'Ionic-feature/configurable-logo-alpha' (e4e7bde)
2023-08-28 Mihai Moldovan
* background: use logo alpha dconf setting. (5893632)
Fixes:
https://github.com/ArcticaProject/arctica-greeter/issues/21
* settings: add configuration option for logo alpha. (240d478)
2023-08-07 Mike Gabriel
* Merge branch 'tari01-pr/no-user-rename' (50d3378)
2023-07-02 Robert Tari
* src/arctica-greeter.vala: Do not rename users in D-Bus methods
(d4e7229)
2023-05-09 Mike Gabriel
* Merge branch 'tari01-pr/user-change-fix' (f775bdc)
2023-05-09 Robert Tari
* src/arctica-greeter.vala: Modify user change signalling (63e6243)
2023-05-09 Mike Gabriel
* Merge branch 'tari01-pr/gdk-x11-display-cast' (c4e49bf)
2023-05-08 Robert Tari
* src/idle-monitor.vala: Fix Gdk.Display -> Gdk.X11.Display casting
(c3820b9)
* src/main-window: Rewrite some deprecated Gtk.Alignments (886d9b7)
* src/menubar.vala: Fix host name position (9b4d664)
2023-05-07 Mike Gabriel
* Merge branch 'tari01-pr/dbus-server' (7004a8b)
2023-05-06 Robert Tari
* src/arctica-greeter.vala: Add D-Bus server with methods needed by
the keyboard indicator (bfb99d8)
* Add missing default to switch (36ac6b1)
* Fix some deprecations (a919238)
* Comment out unused code (a2240b3)
2023-05-05 Robert Tari
* Fix casting issues (0718f26)
* Add missing error handlers (c9b2de2)
* Fix error handlers for D-Bus methods (1c150a7)
2023-05-07 Mike Gabriel
* Merge branch 'Ionic-bugfix/pam-messages-and-misc' (3c44cdf)
2023-03-22 Mihai Moldovan
* src/arctica-greeter.vala: fix "this this" typo in comment.
(bb6534f)
* tests/arctica-greeter.vala: remove left-over singleton class
member. (1acf31c)
* src/prompt-box.vala: darken red error message text color. (5cc2e00)
* src/prompt-box.vala: set background color for error messages to
pure white. (20836a6)
* src/prompt-box.vala: enable line wrapping for (error) messages.
(036a3b7)
* configure.ac: pass INDICATORDIR down to automake. (8cda2dd)
2023-05-03 Geoff Paul
* Add option to span background across multiple monitors (cad5922)
2023-05-03 Mike Gabriel
* main-window: Smooth transition to greeter screen. (3a5ca24)
2023-04-03 Mike Gabriel
* Add support for hiding X11 and/or Wayland sessions. (2614224)
* data/badges/: Add badge for (open)SUSE's 'SLE Classic' session.
(c9a2d90)
* src/session-list.vala: Treat 'gnome-xorg' as GNOME and 'plasma5'
has KDE, as well. (7bb7689)
2023-03-02 Mike Gabriel
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Use 'Compact'
onboard layout for providing special keys such as Umlauts
etc. (5cd780e)
* OSK: Add OSK theme gsetting to individually configure the OSK theme
used via ArcticaGreeter's settings. (c681797)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Improve
description of onscreen-keyboard-layout. (f2eeb8a)
2023-03-01 Mike Gabriel
* release 0.99.3.0 (1dde4fc) (tag: 0.99.3.0)
* debian/control: Drop from D (arctica-greeter): marco. (1858744)
2022-02-28 Bastian Kanbach
* Remove marco WM due to logon screen bypass (7a865a1)
2023-03-01 Mike Gabriel
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Use Numix GTK
theme by default. (7603157)
* debian/control: Drop from D (arctica-greeter): mate-themes.
(4ecac1d)
* src/: Get rid of various vala interpreter warnings. (ea1692f)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Use Numix Icon
Theme by default. (03b4ed0)
* debian/control: Add to D (numix-icon-theme). (ad0fffb)
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Use Noto Sans
by default. (7aba5e7)
* debian/control: Add to D (arctica-greeter): fonts-noto-core.
(cf23a57)
* src/toggle-box.vala: Allow for more fine-grained color-tweaking of
the toggle box (session selector box) via gsettings.
(15a2c21)
* src/flat-button.vala: Allow color-theming (etc.) of buttons created
via the FlatButton class. (a4537a4)
* src/shutdown-dialog.vala: Make shutdown/reboot dialog's font
configurable via gsettings (use same font as rest of the
greeter). (5c9019b)
* debian/rules: Fix build on Debian 11. Needs dpkg's architecture.mk
included at build time. (1d3040e)
* src/toggle-box.vala: Drop draw() method. Seems unused these days.
(a1fa58d)
* arctica-greeter's test mode: No keyboard tweaks in test mode.
(5a720b7)
* arctica-greeter's test mode: Add cmdline args
'--test-highconstrast' and '--test-bigfont' (soon to come
feature). (d758529)
* src/arctica-greeter.vala: Don't launch Lomiri-related DBus
listeners in test mode. Allows one to run arctica-greeter
in test-mode within a Lomiri session. (812b098)
* debian/arctica-greeter.install: Adjust to moved background image.
(4e6b30f)
* backgrounds: Move background image into namespaced datadir. Don't
mix with officially installed system-wide desktop
backgrounds. (7fc2230)
* src/{arctica-greeter,greeter-list}.vala: Mimick a Lomiri Greeter,
make ArcticaGreeter behave well, when interacting with
Lomiri Shell. (0019745)
2023-02-28 Mike Gabriel
* Add badge for 'mir-shell' DESKTOP_SESSION. (4d51a21)
* Arctica Greeter background image: Replace background image by an
image take from lomiri-wallpapers. (d3d9efd)
* src/arctica-greeter.vala: Adjust to DBus renamings in Ayatana
Indicator Session. We use the com.lomiri.Shell interface
to communite between session indicator and Arctica
Greeter. (f0a3be9)
2023-02-25 Mike Gabriel
* src/session-list.vala: Use correct file name 'lomiri_badge.png'.
(2ebd03b)
* data/Makefile.am: Add lomiri_badge.png. (98b200b)
* Fix file name of Lomiri badge. (a44f9fa)
* Add badge for Lomiri. (4d232db)
* src/arctica-greeter.vala: Don't assign new value to method
argument. (15bf6c9)
2023-02-24 Mike Gabriel
* src/arctica-greeter.vala: Already fall back to LightDM's system
default for 'session' in ArcticaGreeter's
get_default_session(). (4c6c659)
* src/arctica-greeter.vala: Always use ArcticaGreeter's
default_session_hint(). No direct access to LightDM's
version of it. (6c9ecb6)
* src/arctica-greeter.vala: Turn get_default_session() and
validate_session() into non-static methods. (537442f)
* Use ArcticaGreeter's way of detecting the default session, only
fallback to LightDMs default if absolutely necessary.
(c99e78a)
* src/arctica-greeter.vala: Drop now unused continue_init variable.
(75f05d2)
* src/arctica-greeter.vala: Prefer wayland sessions over X11
sessions. (5782553)
* src/arctica-greeter.vala: Add Lomiri to list of potential default
sessions (if installed). (be96632)
2023-02-24 Ivan Podogov
* Allow wayland sessions to pass validation. (f717060)
2023-02-24 Mike Gabriel
* po/: Update .pot file (line number changes only). (25329ea)
* src/arctica-greeter.vala: Move ArcticaGreeter method further up
again, so it is located below the constructor() method.
(28440bc)
* src/arctica-greeter.vala: Move Glib.Bus.watch_name() call out of
ArcticaGreeter's contructor into separate
ArcticaGreeter.go() method. (2c2cc67)
* Merge branch 'Ionic-bugfix/test-mode' (b5f8395)
2023-02-22 Mihai Moldovan
* src/arctica-greeter.vala: fix test mode. (30035fe)
Fixes:
https://github.com/ArcticaProject/arctica-greeter/issues/42
2023-02-09 Luna Jernberg
* Translated using Weblate (Swedish) (a008c6c)
2023-02-09 Ajeje Brazorf
* Translated using Weblate (Sardinian) (9e29e7c)
2023-02-08 Quentin PAGÈS
* Translated using Weblate (Occitan) (3ae9ce6)
2023-02-08 Milo Ivir
* Translated using Weblate (Croatian) (d43ce3b)
2023-02-09 Andi Chandler
* Translated using Weblate (English (United Kingdom)) (f6e1706)
2023-02-06 gallegonovato
* Translated using Weblate (Spanish) (2e287b7)
2023-02-07 Mike Gabriel
* Translated using Weblate (German) (74166c8)
2023-02-06 Mike Gabriel
* release 0.99.2.0 (bdaeb65) (tag: 0.99.2.0)
* Revert "release 0.99.2.0" (9bf2ffc)
* po/: Merge-in translation template into translation files.
(086b62d)
* release 0.99.2.0 (a432216)
* po/ie.po: Drop version number from header. (029d033)
* po/: Update translation file. (f79ad2b)
* src/arctica-greeter.vala: Fix path of helper executable
arctica-greeter-enable-tap-to-click. (2568a06)
* Merge branch 'sunweaver-pr/ports-from-slick-greeter' (0941cb7)
* .patches-to-be-ported-from-slick-greeter/: ToDo: check whether to
port this Slick Greeter patches to Arctica Greeter.
(5ffd6d9)
2021-01-10 Joshua Peisach
* shutdown-dialog: margin left/right -> margin_start_end. (ea99495)
2023-02-06 Mike Gabriel
* Enable touchpad tap-to-click. (d30af2b)
2023-01-17 Clement Lefebvre
* user-list: Allow hidden user visibility to be toggled. (c5f16ea)
2023-02-06 Mike Gabriel
* README.md: Provide README.md file, using Slick Greeter's README.md
as inspiration. (2a13e84)
2023-01-17 Clement Lefebvre
* arctica-greeter-check-hidpi: Fix deprecations. (ed942f5)
* entry: Support the ability to reveal the password. (f746108)
2023-02-06 Mike Gabriel
* a11y: Make the onboard layout configurable. (3d288d3)
2023-01-17 Clement Lefebvre
* keyboard navigation: Don't prevent left/right movement in
Gtk.Entry. (395b2ca)
2023-02-06 Clement Lefebvre
* sessions: Close dialog on Escape. (74ad7ac)
2023-01-13 Clement Lefebvre
* sessions: Add a tooltip on the session badge. (2577b8a)
* badges: Add lxqt. (f026668)
* badges: Add pademelon. (d07a49f)
2023-02-06 Clement Lefebvre
* sessions: Make the list scrollable. (6101635)
2023-01-13 Clement Lefebvre
* orca: Fix wrong a11y text for username prompt. (499274f)
2023-02-06 Michael Webster
* cursor size: Use 24 as a default size instead of 0. (52aa64b)
* Set our own cursor theme and size internally via GtkSettings.
(4807300)
2021-01-02 Jacob
* Add badge for fynedesk. (d1371ed)
2019-08-05 Louis des Landes
* Add sway badge. (d7cfd53)
2019-07-01 mwileczka
* Fixed default session for manual user entry. (828cae8)
2023-02-06 Mike Gabriel
* src/arctica-greeter.vala: Apply HiDPI settings after command line
has been parsed (so we know if we are in test-mode or
not). (e79bf3a)
* Merge remote-tracking branch
'gh-Ionic/feature/high-contrast-big-font' (642cbe7)
* src/menubar.vala: Hide the bigfont feature until it's really
available. (bf00dad)
2022-12-06 Mihai Moldovan
* misc src/: completely rework high contrast mode, add stub for big
font mode. (33d2f8d)
* src/: add util.vala, wrapping a GTK 3 function for use within vala.
(131bcb9)
* src/toggle-box.vala: fix CSS style. (41bd371)
* misc src/: make ArcticaGreeter a proper vala SingleInstance class.
(32d28d7)
* src/settings.vala: make SingleInstance class. (600fbb6)
2023-01-19 Dan
* Translated using Weblate (Ukrainian) (b2fac08)
2023-01-18 tygyh
* Translated using Weblate (Swedish) (510c9cc)
2023-01-05 Jack Tam
* Translated using Weblate (Chinese (Traditional, Hong Kong))
(72b0f06)
2022-11-28 Mike Gabriel
* src/settings-daemon.vala: Also set rfill MSD plugin to disabled in
greeter. (e09a615)
* src/settings-daemon.vala: Use correct MSD schema names. (0199f9a)
2022-10-01 Eric
* Translated using Weblate (Chinese (Simplified)) (34f82d1)
2022-10-01 yangyangdaji
* Translated using Weblate (Chinese (Simplified)) (152796c)
2022-10-01 yinaroh@all-mail.net
* Translated using Weblate (Chinese (Simplified)) (9c94d84)
2022-10-01 Kocic W
* Translated using Weblate (Chinese (Simplified)) (55a274c)
2022-10-01 yinaroh@all-mail.net
* Translated using Weblate (Chinese (Simplified)) (8549204)
2022-10-01 yangyangdaji
* Translated using Weblate (Chinese (Simplified)) (e3acb1d)
2022-10-01 yinaroh@all-mail.net
* Translated using Weblate (Chinese (Simplified)) (54f9134)
2022-10-01 yangyangdaji
* Translated using Weblate (Chinese (Simplified)) (3a253af)
2022-10-01 yinaroh@all-mail.net
* Translated using Weblate (Chinese (Simplified)) (07801a2)
2022-06-27 Mike Gabriel
* src/toggle-box.vala: Port font-family-with-blanks-fix from
prompt-box to toggle-box. (01dc463)
* session-list: Add badge for IceWM. (f87d2df)
* src/prompt-box.vala: Use regular expression to split KEY_FONT_NAME
into font_family and font_size. (b49b1c1)
* .travis.yml: Add CI builds for Ubuntu 22.04. (aa7bb9a)
* .build.yml: Skip CI tests on ppc64el for now. Something seems to be
broken over at Travis CI regarding ppc64el. (e8aeeed)
2022-06-27 Elyes HAOUAS
* po/fr_CA.po: typo fix. (bc611c2)
2021-10-05 Elyes HAOUAS
* Fix some typos (727cfb9)
2022-06-26 Mike Gabriel
* src/Makefile.am: Avoid duplicate double-quotes. (2a52fce)
* configure.ac: Show summary of build parameters at end of configure.
(9d12924)
2022-04-21 Michael Kha
* Translated using Weblate (Burmese) (b3b79ca)
2022-04-01 Mike Gabriel
* .travis.yml: Use Ubuntu focal base image for CI builds. (9bf6a77)
* .travis.yml: Fix docker-build script URL (default branch has been
renamed to 'main'). (c61117a)
2022-01-24 yzqzss
* Translated using Weblate (Chinese (Simplified)) (0335568)
2022-01-07 Eric
* Translated using Weblate (Chinese (Simplified)) (4c4d19d)
2021-09-29 Civil 056DB
* Translated using Weblate (Urdu) (45d3e95)
2021-09-27 ប៉ុកណូ រ៉ូយ៉ាល់
* Translated using Weblate (Khmer (Central)) (3999c85)
2021-09-25 Ivano Peddis
* Translated using Weblate (Sardinian) (9d193f7)
2021-09-07 Quentin PAGÈS
* Translated using Weblate (Occitan) (47b32de)
2021-09-07 Sanaf
* Translated using Weblate (Bengali) (c61bdc3)
2021-09-06 Urszula
* Translated using Weblate (Polish) (52c0d9b)
2021-06-07 Mike Gabriel
* Merge branch 'ElyesH-master' (d8c5ec9)
2021-04-22 Elyes HAOUAS
* Fix some typos (bf8d2e1)
2021-06-07 Mike Gabriel
* .build.yml: Disable unit tests for now. They are badly maintained.
(a8d77c4)
* Travis CI: Initial CI build configuration. (8b60e3e)
2021-05-27 Oymate
* Translated using Weblate (Bengali) (32dff28)
2021-05-12 Mike Gabriel
* debian/control: Add B-D: lightdm (for detecting where
lightdm-guest-session resides). (f1aa1f3)
2021-04-12 Mike Gabriel
* debian/rules: At least at build time, try to find the
lightdm-guest-session executable. On purpose, we have kept
this outside of the upstream code. (1ea38a1)
* data/50-arctica-greeter.conf.in: Drop long ago commented out
greeter-wrapper option for [Seat:*]. (7b6860d)
* debian/rules: Explicitly set GUEST_WRAPPER_BINARY during
auto_configure. (801bc4e)
* guest-session: Make path to lightdm-guest-session executable
adaptable to the lightdm package this greeter is
co-installed with. (000f603)
* debian/9<X>-arctica-greeter*.conf: Section [SeatDefaults] is now
[Seat:*]. (6420bcc)
* src/main-window.vala: Fix missing parenthesis-close in debug
message. (9906e2f)
2021-03-16 Tummas Jóhan Sigvardsen
* Translated using Weblate (Faroese) (3bf2dd7)
2021-02-22 ShahinF27
* Translated using Weblate (Azerbaijani) (e434fd8)
2021-02-18 Reza Almanda
* Translated using Weblate (Indonesian) (d647efe)
2021-02-08 Michalis
* Translated using Weblate (Greek) (5a58c8d)
2021-02-07 Michalis
* Translated using Weblate (Greek) (de9139d)
2021-02-04 Michalis
* Translated using Weblate (Greek) (8a6536c)
2021-02-05 Mike Gabriel
* release 0.99.1.5 (8741776) (tag: 0.99.1.5)
2020-12-07 Jacque Fresco
* Translated using Weblate (Malay) (7ac42ab)
2020-11-24 Jakub Fabijan
* Translated using Weblate (Polish) (cec6722)
2020-11-11 Habib Rohman
* Translated using Weblate (Indonesian) (b1a0662)
2020-10-23 Adolfo Jayme Barrientos
* Translated using Weblate (Spanish) (7469254)
* Translated using Weblate (Catalan) (b128ea4)
2020-09-24 Lauri Virtanen
* Translated using Weblate (Finnish) (a33cee4)
2020-09-21 Kornelijus Tvarijanavičius
* Translated using Weblate (Lithuanian) (d40b6ae)
2020-09-18 Satnam S Virdi
* Translated using Weblate (Punjabi) (e6af2c9)
2020-09-14 Doma Gergő
* Translated using Weblate (Hungarian) (4479c15)
2020-09-12 ssantos
* Translated using Weblate (Portuguese) (db07aca)
2020-09-13 Nathan
* Translated using Weblate (French) (34d16a4)
2020-09-08 Suraj
* Translated using Weblate (Malayalam) (ad92403)
2020-09-04 antuketot76
* Translated using Weblate (Malay) (a4e4c5f)
2020-08-27 Quentin PAGÈS
* Translated using Weblate (Occitan) (aecd5be)
2020-08-29 oo nth
* Translated using Weblate (Hindi) (4bb43cf)
2020-08-23 Mike Gabriel
* debian/control: The bin:pkg is a linux-any package (as we require
systemd at runtime). (e64eafd)
* Drop all distro-theming packages and dependencies and default to
Blue-Submarine GTK theme, Adwaita Icon theme and 'Sans'
font. (36d9d07)
2020-08-20 Satnam S Virdi
* Translated using Weblate (Punjabi) (b95bf57)
2020-08-07 Oğuz Ersen
* Translated using Weblate (Turkish) (bd791c2)
2020-07-30 Sithu Aung
* Translated using Weblate (Burmese) (a6fb951)
2020-07-28 Kristjan Räts
* Translated using Weblate (Estonian) (e3f879f)
2020-07-23 lingcas
* Translated using Weblate (Chinese (Traditional, Hong Kong))
(9bd4d4b)
2020-07-19 ssantos
* Translated using Weblate (Portuguese) (d6a91f6)
2020-07-14 TA
* Translated using Weblate (Indonesian) (46d63a5)
2020-07-08 Abdul Khan
* Translated using Weblate (Hindi) (7a35bbd)
2020-06-21 CHAIWIT PHONKHEN
* Translated using Weblate (Thai) (c5db576)
2020-06-18 Gaurav Kumar
* Translated using Weblate (Hindi) (d967b3f)
2020-05-30 Pratchaya Chatuphian
* Translated using Weblate (Thai) (d4cf42c)
2020-05-15 RIZWAN AHMAD
* Translated using Weblate (Hindi) (ca2c104)
2020-05-14 Andrius Majauskas
* Translated using Weblate (Lithuanian) (4377379)
2020-05-08 Abdusalam
* Translated using Weblate (Uyghur) (27f32db)
2020-04-03 Allan Nordhøy
* Translated using Weblate (Nepali) (d5ad59b)
2020-03-23 Buescu Bogdan
* Translated using Weblate (Romanian) (0683b69)
2020-03-17 Satnam S Virdi
* Translated using Weblate (Punjabi) (5d8e67c)
2020-03-13 Hemanta Sharma
* Translated using Weblate (Nepali) (a91297d)
2020-03-02 พัชรพล ผาริวงศ์
* Translated using Weblate (Thai) (a87b542)
2020-02-25 f0roots
* Translated using Weblate (Romanian) (b070191)
2020-02-19 Michal Biesiada
* Translated using Weblate (Polish) (957d2d1)
2020-02-19 Nirmal Manoj C
* Translated using Weblate (Malayalam) (375f0e8)
2020-02-20 Mike Gabriel
* Revert "Translated using Weblate (Latin)" (69708cd)
2020-02-07 bughuntermert
* Translated using Weblate (Latin) (f55dfd6)
2020-02-03 Garreciq
* Translated using Weblate (Polish) (d23a7a4)
2020-02-01 Guntitat Sawadwuthikul
* Translated using Weblate (Thai) (73a1190)
2020-01-19 آراز
* Translated using Weblate (Persian) (5b9c13b)
2020-01-10 ihaveapiece
* Translated using Weblate (Persian) (f88d2e9)
2020-01-08 Manuela Silva
* Translated using Weblate (Portuguese) (9de9396)
2020-01-07 Jun Hyung Shin
* Translated using Weblate (Korean) (cf82da9)
2020-01-05 Prachi Joshi
* Translated using Weblate (Marathi) (764e1ca)
2020-01-02 Mareks Dunkurs
* Translated using Weblate (Latvian) (c4c61a3)
2019-12-31 Milo Ivir
* Translated using Weblate (Croatian) (938542f)
2019-12-30 Sveinn í Felli
* Translated using Weblate (Icelandic) (05829ca)
2019-12-28 Prachi Joshi
* Translated using Weblate (Marathi) (32755b8)
2019-12-27 Prachi Joshi
* Translated using Weblate (Marathi) (46b6800)
* Translated using Weblate (Marathi) (ff023ca)
2019-12-21 Prachi Joshi
* Translated using Weblate (Marathi) (112e213)
2019-12-02 Mike Gabriel
* release 0.99.1.4 (8b23c20) (tag: 0.99.1.4)
* Fix 'Creation method of abstract class cannot be public.' in
GreeterList class. (28202f9)
2019-11-28 Saroj Dhakal
* Translated using Weblate (Nepali) (fb7bace)
2019-11-13 Oto Zars
* Translated using Weblate (Latvian) (7f09744)
2019-11-09 Tuomas Lähteenmäki
* Translated using Weblate (Finnish) (57ddfd4)
2019-11-02 Allan Nordhøy
* Translated using Weblate (Albanian) (629d44f)
2019-10-29 Arsen Shehi
* Translated using Weblate (Albanian) (7bdd512)
2019-10-23 Mattias Münster
* Translated using Weblate (Swedish) (3a31d29)
2019-10-14 ศักดิ์นรินทร์ ชาติทอง
* Translated using Weblate (Thai) (6147e0a)
2019-10-10 Jennifer
* Translated using Weblate (Dutch) (15feb99)
2019-10-07 BennyBeat
* Translated using Weblate (Catalan) (2a05006)
2019-10-04 JaewonLee0217
* Translated using Weblate (Korean) (1cd7183)
2019-10-01 김상남
* Translated using Weblate (Korean) (ebe04fa)
2019-09-28 yzqzss
* Translated using Weblate (Chinese (Simplified)) (a998ad4)
2019-09-28 Juri Grabowski
* Translated using Weblate (Russian) (c509ed0)
2019-09-07 thami simo
* Translated using Weblate (Arabic) (f7e37f4)
2019-08-27 Swann Martinet
* Translated using Weblate (English (Canada)) (e792847)
* Translated using Weblate (English (Australia)) (b974ee0)
2019-08-27 leela
* Translated using Weblate (Uzbek) (f592d18)
2019-08-27 Swann Martinet
* Translated using Weblate (French) (d4a1d9d)
* Translated using Weblate (Italian) (a4f3f4e)
2019-08-27 leela
* Translated using Weblate (Catalan) (692424b)
* Translated using Weblate (Bosnian) (362738b)
* Translated using Weblate (Basque) (bfd6d93)
2019-08-27 Swann Martinet
* Translated using Weblate (German) (6cebf1f)
2019-08-27 leela
* Translated using Weblate (Thai) (7c4ea33)
* Translated using Weblate (Gaelic) (536dab5)
* Translated using Weblate (Valencian) (af77119)
2019-08-25 leela
* Translated using Weblate (Marathi) (6f51cf1)
2019-08-22 Swann Martinet
* Translated using Weblate (French (Canada)) (a38ff99)
* Translated using Weblate (French) (5baea11)
2019-08-23 leela
* Translated using Weblate (Hindi) (5d3d996)
2019-08-22 Swann Martinet
* Translated using Weblate (English (United Kingdom)) (ee12a93)
2019-08-20 Adolfo Jayme Barrientos
* Translated using Weblate (Spanish) (0cb5ebf)
2019-08-16 Elizabeth Sherrock
* Translated using Weblate (Chinese (Simplified)) (974d88e)
2019-08-10 Sourav Jha
* Translated using Weblate (Hindi) (fdb4e05)
2019-08-04 Matúš Baňas
* Translated using Weblate (Slovak) (88b01eb)
2019-08-01 saeid porhosein
* Translated using Weblate (Persian) (d649d26)
* Translated using Weblate (English (United Kingdom)) (ed86167)
2019-07-26 yinaroh@all-mail.net
* Translated using Weblate (Chinese (Simplified)) (ef267a7)
2019-07-25 Alba Kaydus
* Translated using Weblate (English (United Kingdom)) (cde6f47)
2019-07-22 Pierre Soubourou
* Translated using Weblate (Esperanto) (5f9b0fa)
2019-07-25 Alba Kaydus
* Translated using Weblate (Filipino) (983f6b7)
2019-07-21 Pierre Soubourou
* Translated using Weblate (Esperanto) (61ea955)
2019-07-14 Ryo Nakano
* Translated using Weblate (Japanese) (80d67d4)
2019-07-09 Ali Avcı
* Translated using Weblate (Turkish) (17d7e9f)
2019-07-01 Elizabeth Sherrock
* Translated using Weblate (Chinese (Simplified)) (63042b4)
2019-06-05 Nader Jafari
* Translated using Weblate (Persian) (84a1d45)
2019-06-11 Lucas Ayala
* Translated using Weblate (Spanish) (797d81f)
2019-06-05 Sveinn í Felli
* Translated using Weblate (Icelandic) (77b8ed1)
2019-05-21 THANOS SIOURDAKIS
* Translated using Weblate (Greek) (ad0e7fa)
2019-05-14 John Rey Basilio
* Translated using Weblate (Filipino) (35532bf)
2019-04-28 gvlfm78
* Translated using Weblate (Italian) (0e872f2)
2019-04-26 Syahmin Sukhairi
* Translated using Weblate (Indonesian) (cad5644)
2019-04-19 Rui Mendes
* Translated using Weblate (Portuguese (Brazil)) (86d2d37)
* Translated using Weblate (Portuguese) (0e228e3)
2019-04-17 Jos Wolfkamp
* Translated using Weblate (Dutch) (540f8a2)
2019-03-17 Mike Gabriel
* release 0.99.1.3 (fb57bc0) (tag: 0.99.1.3)
2019-03-04 Pierluigi Ghinello
* Translated using Weblate (Italian) (b25b6f2)
2019-02-24 Yaron Shahrabani
* Translated using Weblate (Hebrew) (5ba0434)
2019-02-23 Doma Gergő
* Translated using Weblate (Hungarian) (8341e2d)
2019-02-19 Sandra M
* Translated using Weblate (Valencian) (9e3d9a7)
2019-03-17 Mike Gabriel
* update NEWS for 0.99.1.2 (we obviously forgot that...) (687a823)
* release 0.99.1.2 (2d9cdd0) (tag: 0.99.1.2)
* 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. (fbced2e)
*
debian/30_arctica-greeter-theme-debian-futureprototype.gschema.override:
Fix typo in SVG background image path. (3319cd2)
* Remove mlockall. (7aab296)
* Merge branch 'jbicha-vala44' (2a09380)
2019-03-06 Rico Tzschichholz
* Fix build with vala 0.44 (88f6c01)
2019-02-14 Mike Gabriel
* debian/*.gschema.override: Use <desktop-theme>/login/background.svg
as background image. Works on stretch and buster alike.
(88df37b)
2019-02-12 Mike Gabriel
* debian/control: Typo fix in LONG_DESCRIPTION. Spotted by Thomas
Vincent. (50ee97a)
2019-02-06 Mike Gabriel
* release 0.99.1.1 (37571f3) (tag: 0.99.1.1)
* update NEWS for 0.99.1.0 (we obviously forgot that...) (900dcfb)
2019-01-26 ssantos
* Translated using Weblate (Portuguese) (97fc865)
2019-01-11 Louies
* Translated using Weblate (Chinese (Traditional)) (7b8f0f2)
2018-12-25 Yadhesh Assassin
* Translated using Weblate (Tamil) (9bdd327)
2018-12-11 xhesikab
* Translated using Weblate (Albanian) (cc33c95)
2018-12-02 Ryo Nakano
* Translated using Weblate (Japanese) (bdf931c)
2018-11-22 ssantos
* Translated using Weblate (Portuguese) (5f9e664)
2018-11-23 Ryo Nakano
* Translated using Weblate (Japanese) (54ad9db)
2018-11-15 Oto Zars
* Translated using Weblate (Latvian) (3e378ad)
2018-11-13 Ryo Nakano
* Translated using Weblate (Japanese) (6cff804)
2018-11-12 rt
* Translated using Weblate (Japanese) (fbf6bd5)
2018-11-03 Kamen
* Translated using Weblate (Bulgarian) (c27ca56)
2018-10-03 scootergrisen
* Translated using Weblate (Danish) (2aa6dc4)
2018-10-01 Kristoffer Grundström
* Translated using Weblate (Swedish) (8bc3cb7)
2018-09-27 Володимир Бриняк
* Translated using Weblate (Ukrainian) (e6a07d4)
2018-09-25 A BOUZINAC
* Translated using Weblate (French) (2d271a7)
2018-09-23 Himanshu Awasthi
* Translated using Weblate (Hindi) (d25e979)
2019-02-06 Mike Gabriel
* Debian artwork: Move Debian logos into separate bin:pkgs. (d2339d9)
* debian/arctica-greeter-theme-debian.install: Drop logo file. No
more logo when the generic active theme from Debian gets
used. (a6bc3d4)
* debian/rules: Switch to dh_missing override for --fail-missing
post-install check. (30a05b6)
* 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. (b22daed)
2019-01-23 Mike Gabriel
* GSchema: Prepend a two-digit number to the override name of
arctica-greeter-theme-ubuntumate. (cbe181c)
* GSchema: Prepend a two-digit number to the override name of
arctica-greeter-theme-debian. (b917f0f)
2018-11-26 Cobinja
* Fix background if image file is not readable. (96fc2ca)
2018-11-26 Mike Gabriel
* arctica-greeter-theme-ubuntumate: Add theme for Ubuntu MATE (cave:
not installable on Debian). (ad14c13)
2018-11-19 Mike Gabriel
* debian/control: Update B-R libayatana-ido3-0.4-dev ->
libayatana-ido3-dev. (909a90a)
2018-09-11 Mike Gabriel
* Translated using Weblate (German) (0771250)
2018-09-06 mohsen sorny
* Translated using Weblate (Persian) (bbb6f88)
2018-09-05 mohamad farid
* Translated using Weblate (Malay) (b4284cc)
2018-08-31 Yaron Shahrabani
* Translated using Weblate (Hebrew) (e2095b3)
2018-08-29 WaldiS
* Translated using Weblate (Polish) (135b12d)
2018-08-28 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (ad4e62d)
2018-08-23 Viktar Vauchkevich
* Translated using Weblate (Belarusian) (ef04927)
2018-08-22 Kristjan Räts
* Translated using Weblate (Estonian) (da364e3)
2018-08-18 OIS
* Translated using Weblate (Occidental) (fdb8c84)
* Translated using Weblate (Russian) (bcf54c8)
2018-09-06 Mike Gabriel
* src/background.vala: Fix for previous commit. Vala needs a bool
expression in if-clauses. (4d0870b)
2018-08-22 Mike Gabriel
* 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. (db7f409)
2018-08-17 Mike Gabriel
* Translated using Weblate (German) (be4ea18)
* translations: Update translation files. (27e46fc)
* translations: Add Occidental (ie) language as requested by OIS on
Weblate. (7446652)
2018-08-09 deebeepea
* Translated using Weblate (Filipino) (58d308e)
2018-08-08 Filip Hron
* Translated using Weblate (Czech) (c0ad68e)
2018-08-08 Dharmendra
* Translated using Weblate (Gujarati) (1988c9c)
2018-07-19 Dovydas Jakas
* Translated using Weblate (Lithuanian) (2431ea1)
* Translated using Weblate (Lithuanian) (2c1e18e)
2018-07-10 Srichon Buntarigwong
* Translated using Weblate (Thai) (fecfed1)
2018-06-29 kong
* Translated using Weblate (Thai) (fc915fa)
2018-06-17 Calin Sopterean
* Translated using Weblate (Romanian) (c780d95)
2018-06-18 Doma Gergő
* Translated using Weblate (Magyar) (5a3edd5)
2018-06-12 whr
* Translated using Weblate (Chinese (Simplified)) (d4d1c40)
2018-06-11 Ilyas Bakirov
* Translated using Weblate (Kyrgyz) (f83eba6)
2018-06-07 ۋولقان
* Translated using Weblate (Uyghur) (ea6df0e)
2018-06-07 Nureli
* Translated using Weblate (Uyghur) (41bbe5d)
2018-05-30 Aashish Chenna
* Translated using Weblate (Telugu) (93be2e3)
2018-05-29 Aashish Chenna
* Translated using Weblate (Telugu) (22f02b3)
2018-05-25 Jacky Blois
* Translated using Weblate (French) (7ab88fa)
2018-05-17 Nicola Lombardi
* Translated using Weblate (Italian) (b96ea76)
* Translated using Weblate (Italian) (50f94e1)
2018-05-10 Gayathri Das
* Translated using Weblate (Hindi) (30c8dd6)
2018-04-27 antuketot76
* Translated using Weblate (Malay) (c85bde6)
* Translated using Weblate (Malay) (192a56c)
2018-06-21 Mike Gabriel
* Posix.Signal.<SIG>: Provide old-style Posix.SIG<SIG> API calls if
built with Vala API version << 0.40. (Fixes FTBFS on
Debian 9). (b64aabd)
2018-06-16 Mike Gabriel
* Use Posix.Signal.* rather than Posix.SIG*. (Vala 0.40
deprecations). (b12c6d9)
2018-06-16 Cobinja
* Add option to show GUI on a specific monitor (d1caee5)
2018-06-16 Victor Kareh
* arctica-greeter-check-hidpi: Fix HiDPI auto-detection. (85ec476)
2018-06-16 Mike Gabriel
* debian/control: Add D: marco. (cc72215)
* 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. (9b3526d)
2018-05-11 Mike Gabriel
* 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.
(606273e)
* Remote Logon configuration support: session name is now
"remoteconfigure". (b54ac1c)
2018-05-08 Mike Gabriel
* user-list.vala: fix missing parentheses from previous commits
(f9c678d)
* src/user-list.vala: Rephrase username field text to "Account ID"
(can be email or user name). (411bbb6)
* src/user-list.vala: Hide "Set up..." button, if uccsconfigure is a
non-supported remote login session. (a27d1f0)
* src/user-list.vala: Mention X2Go in remote logon help / setup hint.
(6ad8446)
2018-05-07 Mike Gabriel
* release 0.99.1.0 (97e48ff) (tag: 0.99.1.0)
* 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. (da0cd95)
2018-05-06 Mike Gabriel
* src/user-list.vala: Add debugging to remote_login PAM prompt
responding. (3cd3dd0)
2018-05-04 Mike Gabriel
* src/user-list.vala: Obtain PAM_FREERDP2 prompts from public API in
security/pam-freerdp2.h. (879b9e6)
* src/user-list.vala: Obtain PAM_X2GO prompts from public API in
security/pam.x2go.h. (eed9d64)
* src/user-list.vala: Follow-up fix for previous commit. (9ff8e09)
* Use RLS/pam_x2go.so API v5. The PAM prompt now queries "remote
command:", not "x2gosession:". (91b8cbd)
2018-04-16 Mike Gabriel
* debian/control: Drop from B-D: libgnome-desktop-3-dev. Not needed.
(df4800a)
2018-03-15 Björn Esser
* main-window: Calculate the really needed screen size properly
(897df0e)
2018-03-16 Mike Gabriel
* release 0.99.0.4 (cfec4f6) (tag: 0.99.0.4)
* src/arctica-greeter.vala: Trigger UPower activation when greeter
starts. (8aba383)
* HiDPI: Do not enable it in test-mode. (76f2e65)
* debian/*.install: Correctly install the guest session script man
page into the guest session bin:pkg. (9e025f2)
* Port HiDPI support from slick-greeter. (7ddfa06)
* src/{user-list.vala,user-prompt-box.vala}: Fix segfault in newly
introduced debug message. (48db8ca)
2018-03-15 Robert Ancell
* Use Ubuntu logo for Unity session (has no since no longer Ubuntu
default) (1e59b6a)
2018-03-12 Michael Webster
* 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. (5c611a8)
2018-03-12 Ikey Doherty
* greeter: Avoid expensive Python calls when it isn't needed.
(bda58f0)
2018-02-28 Mike Gabriel
* post-release update of debian/changelog (177dab0)
* release 0.99.0.3 (6777383) (tag: 0.99.0.3)
2018-02-20 Veselin Georgiev
* Translated using Weblate (Bulgarian) (3c8b7e5)
2018-02-15 Ko Phyo
* Translated using Weblate (Burmese) (94ff0d8)
2018-02-11 Rafael Henrique Mendes de Oliv
* Translated using Weblate (Portuguese (Brazil)) (3dfb9d7)
* Translated using Weblate (Portuguese (Brazil)) (8f85b15)
2018-02-09 Joel Vinay Kumar
* Translated using Weblate (Telugu) (965ac26)
2018-02-04 Michal Čihař
* Translated using Weblate (Telugu) (b94becf)
2018-02-03 scootergrisen
* Translated using Weblate (Danish) (2d86552)
2018-01-30 Марс Ямбар
* Translated using Weblate (Ukrainian) (b30f69a)
2018-01-29 Joel Vinay Kumar
* Translated using Weblate (Telugu) (d4ece44)
2018-01-27 Mutaz Tayyeb AbuSaad
* Translated using Weblate (Arabic) (5131b49)
* Translated using Weblate (Arabic) (0e921da)
2018-01-24 Sveinn í Felli
* Translated using Weblate (Icelandic) (3073113)
2018-01-22 Марс Ямбар
* Translated using Weblate (Ukrainian) (c50983a)
2018-01-04 Sebastian Rasmussen
* Translated using Weblate (Swedish) (7473640)
2018-01-04 Tamir Azaz
* Translated using Weblate (Slovenian) (1e72c52)
2018-02-27 Mike Gabriel
* Merge branch 'jbicha-vala39' (e13e0d9)
2018-02-27 Jeremy Bicha
* Fix build with vala 0.39 (3b79b4b)
2017-12-07 Mike Gabriel
* debian/control: Let's recommend the new FreeRDPv2 version of
lightdm-remote-session-freerdp(2). (a1266d6)
* White-space cleanup. Removing superfluous EOL white-spaces.
(f22b7af)
2017-11-29 Juan Picca
* Translated using Weblate (Spanish) (c855090)
2017-11-29 Mike Gabriel
* update-po(t).sh: Handle .xml and .ini files gracefully. (174191b)
2017-11-28 Mike Gabriel
* release 0.99.0.2 (a313875) (tag: 0.99.0.2)
* debian/copyright: Update copyright attributions for new man page.
(3537ac6)
* data/arctica-greeter.1: Improve (not much, but a little) the
arctica-greeter man page. (96b5cac)
* arctica-greeter-guest-account-script: Add brief man page for the
guest account creation script. (9ef87a0)
* More places to fix for the guest session script renaming. (1a2635a)
* Update translation files. (33f57b4)
2017-11-17 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (27c02f4)
2017-11-28 Mike Gabriel
* Rename various scripts, so that they have 'arctica-greeter' in
their file name (and not just 'arctica'). (acd892c)
* debian/control: Bump Standards-Version: to 4.1.1. No changes
needed. (4fe6467)
* debian/copyright: Add machine-generated copyright.in file.
(a1f2ee0)
* debian/copyright: Update copyright attributions. Appropriate for
official Debian package. (dec42ab)
* data/badges/COPYING.badges: Add attributiong for desktop session
badges. (55f0154)
* Update files update-po(t).sh, includes added license headers.
(82e9fb7)
* no Transifex anymore, we have moved to Weblate... (5a19212)
2017-10-30 Mike Gabriel
* Revert "a11y: Use HighContrast rather than HighContrastInverse."
(6f8134a)
* debian/control: Typo fix in D of arctica-greeter (comma vs. dot).
(ce53a04)
2017-10-26 Mike Gabriel
* debian/control: Add to D (arctica-greeter): x11-xkb-utils (for
setxkbmap). (a7472c9)
* arctica-greeter-set-keyboard-layout: Add encoding tag to the
header. (64719ae)
* arctica-greeter-set-keyboard-layout: Add license header and
copyright holder. Assume same license as in COPYING file.
(5791c16)
2017-10-26 Clement Lefebvre
* a11y: Use HighContrast rather than HighContrastInverse. (6d087e7)
2017-10-26 Mike Gabriel
* debian/control: Switch to Arch: any for bin:pkg
arctica-greeter-guest-session. (818a6c0)
* Explicitly set the keyboard layout (164a06e)
2017-10-26 Clement Lefebvre
* Add support for numlockx. (f192e26)
2017-10-26 Mike Gabriel
* src/settings.vala: White-space cleanup. (0f7e41f)
* copyright holdership: Add myself as copyright holder and author to
file headers of files I have worked on. (b78391b)
* src/arctica-greeter.vala: Fix debug message, we use MSD, not USD.
(afdb9fc)
2017-10-25 Mike Gabriel
* src/user-list.vala: Add debug message providing info about added
users / labels. (b6e1341)
2017-10-23 Mike Gabriel
* release 0.99.0.1 (32ffe2d) (tag: 0.99.0.1)
* 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. (5ad6cbc)
2017-10-23 Michael Webster
* background: Don't realize() this immediately - only start the image
gathering thread during initialization. (0003057)
2017-10-23 Mike Gabriel
* data/org.ArcticaProject.arctica-greeter.gschema.xml: Fix schema
path. (3bc7cc6)
2017-10-16 Michal Čihař
* Translated using Weblate (German) (af13ba7)
2017-10-07 Kristjan Räts
* Translated using Weblate (Estonian) (5575cbe)
2017-10-03 developerchan1
* Translated using Weblate (Indonesian) (55cbf1c)
2017-10-02 Marc Schöni
* Translated using Weblate (German) (0459355)
* Translated using Weblate (German) (78f28e2)
2017-09-29 Anders Jonsson
* Translated using Weblate (Swedish) (c41f749)
2017-09-16 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (f41055e)
2017-09-08 ប៉ុកណូ រ៉ូយ៉ាល់
* Translated using Weblate (Central Khmer) (4256251)
2017-08-29 Jan Poulsen
* Translated using Weblate (Danish) (ceb047d)
2017-08-29 Kjetil Fleten
* Translated using Weblate (Danish) (c58bb1d)
2017-08-21 Володимир Бриняк
* Translated using Weblate (Ukrainian) (2a3ab44)
2017-08-13 Viktar Vauchkevich
* Translated using Weblate (Belarusian) (d6fe6df)
2017-07-21 Mike Gabriel
* po/: Update po/.po files from newly generated arctica-greeter.pot
file. (2183709)
* update-po.sh: Add simple script to update po/*.po files. (c14bc0a)
* po/: Update arctica-greeter.pot file. (9d50a7d)
2017-06-20 Mike Gabriel
* src/arctica-greeter.vala: Don't load any external application when
launched in test mode. (a55e300)
* src/menubar.vala: Disable all indicators in test mode. (123a23f)
* src/settings_daemon.vala: sd_pid is a private property. (d297788)
* src/greeter-list.vala: Move get_active_entry() functionality from
ListDBusInterface to the GreeterList class. (dded5f2)
2017-06-20 Clement Lefebvre
* Fix Arctica Greeter preventing DE from applying cursor theme/size.
(4216b5d)
* Don't draw the background before starting the session. (31ce82f)
2017-06-20 Mike Gabriel
* rebase debug PID (d14e5d8)
* src/menubar.vala: Silence build warning due to usage call to
deprecated ensure_style() method. (dcf9702)
2017-06-20 Clement Lefebvre
* src/background.vala: No runtime warning on empty background image
filename. Ported from slick-greeter. (89876fc)
2017-06-20 leigh123linux
* Add basic screenshot capability. Ported from slick-greeter.
(b37ceae)
2017-06-20 Mike Gabriel
* debugging: Print out process PIDs for launched subprocesses.
(54ff85c)
2017-06-20 Clement Lefebvre
* Add support for validating session names (and proper fallback for
uninstalled sessions). Ported from slick-greeter.
(ba46af1)
2017-06-20 leigh123linux
* Work around GTK 3.20's new allocation logic. Ported from
slick-greeter. (2fa9791)
2017-06-20 Mike Gabriel
* Fix at-spi-bus-launcher path in Fedora (ported and modifed from
slick-greeter). (196464c)
* white-space fix (70a6deb)
* debian/rules: Remove duplicate override_dh_install target.
(c66157e)
* src/background.vala: Drop logo background. (399b52b)
2017-06-20 Michael Webster
* src/arctica-greeter.vala: Disconnect the event filter when the main
window is destroyed. (ae38752)
* src/prompt-box.vala: Avoid 'pango_layout_get_cursor_pos: assertion
'index >= 0 && index <= layout->length' failed' error.
(d68171e)
* src/prompt-box.vala: get_preferred_height() ovrride only needed
with GTK3 >= 3.20. (29eb6f8)
* Fix prompt display in gtk3 > 3.20 (ported from slick-greeter)
(552dd36)
2017-06-20 Mike Gabriel
* Move data/*_badge.png to data/badges/ subfolder. (434484b)
2017-06-20 leigh123linux
* menubar clean-up before session start: i.e. kill onboard and orca
on session startup (ported from slick-greeter). (6dea496)
2017-06-17 Mike Gabriel
* Debian Theme: use Debian 9 logo including the version number as is
for now. (d58721a)
2017-06-16 Mike Gabriel
* New theming bin:package: arctica-greeter-theme-debian. (b8d4893)
* New theming bin:package: arctica-greeter-theme-debian. (4181e30)
* src/logo-generator.vala: Make logo-generator more flexible. Allow
passing-in of output logo's width and height. Fix placing
of version string. (cc5dcc0)
* configure.ac: Stop automake from whining, set subdir-objects flag.
(a78a48f)
* src/session-list.vala: Regression fix for failing session logins
caused by eece8599b774b4b30eeb31a39bc7c3c36d24b011.
(2bf440e)
* data/arctica-guest-session-startup.desktop.in: Remove double slash
in Exec= field. (de6ec89)
* arctica-guest-session-auto.sh: Don't rely on .profile to be loaded,
define a default for DIALOG_SLEEP. (cb831b9)
* Update .po files. (c88e2b1)
* po/arctica-greeter.pot: Update translation template, now with
translatable text from our guest shell scripts. (ea07b73)
* Make arctica-desktop.desktop xgreeters file translatable. (90c9d12)
* debian/arctica-greeter-guest-session.install: Let's have EOL and
EOF. (987fb8c)
* Make intltool more happy with our guest shell scripts (i.e. adding
.sh suffix). (afd9836)
* src/session-list.vala: Present list of available sessions in
case-insensitive order. (94b4313)
2017-06-14 Mike Gabriel
* Artwork: Add icon badge for Sugar Desktop. (0d5437a)
* Artwork: Add icon badge for surf-display. (56392e6)
* Artwork: Add icon badge for Xmonad. (8818fd6)
* Artwork: Add icon badge for the Window Maker. (b1175d8)
2017-06-13 Mike Gabriel
* Artwork: Add icon badge for the Budgie Desktop. (a7bb797)
* Artwork: Add icon badge for awesome. (095b1df)
* Artwork: Add icon badge for the matchbox wm. (213f805)
* Artwork: Add icon badge for i3 wm. (b3e44b2)
* data/lxde_badge.png: Recreate from .xcf file, removes gray
outlines. (d1debd1)
2017-06-12 Mike Gabriel
* override_font() deprecation warning: replace by GtkCssProvider
blocks. Additionally, don't hard-code Cabin font anymore,
use font_name gsettings property instead. (63394a6)
* 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).
(99d2c26)
* src/arctica-greeter.vala: Fix copy+paste flaw blocking atspid to be
destroyed at greeter exit. (c76e0b1)
* Makefile.am: Add 'compile' to list of DISTCLEANFILES. (a3d58d0)
* Make guest account support functional. Port various items from
Ubuntu's LightDM package. (e3b4202)
* debian/control: Drop mate-settings-daemon from Recommends: field.
Already in Depends: field. (ccba9e5)
* 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.
(8a7f97e)
* guest-account: Blindly copy Ubuntu's guest-account script from
bin:package lightdm into this project. (1fa6100)
2017-06-08 Mike Gabriel
* src/settings-daemon.vala: Make sure the SettingsDaemon subprocess
gets killed when greeter exits. (2e747f6)
2017-06-07 Mike Gabriel
* src/settings-daemon.vala: Flaw when switching to m-s-d. The
media-keys plugin is to be diabled. (49f36af)
* src/settings-daemon.vala: Avoid race condition that could launch
the settings daemon twice. (0109864)
2017-06-04 Mike Gabriel
* Rename owned greeter bus to a generical, product-independent name:
org.ayatana.Greeter. (c1fcb12)
2017-05-31 Mike Gabriel
* 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.
(4017149)
* fix-patch-whitespace: Help tool from X.org to have white-space
clean changeset commits. (9e97d28)
2017-05-30 Mike Gabriel
* Use ShutdownDialogType.SHUTDOWN on incoming shutdown requests. This
enables Hibernate and Suspend buttons, which is nice.
(25606b6)
* src/shutdown-dialog.vala: Grab Reboot button focus when user
requests a reboot. (087e04c)
2017-05-28 Mike Gabriel
* Return "greeter" as session_name rather than "ubuntu" in
SessionManager DBus interface. (0e4fbb4)
* nm-applet startup: Fix typo in cmd line option. (8e50dfa)
2017-05-26 Mike Gabriel
* comment change: MATE and GNOME share the same session manager
namespace (ebf839b)
2017-05-23 Mike Gabriel
* 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). (930c41a)
* 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. (794b686)
2017-05-18 Mike Gabriel
* Acquire DBus session bus 'com.canonical.Unity' for now. Same bus
name is used in ayatana-indicator-session and maybe
elsewhere. (63d9a2f)
* session list's back button: Make background transparent. (5d54b6a)
* src/menubar.vala: Give the indicator icons a bit more space (i.e.
height := 32). (cd2de8b)
* Theming: Use Numix GTK/icon theme. (2a524d3)
2017-05-17 Mike Gabriel
* Gdk.cairo_create() has been deprecated in GTK 3.22. Use
Gdk.Window.begin_draw_frame() instead. (f238d62)
* Disable nm-applet while we are not able to pipe it into
ayatana-indicator-application. (aa15b94)
* Silence GTK 3.22 warnings relating to deprecation in Gdk.Screen.
(8dd317d)
* src/arctica-greeter.vala: Cleanly exit nm-applet when switching to
the user context. (c9f0793)
* indicator service launching: Check AGSettings for what indicator to
load and remember loaded indicators to clean up properly
when switching to the user context. (0916a5f)
* indicator support: Launch ayatana-indicator-session service via
Arctica Greeter. (0cddbb4)
2017-05-16 Mike Gabriel
* indicator services: Launch inicator power service via systemd
before showing the greeter. (237d630)
2017-05-15 Mike Gabriel
* src/arctica-greeter.vala: Fix systemd launch of
ayatana-indicator-application service. (5ad2a0e)
* Fix indicator name for ayatana-application. (0ee3892)
* arctica-greeter.vala: Fix .service file name for starting up
Ayatana Indicators Application as a service. (8a8362a)
* Use systemd to launch the Ayatana Indicators Application Service.
(9649a93)
* debian/rules: Let's skip tests for now, until we got them fixed.
(1347098)
* debian/control: Fix Recommends: field. Let's use
ayatana-indicator-* packages rather. (54d2745)
2017-04-30 Mike Gabriel
* rebase m-s-d (e0afbd7)
2017-04-29 Mike Gabriel
* Switch to using MATE's Settings Daemon. (a4ab356)
2017-04-18 Robert Ancell
* Handle errors from liblightdm. (d70a693)
* Show error when failing to connect to LightDM daemon. (e36ceb6)
* Use GenericSet instead of HashTable. (4d8cb25)
* Compile with Vala debugging information (9d87509)
* Fix test mode by skipping xsettings checks. (b7ffb48)
* Use valgrind to make build logs bigger help in triaging FTBFS
problems. (a3cf506)
2017-04-15 Mike Gabriel
* vala: Replace all 'static const' declaration by 'const'. (24d9086)
* debian/rules: Preserve upstream's po/arctica-greeter.pot (it gets
recreated during build). (5274b88)
* unit tests: GLX extension not required in our Xvfb test runs.
(77ee958)
2016-09-15 Mike Gabriel
* Don't use deprecated -GtkWidget-focus-line-width style property
anymore, replace by outline-width property. (b206777)
* Don't use deprecated GtkButton-child-displacement-{x|y} style
properties anymore. (47ff24f)
* po/co.po: Add co language to Transifex and update (empty .po file).
(b262c5e)
* update po/arctica-greeter.pot (faf1999)
2016-09-15 Robert Ancell
* Explicitly set scale and geometry for Cairo.XlibSurface. (65cc346)
* Limit prompt fields to 200 characters in case a key is being held
down (e.g. by a cat). (440a813)
2016-09-15 Mike Gabriel
* Wait for gnome-settings-daemon xsettings plugin is ready to avoid
HiDPI resolution changing. (df985b3)
2016-09-15 Robert Ancell
* Update LINUGAS. (8b9cf7f)
* Work around Vala trying to use a new GTK 3.20 function. (fabfbff)
2016-09-15 Iain Lane
* Apply the Gtk.ResizeMode.QUEUE fix to another place, so that the
shutdown dialog is positioned correctly again. (b20beff)
2016-02-26 Mike Gabriel
* Rename RemoteLoginService interface to RemoteLogonService.
(1190fb9)
* Find nasty typo in our project name. Thanks to Jeppe Simonson for
helping with getting that tracked. (27a7262)
2016-02-23 Mike Gabriel
* debian/control: Alternative Ds fonts-droid-fallback | fonts-droid.
Fix FTBFS on Debian stretch/unstable. (305e0c5)
* debian/control: Add D (arctica-greeter): gnome-settings-daemon.
(c6b9d72)
* Transifex: Add .tx/config configuration file. (0d47a28)
2016-02-22 Mike Gabriel
* po: Add helper script update-pot.sh. (7b3849b)
* po: Add arctica-greeter.pot PO translation template file. (585f614)
2015-11-10 Mike Gabriel
* debian/control: Fix build-dependency issue for nightly builds.
(16012a3)
2015-11-07 Mike Gabriel
* Build against Ayatana Indicators instead of Ubuntu Inidicators.
(37f53f3)
2015-11-05 Mike Gabriel
* Use org.ayatana namespace for Ayatana indicators. (9f47961)
* NEWS.Canonical: Fix copy+paste error. (0cf0756)
2015-10-28 Mike Gabriel
* Set a session name in our own namespace. (25ad920)
* toggle-box.vala: Catch Glib.Error where it occurs when setting
normal button style. (252faeb)
* Re-do session badges with proper color to alpha algorithm.
(fac2a33)
* Make our new icons transparent in the logo area, not black.
(80488bf)
2015-10-27 Mike Gabriel
* Make session list in toggle box configurable concerning font color
and button bg color. (69a43a8)
* Set default background color (before image is loaded) to a color
similar to our default image. (d1d9cb3)
* add forgotten xsession_badge.{png,xcf} (7a09c56)
* Add badge (.png) for default Xsession. (e03befb)
* Add badge (.png) for Openbox window manager. Also make greeter
aware of openbox-kde and openbox-gnome. (41cd118)
* Add badge (.png) for TWM window manager. (cf52b7d)
* fix for last commit (7001ab9)
* Darken badges for MATE and LXDE. (5fff773)
* data/Makefile.am: Drop
org.ArcticaProject.ArcticaGreeterSession.gschema.xml from
target. (3dcfdaf)
* data/Makefile.am: Install new badges. (e50ccde)
* Attempt to fake a session with org.gnome.SessionManager. (ba8900a)
* Add badge (.png) for XFCE desktop session. (8ad0245)
* Add badge (.png) for MATE desktop session. (48dd06f)
* Add badge (.png) for LXDE desktop session. (891105e)
* fix for a18ab60: UGSettings class has been renamed to AGSettings.
(2ef3a81)
2015-10-27 Robert Ancell
* Use non-deprecated Gdk.Cursor methods (e80a7fc)
2015-09-16 Robert Ancell
* Add an option to only show users in a list of specified groups
(a18ab60)
* Remove obsolete CONFIG_FILE define (a9369a5)
2015-02-19 Alberts Muktupāvels
* Add class name for toggle button (bedfb6d)
* Add class name for option button (4bfa70a)
2015-01-27 Lars Uebernickel
* DashEntry: remove .spinner class (a7e3214)
2015-01-16 Albert Astals Cid
* Support the session name for Plasma 5 (c1a0b36)
2014-12-17 Alberts Muktupāvels
* Fix prompt-box height. (adb9b2e)
2014-11-29 Alberts Muktupavels
* Restore event type for button-release-event. (eb9d205)
* Change event type when calling button press event in release event.
(4a5a14d)
2014-11-19 Dmitry Shachnev
* Update for new gnome-flashback sessions names (c8331a0)
2014-11-04 Robert Ancell
* Don't copy delegates. Apparently not allowed (a937ee8)
* Don't use deprecated Gtk.Widget API (138bf14)
* Don't use deprecated liblightdm API (c1726b3)
* Don't use deprecated Gdk X11 API (269ff16)
2015-10-27 Mike Gabriel
* Set gettext-domain from unity to arctica-greeter. (aa5077f)
* Logo: Reduce spacing between logo text and version, shrink version
string. (9767eeb)
* Logo: Rework TheArcticaGreeter logo. (2399e71)
* Don't own session com.canonical.Unity, own
org.ArcticaProject.ArcticaProjectGreeter instead.
(7b9bd55)
2015-10-26 Mike Gabriel
* Comment out never used upstart_pid variable. (47036c2)
2015-10-27 Mike Gabriel
* debian/rules: Remove build-cruft (.c files) after build. (28b3e3f)
2015-10-26 Mike Gabriel
* logo-generator: Reduce separator between logo text and version
number. (5aea9e6)
* Provide TheArcticaGreeter logo, drop Ubuntu logo. Adapt
logo-generator. (8e72820)
* debian/rules: Fix bogus. (c7dbb58)
* debian/rules: No need to remove logo.png after package build.
(ce3b008)
* debian/rules: Clean .stamp files after package build. (cf78e2f)
* Revert "Remove *.stamp files on distclean." (175a4c1)
* Remove *.stamp files on distclean. (8c82d89)
* Add source files (gimp graphics) for background images. (c72e594)
* Background image: use a more blue'ish background image. (f086aa0)
* Disable code depending on upstart. (b86e64e)
* Fix parentheses in dialog message. (4ce2ca5)
* debian/control: Don't use package name as SYNOPSIS. (abc1d35)
* Fix dialog message. (b48f5ff)
* Use Cantarell font to build versioned logo. Requires
fonts-cantarell to be available at build time. (0a03c98)
* Drop hard-reference to uccs.canonica.com. Make default Remote Logon
Service server configurable through gsettings. (5811d62)
* Drop Ubuntu background. Use some temporary swirly gradient
background. (1cfbd06)
* debian/rules: No need to extra-copy logo.png at
override_dh_auto_install. (c301096)
* Drop optionally using unity-settings-daemon with Arctica Greeter.
(e1573ab)
* font work: Use Cabin and Cantatell fonts instead of Ubuntu and
Ubuntu Light. (51bf806)
* debian/control: Recommend ubuntu-settings-daemon |
gnome-settings-daemon instead of mate-settings-daemon.
(422c6d0)
* Drop the idea of using mate-settings-daemon on non-Ubuntu systems,
use gnome-settings-daemon instead. (7b4efc8)
* Fix failing testsuite by enforce setting XDG_DATA_DIRS internally
if XDG_DATA_DIRS is not set in the environment. (c9220a0)
* Move logo-with-version creation into upstream code and away from
debian/rules. (a8365c6)
2015-10-07 Mike Gabriel
* Rename UGSettings to AGSettings. (da5a410)
2015-09-22 Mike Gabriel
* Fix for last commit: Add forgotten translation files. (c96cf1a)
2015-09-21 Mike Gabriel
* Rebase against Unity Greeter in Ubuntu 15.10. (ab139b6)
* Rebase against Unity Greeter from Ubuntu 15.04 (bf0db8a)
* Rebase against unity from Ubuntu 15.04 (ec5e539)
* Support alt+super+s for enabling screen reader to match Unity shell
keybinding. (72ff799)
* Make arctica-greeter build on Debian and Ubuntu alike. (8852309)
2015-09-19 Mike Gabriel
* Make arctica-greeter build against Debian unstable _and_ Ubuntu
(and probably break at runtime). (1896346)
* Makefile.am: Provide dist hooks for creating upstream ChangeLog and
AUTHORS file. (eac0956)
* Set upstream version to 0.99.0.1 (c5beb9c)
* Adapt to using ArcticaProject's remote-logon-service. (f2b9070)
* Provide our own background image arctica-greeter.png. (13e2fba)
* fork unity-greeter as arctica-greeter (f84be4f)
2014-12-06 Mike Gabriel
* Fix failing test "remote_login_only" after we made Remote Login
only to appear properly on screen. (a2072d8)
* Improve selection code of new entry if an entry is removed.
(c3bbc8f)
2014-12-02 Mike Gabriel
* Fix config parameter (show-remote-login ->
greeter-show-remote-login). (2bc8483)
2014-12-01 Mike Gabriel
* fix for commit 5328fc2 (e74028d)
* Add to D: network-manager. TODO: Without network-manager no Remote
Login. This needs to be addressed later. (15f085a)
* Show Remote Login box if no other boxes (usernames, other login,
guest login) are to be shown. (5328fc2)
2014-11-28 Mike Gabriel
* Remote Login Only sessions require show-remote-login to be true in
SeatDefaults. (5a726a4)
* 90-unity-greeter-x2go.conf: Override all known LightDM setups that
we know of in Ubuntu. (c0e5832)
* We also allow usernames for UCCS login. (2bddd36)
* If normal user sessions _and_ guest sessions are disabled, make
sure the remote login services gets activated. (c3ad1ba)
* fix changelog entries (834e272)
* Add to R (unity-greeter-x2go): xinput. (4d989d1)
* Make lightdm-xsession the default session to launch. (1c27048)
* Allow UCCS logins that are not email addresses (but usernames).
(0cd9dca)
* debian/control: Upgrade to D (unity-greeter): lightdm. Upgrade to R
(unity-greeter): remote-login-service,
lightdm-remote-login-x2go, lightdm-remote-login-freerdp.
(7f45435)
2014-11-27 Mike Gabriel
* fix for last commit (3f03110)
* debian/rules: Fix installation of logo.png into bin:package.
(20dc10f)
2014-11-12 Mike Gabriel
* debian/watch: Drop file (i.e. reference to original unity-greeter
upstream download resource). (b4b0c4e)
* debian/copyright: Adapt file to forked context of
unity-greeter-x2go. (c681de9)
* Bump Standards: to 3.9.6. No changes needed. (31d6243)
* Put myself in Maintainer: field. (d46818b)
* debian/control: Rename (src:)package: unity-greeter ->
unity-greeter-x2go. (af4e9cc)
* debian/source/format: Switch to format 1.0. (d8f5e85)
* debian/control: Adapt Suggests: field to usage with X2Go. (0132755)
* mark as UNRELEASED (ef58047)
* Apply patch 01_x2go+rls.patch. Natively support X2Go Session.
(c356792)
2014-11-02 Mike Gabriel
* upload to ppa:x2go/stable+ppa (ubuntu/14.04.10-0ubuntu1+x2go1)
(4ae9e07)
* Imported Upstream version 14.04.10 (8e2d33d)
|