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 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919
|
freedombox (21.4.4) unstable; urgency=medium
* action_utils: Separate function to hold freedombox package
* action_utils: Use flag to indicate freedombox package has been held
* upgrades: Check for held freedombox package in manual update
* upgrades: Check for held freedombox package daily
* action_utils: Don't print when unholding freedombox package
-- James Valleroy <jvalleroy@mailbox.org> Fri, 16 Jul 2021 09:07:51 -0400
freedombox (21.4.3) unstable; urgency=medium
[ Andreas Beckmann ]
* freedombox: Add Breaks: fuse (<< 3) and Depends: fuse3 (>= 3) to ensure
fuse gets replaced by fuse3 on upgrades from buster. (Closes: #990758)
-- James Valleroy <jvalleroy@mailbox.org> Wed, 07 Jul 2021 10:32:34 -0400
freedombox (21.4.2) unstable; urgency=high
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
[ nautilusx ]
* Translated using Weblate (German)
[ Michalis ]
* Translated using Weblate (Greek)
[ Reza Almanda ]
* Translated using Weblate (Indonesian)
[ Kirill Schmidt ]
* first_boot: Use session to verify first boot welcome step
[ James Valleroy ]
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Sun, 28 Mar 2021 09:23:46 -0400
freedombox (21.4.1) unstable; urgency=medium
[ Dietmar ]
* Translated using Weblate (German)
[ Karol Werner ]
* Translated using Weblate (Polish)
[ Michalis ]
* Translated using Weblate (Greek)
* Translated using Weblate (Greek)
[ Fioddor Superconcentrado ]
* Generating developer documentation.
* config: Fix tests related to user home directory
* Translated using Weblate (Spanish)
[ ikmaak ]
* Translated using Weblate (Dutch)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ Veiko Aasa ]
* deluge, mldonkey, syncthing, transmission: Depend on nslcd.service
* deluge: Fix daemon user not in freedombox-share group after installation
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ James Valleroy ]
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Sat, 13 Mar 2021 11:55:40 -0500
freedombox (21.4) unstable; urgency=medium
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ ikmaak ]
* Translated using Weblate (Dutch)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ James Valleroy ]
* plinth: Disable start rate limiting for service
* upgrades: Disable searx during dist-upgrade
* locale: Update translation strings
* doc: Fetch latest manual
[ Dietmar ]
* Translated using Weblate (German)
* Translated using Weblate (Italian)
* Translated using Weblate (German)
* Translated using Weblate (Italian)
[ Coucouf ]
* Translated using Weblate (French)
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ Sunil Mohan Adapa ]
* ui: Fix buttons jumping on click in snapshots page
* matrix-synapse, coturn: Fix minor pipeline failures
[ Benedek Nagy ]
* Translated using Weblate (Hungarian)
[ Kornelijus Tvarijanavičius ]
* Translated using Weblate (Lithuanian)
[ Joseph Nuthalapati ]
* coturn: Add new component for usage of coturn by other apps
* coturn: Minor refactor view to use utility to generate URIs
* coturn: Remove advanced flag, make app visible to all
* matrix-synapse: Auto configure STUN/TURN using coturn server
* matrix-synapse: Update description to talk about TURN configuration
-- James Valleroy <jvalleroy@mailbox.org> Sun, 28 Feb 2021 20:57:00 -0500
freedombox (21.3) unstable; urgency=medium
[ Oğuz Ersen ]
* Translated using Weblate (Turkish)
[ ikmaak ]
* Translated using Weblate (Dutch)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ Michalis ]
* Translated using Weblate (Greek)
[ James Valleroy ]
* upgrades: Mark string as no-python-format
* locale: Update translation strings
* upgrades: Only check free space bytes before dist upgrade
* upgrades: Add 10 minute delay before apt update
* upgrades: Disable apt snapshots during dist upgrade
* locale: Update translation strings
* doc: Fetch latest manual
[ John Lines ]
* gitignore: Ignore files generated during package build
* zoph: Add new app to organize photos
[ Sunil Mohan Adapa ]
* tests: functional: Introduce step def. to check if app is enabled
* zoph: Make app unavailable in Buster
[ Aurélien Couderc ]
* sharing: Improve shares group access description
[ Fioddor Superconcentrado ]
* HACKING: Link download page for Geckodriver.
* Translated using Weblate (Spanish)
-- James Valleroy <jvalleroy@mailbox.org> Thu, 11 Feb 2021 17:59:49 -0500
freedombox (21.2) unstable; urgency=medium
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
[ Sunil Mohan Adapa ]
* radicale: Allow older 2.x release to upgrade to 3.x
* backups: schedule: tests: Fix failures due to long test run
* minidlna: Minor refactor of media directory handling
* minidlna: Implement force upgrading from older version
* jsxc: Fix issues with jQuery >= 3.5.0
[ Veiko Aasa ]
* calibre: Fix freedombox.local inaccessible after enabling app
* mediawiki: Fix app installation process doesn't display status information
* plinth: Show running spinner when app installation is in progress
[ James Valleroy ]
* upgrades: Return reason when checking for dist upgrade
* upgrades: Get result of start-dist-upgrade
* upgrades: Move start-dist-upgrade result string to app
* upgrades: Add notifications for dist upgrade
* tests: Update functional tests default config
* roundcube: Allow upgrade to 1.4.*
* locale: Update translation strings
* doc: Fetch latest manual
[ Dietmar ]
* Translated using Weblate (German)
* Translated using Weblate (Italian)
[ ikmaak ]
* Translated using Weblate (Spanish)
* Translated using Weblate (Dutch)
* Translated using Weblate (Swedish)
* Translated using Weblate (Russian)
* Translated using Weblate (Hungarian)
[ Coucouf ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Алексей Докучаев ]
* Translated using Weblate (Russian)
[ Stanisław Stefan Krukowski ]
* Translated using Weblate (Polish)
[ Oymate ]
* Translated using Weblate (Bengali)
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* matrix-synapse: python3-psycopg2 from backports
* upgrades: Increment version for MatrixSynapse 1.26
* mediawiki: Set default logo to mediawiki.png
[ nautilusx ]
* Translated using Weblate (German)
-- James Valleroy <jvalleroy@mailbox.org> Sat, 06 Feb 2021 00:33:34 -0500
freedombox (21.1) unstable; urgency=medium
[ ikmaak ]
* Translated using Weblate (German)
* Translated using Weblate (Spanish)
* Translated using Weblate (Dutch)
* Translated using Weblate (Polish)
* Translated using Weblate (Danish)
* Translated using Weblate (French)
* Translated using Weblate (Italian)
* Translated using Weblate (Norwegian Bokmål)
* Translated using Weblate (Dutch)
* Translated using Weblate (Portuguese)
* Translated using Weblate (Swedish)
* Translated using Weblate (Russian)
* Translated using Weblate (Chinese (Simplified))
* Translated using Weblate (Persian)
* Translated using Weblate (Gujarati)
* Translated using Weblate (Hindi)
* Translated using Weblate (Czech)
* Translated using Weblate (Ukrainian)
* Translated using Weblate (Hungarian)
* Translated using Weblate (Lithuanian)
* Translated using Weblate (Slovenian)
* Translated using Weblate (Bulgarian)
* Translated using Weblate (Greek)
* Translated using Weblate (Galician)
* Translated using Weblate (Serbian)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ John Doe ]
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Ouvek Kostiva ]
* Translated using Weblate (Chinese (Traditional))
[ James Valleroy ]
* tahoe: Disable app
* setup: Enable essential apps that use firewall
* upgrades: Requires at least 5 GB free space for dist upgrade
* locale: Update translation strings
* doc: Fetch latest manual
[ Veiko Aasa ]
* syncthing: Create LDAP group name different from system group
* syncthing: Hide unnecessary security warning
* sharing: Update functional test to use syncthing-access group
* plinth: Fix disable daemon when service alias is provided
* container script: Various improvements
[ Sunil Mohan Adapa ]
* ui: js: Make select all checkbox option available more broadly
* ui: css: New style for select all checkbox
* backups: tests: Fix a typo in test case name
* backups: Allow comments to be added to archives during backup
* backups: Allow storing root repository details
* backups: repository: Introduce a prepare method
* backups: repository: Simplify handling of remote repo properties
* backups: Introduce backup scheduling
* backups: Add a schedule to each repository
* backups: Trigger schedules every hour
* backups: Add UI to edit schedules
* backups: Add a notification to suggest users to enable schedules
* backups: Show notification on error during scheduled backups
* networks: Remove unused import to fix flake8 failure
* performance: Fix failure to start due to lru_cache in stable
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Fred LE MEUR ]
* performance: Fix web client link to Cockpit
[ Milan ]
* Translated using Weblate (Czech)
[ crlambda ]
* Translated using Weblate (Chinese (Traditional))
[ Fioddor Superconcentrado ]
* networks: Separate the delete button and color it differently
* network: Minor refactoring in a test
* network: Minor refactoring, new is_primary() function
* networks: Change connection type to a radio button
* networks: Use radio buttons for network modes
* networks: Prevent unintended changes to primary connection.
* networks: Hide deactivate/remove buttons for primary connections
* Translated using Weblate (Spanish)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 25 Jan 2021 21:08:22 -0500
freedombox (21.0) unstable; urgency=medium
[ Dietmar ]
* Translated using Weblate (German)
[ ikmaak ]
* Translated using Weblate (German)
* Translated using Weblate (Dutch)
* Translated using Weblate (Spanish)
* Translated using Weblate (French)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Veiko Aasa ]
* functional tests: Make tests compatible with pytest-bdd v4.0
* ejabberd: functional tests: Wait until the jsxc buddy list is loaded
* users: Skip action script tests if LDAP is not set up
* functional-tests: Fix installation errors in install.sh script
* dev-container: Add subcommand to run tests
* gitweb: tests: functional: Fix test failures in localized environment
* dev-container: 'up' command: Show banner also when container is already
running
* dev-container: Add command to print container IP address
* tests: functional: Improve creating users in tests
* gitweb: Add functional tests for git-access group
* plinth: Fix daemon is enabled check when service alias is provided
[ ullli ]
* mumble: Updated mumla and removed plumble from clients list
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Sunil Mohan Adapa ]
* apache2: Allow downloads in openvpn and backups with latest browsers
* backups: Don't open a new window for downloading backups
* openvpn: Don't show running status on download profile button
* app: component: Add app_id and app properties
* app: Add locked flag
* backups: Add new component for backup and restore
* backups: Use the backup component in all apps
* doc: dev: Update documentation for using backup component
* app: info: Move client validation to info component
* doc: dev: Update documentation on calling clients validation
* doc: dev: Update the tutorial to reflect latest API/code
* radicale: Fix backup and restore of configuration
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ James Valleroy ]
* users: Avoid test error if ldapsearch is not available
* upgrades: Ensure freedombox package is upgraded during dist upgrade
* upgrades: Add service for dist upgrade
* upgrades: Install python3-systemd for unattended-upgrades
* upgrades: Don't allow needrestart to restart freedombox-dist-upgrade
* upgrades: Check before starting dist upgrade process
* upgrades: Write dist-upgrade service file in /run
* upgrades: Restart FreedomBox service at end of dist-upgrade
* upgrades: Use full path to searx action script
* upgrades: Hold tt-rss during dist upgrade, if available
* locale: Update translation strings
* doc: Fetch latest manual
[ Stanisław Stefan Krukowski ]
* Translated using Weblate (Polish)
[ Joseph Nuthalapati ]
* transmission: Show port forwarding information
* transmission: Update description
-- James Valleroy <jvalleroy@mailbox.org> Mon, 11 Jan 2021 19:57:44 -0500
freedombox (20.21) unstable; urgency=medium
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* deluge: Sync apache2 config with Transmission
* deluge: Functional tests for bit-torrent group
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ Veiko Aasa ]
* apache: Create snake oil certificate if not exists
* users: Remove timeout when creating Samba user
* security: Fix access denied for user daemon from cron
[ n0nie4HP ]
* Translated using Weblate (Polish)
* Translated using Weblate (Polish)
[ spectral ]
* calibre: Fix manual page name
[ James Valleroy ]
* upgrades: Allow grub-pc upgrade without reinstalling grub
* upgrades: Update searx search engines during dist upgrade
* locale: Update translation strings
* doc: Fetch latest manual
* debian: Bump standards version to 4.5.1
[ Nikita Epifanov ]
* Translated using Weblate (Russian)
[ ikmaak ]
* Translated using Weblate (Polish)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 28 Dec 2020 21:08:41 -0500
freedombox (20.20.1) unstable; urgency=medium
[ Reg Me ]
* Translated using Weblate (Dutch)
[ ikmaak ]
* Translated using Weblate (Dutch)
* Translated using Weblate (German)
* Translated using Weblate (Dutch)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ Sunil Mohan Adapa ]
* pagekite: Drop unused subdomain widget
* pagekite: cosmetic: Minor yapf changes
* clients: Fix a duplicated HTML ID
* ui: Adopt a consistent and new table style
* ui: Make all tables responsive
* ui: css: Use rem as the primary unit
* ui: Drop italic style on app name and sections in card listing
* jsxc: Drop loading text on the login button
* firewall: New styling for status stable
* ui: Consistently use the btn-toolbar class for all toolbars
* help: Make the button normal size in about page
* users: Drop cancel button show submit as danger in delete page
* help, power, index: ui: Drop remaining uses of »
* ui: index: Don't show too large a help message
* HACKING: Add suggestion not over-use Bootstrap utility classes
* ui: Fix form error styling using bootstrap 3 style
* jslicense.html: Drop minor styling
* ui: Introduce common styling for two column list group
* calibre: Use common styling for libraries list
* pagekite: Use common styling for custom services
* ikiwiki: Use common styling for wiki/blog list
* gitweb: Use common styling for repo list
* users: Use common styling for users list
* networks: Use common styling for showing network connection
* networks: Use common styling for Wi-Fi network list
* networks: Use table for styling network connection list
* firewall: Split CSS styling into separate file
* monkeysphere: Split CSS styling into a separate file
* samba: Split CSS styling into separate file
* upgrades: Split CSS styling into a separate file
* backups: Split CSS styling into a separate file
* storage: Split CSS styling into a separate file
* sharing: Split CSS styling into a separate file
* letsencrypt: Split CSS styling into a separate file
* help: Split CSS styling into a separate file
* first_setup: Use template variable to refresh page
* ui: Use common styling to hide logo during firstboot
* firstboot: Use bootstrap for logo styling
* pagekite: Eliminate inline styling
* help: Show version information as an alert
* ui: Avoid inline styling for setting progress bar width
* apache2: Disallow all inline styling in sandbox settings
* ui: Fix warning button colors
[ achalaramu ]
* Migrate bootstrap 4 from bootstrap 3
[ Veiko Aasa ]
* gitweb: Make functional tests compatible with pytest-bdd v4.0
* javascript: Fix disabled submit buttons when navigating back to a page
[ James Valleroy ]
* tests: Skip initial update
* help: Update status log test
* config: Skip homepage test on buildd (Closes: #977527)
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Sat, 19 Dec 2020 19:18:42 -0500
freedombox (20.20) unstable; urgency=medium
[ ikmaak ]
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ ssantos ]
* Translated using Weblate (Portuguese)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
* config: Add user websites as choices for homepage config
* config: rename functions (improve readability)
[ James Valleroy ]
* config: Mark test_homepage_field as needs_root
* mumble: Implement force upgrade for 1.3.*
* upgrades: Hold mumble-server during dist upgrade
* locale: Update translation strings
* doc: Fetch latest manual
[ Veiko Aasa ]
* apache: Add app name
* snapshot: Check that / is a btrfs subvolume before setup
* diagnostics: Improve exception handling in app diagnostics
* diagnostics: Show app name and fallback to app id if not exist
* templates: Make toggle button responsive
-- James Valleroy <jvalleroy@mailbox.org> Mon, 14 Dec 2020 19:31:00 -0500
freedombox (20.19) unstable; urgency=medium
[ ikmaak ]
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
* Translated using Weblate (German)
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
[ Fioddor Superconcentrado ]
* networks: Apply translation to a tooltip.
* bepasty: Apply translation to autogenerated comments.
* snapshots: Translate snapshot types (field description)
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* OpenVPN: Create user group "vpn"
* openvpn: Add functional tests for user group "vpn"
* openvpn: Deny access to users not in group "vpn"
[ James Valleroy ]
* upgrades: Add first boot step to run initial update
* upgrades: Add progress page for initial update
* upgrades: Fix flag name in info message
* upgrades: Hold freedombox package during dist upgrade
* upgrades: Use apt_hold contextmanager
* upgrades: Print steps in dist-upgrade
* upgrades: Fix sources list for dist upgrade from buster
* sso: Add test to generate ticket
* locale: Update translation strings
* doc: Fetch latest manual
* debian: Add python3-openssl as build dependency for tests
[ Veiko Aasa ]
* Samba: UI: Show toggle buttons and share names
[ Oymate ]
* Translated using Weblate (Bengali)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 30 Nov 2020 18:37:52 -0500
freedombox (20.18.1) unstable; urgency=medium
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
[ Hetgyl ]
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Reg Me ]
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
[ Oğuz Ersen ]
* Translated using Weblate (Turkish)
[ Thomas Vincent ]
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Joseph Nuthalapati ]
* sso: Fix regression in auth-pubtkt configuration
[ Dietmar ]
* Translated using Weblate (German)
* Translated using Weblate (Italian)
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
[ Diego Roversi ]
* Translated using Weblate (Italian)
[ ikmaak ]
* Translated using Weblate (Dutch)
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ James Valleroy ]
* Translated using Weblate (French)
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 23 Nov 2020 18:37:38 -0500
freedombox (20.18) unstable; urgency=medium
[ Hetgyl ]
* Translated using Weblate (French)
[ Reg Me ]
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
[ Joseph Nuthalapati ]
* coverage: Omit files under tests/ directories
* ci: Add --cov-config to the coverage command
* openvpn: Cleanup easyrsa 2 to 3 upgrade code
* openvpn: Function to detect ECC/RSA configuration
* openvpn: ECC: Setup and Migration
* openvpn: Remove explicit setup step
* openvpn: Improve migrate_to_ecc template
* openvpn: Remove opinion on which curve to use
* openvpn: client configuration for RSA and ECC
* gitlabci: Update Dockerfile and script
[ Ralf Barkow ]
* Translated using Weblate (German)
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
[ Matthias Dellweg ]
* Enable dynamicdns module to handle IPv6
[ Dietmar ]
* Translated using Weblate (Italian)
[ James Valleroy ]
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 16 Nov 2020 20:49:24 -0500
freedombox (20.17.1) experimental; urgency=medium
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
[ Dietmar ]
* Translated using Weblate (German)
* Translated using Weblate (Italian)
[ Joseph Nuthalapati ]
* ci: Fix flake8 errors
* pubtkt: Fix Python format language errors
[ James Valleroy ]
* debian: Rename source package to freedombox
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Sat, 07 Nov 2020 08:02:53 -0500
plinth (20.17) unstable; urgency=medium
[ Fioddor Superconcentrado ]
* package: i18n: Mark progress status strings for translation
* networks: i18n: Mark string for translation on delete page
* networks: i18n: Mark various strings for translation
* notifications: i18n: Mark app names and extra data for translation
* networks: css: Make button wider in network list
* Translated using Weblate (Spanish)
[ Sunil Mohan Adapa ]
* backups: i18n: Mark form success messages for translation
* doc: wikiparser: Fix issue with running parser outside doc/ dir
* upgrades: Disable the option when not able to dist upgrade
* ci: Split testing stages into smaller stages
[ Coucouf ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
[ Nikita Epifanov ]
* Translated using Weblate (Russian)
[ Jens Molgaard ]
* Translated using Weblate (Danish)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Praveen Illa ]
* Translated using Weblate (Telugu)
[ James Valleroy ]
* Translated using Weblate (Danish)
* ci: Run wikiparser doctests
* wikiparser: Exit with return value 1 on test failure
* upgrades: Add a setting to enable dist upgrade
* locale: Update translation strings
* doc: Fetch latest manual
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
[ marklin0913 ]
* Added translation using Weblate (Chinese (Traditional))
[ Joseph Nuthalapati ]
* mediawiki: Ensure password file is not empty
* mediawiki: Add action to set domain name
[ Dietmar ]
* Translated using Weblate (German)
* Translated using Weblate (Italian)
[ Radek Pasiok ]
* Translated using Weblate (Polish)
[ Onurb ]
* apache: setup uwsgi by default
-- James Valleroy <jvalleroy@mailbox.org> Mon, 02 Nov 2020 19:45:57 -0500
plinth (20.16) unstable; urgency=medium
[ Oğuz Ersen ]
* Translated using Weblate (Turkish)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
[ Nikita Epifanov ]
* Translated using Weblate (Russian)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
* Translated using Weblate (Chinese (Simplified))
* Translated using Weblate (Slovenian)
* Translated using Weblate (Greek)
* Translated using Weblate (Norwegian Bokmål)
[ Veiko Aasa ]
* diagnostics: Show low system memory notifications
* notifications: Show severity level on every notification
[ Coucouf ]
* Translated using Weblate (French)
[ James Valleroy ]
* app: Add donation links in dropdown menu
* debian: Add Brazilian Portuguese debconf templates translation
(Closes: #972449)
- Thanks to Adriano Rafael Gomes for the translation.
* locale: Update translation strings
* doc: Fetch latest manual
[ Fioddor Superconcentrado ]
* upgrades: Add status section showing version and upgrade status
* diagnostics: Lazy format all diagnostic test strings properly
* Translated using Weblate (Spanish)
* help: Link to updates page when new version is available
* updates: Eliminate delay and better status for manual upgrade
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ Sunil Mohan Adapa ]
* calibre: Add link to donation page
* app: Make the donation button more prominent
* calibre: Update group description to reflect 'using' app
-- James Valleroy <jvalleroy@mailbox.org> Mon, 19 Oct 2020 20:42:32 -0400
plinth (20.15) unstable; urgency=medium
[ Coucouf ]
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Joseph Nuthalapati ]
* bepasty: Change default permissions to 'read'
* calibre: Add new e-book library app
* calibre: Minor changes to app description
* container: Handle edge cases with container update
[ Fioddor Superconcentrado ]
* HACKING: Add extra development requirements
* CONTRIBUTING: Require flake8 compliance
* Translated using Weblate (Spanish)
* HACKING.md: Re-organised contents according to onboarding journey
* Translated using Weblate (Spanish)
[ Sunil Mohan Adapa ]
* module_loader, web_framework: Update console log messages
* dynamicdns: Drop unnecessary code to set app as enabled
* pagekite: Don't announce unconfigured kite as a valid domain
* pagekite: Don't update names module if not installed
* tor: Don't check if enabled when not installed
* tests: functional: Simplify calling the login helper
* doc: Before fetching, drop all old to cleanup deleted pages/images
* coturn: Don't handle certificates if not installed
* quassel: Don't handle certificates if not installed
* quassel: Fix minor typo
* mumble: Store and use a single domain for TLS certificate setup
* doc: dev: Link to list of potential apps from tutorial
* coturn: Don't handle certificates if not installed
* quassel: Don't handle certificates if not installed
* users: Deal with admin user already existing during first boot
* users: cosmetic: Yapf refactoring
* *: Minor flake8 fixes
* debian/control: Add sshpass as build dependency
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ ssantos ]
* Translated using Weblate (Portuguese)
[ Phil Morrell ]
* mumble: configure letsencrypt component
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Veiko Aasa ]
* ssh: action script: Require user credentials when editing ssh keys
* users: Require admin credentials when creating or editing a user
* container: Assign virtual network interface to trusted firewall zone
[ James Valleroy ]
* upgrades: Extend function to check for normal dist availability
* upgrades: Detect and upgrade to next stable release
* upgrades: Set a flag so interrupted dist-upgrade can be continued
* upgrades: Check free space before dist-upgrade
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 05 Oct 2020 19:25:41 -0400
plinth (20.14.1) unstable; urgency=high
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
[ Nikita Epifanov ]
* Translated using Weblate (Russian)
[ JC Staudt ]
* minidlna: Fix typo DNLA -> DLNA
[ Sunil Mohan Adapa ]
* cockpit: Don't show home page icon to non-admin users
* module_loader: Load/process all essential modules before others
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Dietmar ]
* Translated using Weblate (German)
[ Coucouf ]
* Translated using Weblate (French)
[ James Valleroy ]
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Wed, 23 Sep 2020 07:37:53 -0400
plinth (20.14) unstable; urgency=high
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
* sudo user needed for container
* Branch-out
* Specify machine
* Fix typo
* post-processor: Solve 1908 fixing the wiki links fix
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
* jsxc, sharing: Add 'Learn more...' link for help pages
* wireguard: Add 'Learn more...' link for help page
* doc: wikiparser: Resolve URLs for locally available pages
* HACKING.md: Instructions for container-related troubleshooting
* i18n: Mark strings missed for translation
* snapshots: Clarify description for disabling yearly snapshots
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
* Translated using Weblate (Hungarian)
[ Sunil Mohan Adapa ]
* upgrades: Minor isort fix
* upgrades: Remove unused context variable
* security: Don't show report button as part of backports notice
* upgrades: security: Don't with the technical term 'backports' in UI
* matrixsynapse: Allow upgrade to version 1.17
* backups: Make app available by default
* samba: cosmetic: Minor yapf fixes
* container: unstable: Handle interface naming for systemd < 245
* storage: Fix expanding partitions on GPT partition tables
* matrixsynapse: Rename Riot to Element
* ejabberd, mumble, wireguard: Update Apple app links
* menu: Update documentation to clarify that icons can be files
* frontpage: Fix documentation related to renamed parameter
* bepasty: Make description a private variable
* bepasty: Expand app description
* bepasty: Tighten permissions on the uwsgi socket
* infinoted, syncthing: Fix minor typo in a comment
* bepasty: Add diagnostics tests on app URL
* bepasty: Minor fixes
* bepasty: tests: functional: Add a password before removing all
* bepasty: Resize SVG to 512x512 for consistency with other icons
* bepasty: Add "Snippet" in category/short description
* bepasty: Update UI strings for permissions
* bepasty: Require at least one permission on a password
* bepasty: Simplify configuration file handling
* js: Don't show running status on buttons pulled to right
* diagnostics: Prevent showing running status on diagnostics menu item
* help, networks: Clarify i18n different contexts for "Manual"
* radicale: Stop service during backup and restore
* radicale: tests: functional: Add test for backup/restore
* doc: Recompile when parser script changes
* doc: wikiparser: Handle processing instructions
* doc: wikiparser: Fix attachment URLs in regular links
* doc: wikiparser: When processing single pages, ignore header/footer
* doc: wikiparser: Generate colspec for tables
* doc: wikiparser: Handle table of contents macro without parenthesis
* doc: wikiparser: Handle more paragraph breakers
* doc: wikiparser: Parse content inside a comment
* doc: wikiparser: Allow empty lines between list items
* doc: wikiparser: Fix parsing URLs, simplify plain text parsing
* doc: wikiparser: Resolve relative URLs
* doc: wikiparser: Preserve spaces during parsing and generation
* doc: wikiparser: Handle existing # in links, don't append again
* doc: wikiparser: Assign text to URLs that don't provide them
* doc: wikiparser: Handle wiki links starting with a /
* doc: wikiparser: Allow lists to started with just spaces
* doc: wikiparser: Strip spaces from attachment's text
* doc: wikiparser: Place anchors inside paragraphs
* doc: wikiparser: Sort imagedata properties
* doc: wikiparser: Retain the text for icons
* doc: wikiparser: Set icon dimensions to old values (temporarily)
* doc: wikiparser: Handle empty table cells
* doc: wikiparser: Fix some flake8 warnings
* doc: wikiparser: Improve links relative to included files
* doc: wikiparser: Fix issue with parsing inline code blocks
* doc: wikiparser: Handle markup inside italic/bold markup
* doc: wikiparser: Format text inside admonitions properly
* doc: Drop post processor as it is not needed anymore
* doc: wikiparser: Incorporate post processing fixes
* doc: Simplify make file by eliminating targets for intermediates
* doc: wikiparser: Add note about some incorrect links
* doc: Update the test script for wikiparser
* manual: Fetch latest images
* doc: Fetch latest manual
* firewall: Use service files for showing port forwarding info
* firewall: Show port forwarding info in tabular format
* kvstore: Allow module to be imported before Django init
* networks: Expose API to get/set network meta info
* firewall: Show port forwarding info contextually
* doc: wikiparser: Fix a minor flake8 issue
* doc: wikiparser: Fix issue with some URL containing dup. lang part
* doc: wikiparser: Make it easier to run with a #! at the top
* doc: wikiparser: Reduce build verbosity
* upgrades: Fix issue with checking if backports is current
* upgrades: Separate concepts for backports enabled vs. requested
* upgrades, security: Use consistent terminology 'activate'
* backports: When upgrading from older version, assumed requested
* package: Add ability to reinstall a package
* matrixsynapse: Perform a one time conversion to new config format
* doc: manual: Fetch latest manual, remove non-existent images/pages
* doc: wikiparser: Use icons from the icons directory
* doc: wikiparser: Show icons with full size
* doc: manual: Replace manual icons to drop CC 2.5 license
* deluge: Use older icon to drop CC 2.0 license
[ Joseph Nuthalapati ]
* searx: Add functional test for app availability
* container: Add unstable distribution
* functional-tests: Fix instructions for running functional tests
* functional-tests: Use latest version of splinter
* framework: Remove module init() functions
* wireguard: Remove hardcoded Windows client version
* functional-tests: splinter 0.14.0 is in PyPI
* apps: Remove Coquelicot
* matrix-synapse: Upgrade to 1.19
* container: Use builds with build-deps included
[ James Valleroy ]
* ci: Allow fuse to be installed
* tests: functional: Strip trailing / from FREEDOMBOX_URL
* ejabberd: Use new ruamel.yaml API and allow duplicate keys
* locale: Update translation strings
* doc: Fetch latest manual
* debian: Add gbp dch config
* debian: Fix use of wildcard path in copyright
* debian: Split copyright paragraph to avoid lintian error
* radicale: Remove code to handle 1.x
* doc: Fetch latest manual
* bepasty: New app for file upload and sharing
* bepasty: Add public access config form
* bepasty: Fetch manual page
* locale: Update translation strings
* doc: Add moinmoin wiki parser
* wikiparser: Fix spaces, multi-line, languages, icons
* doc: Use Makefile to fetch raw wiki files
* doc: Add icons used in manual
* manual: Add raw wiki files of included pages
* manual: Remove checked-in xml files
* wikiparser: Don't render Admonition with style comment
* test-wikiparser: Remove fixes.xslt step
* debian: Add unit tests to autopkgtest
* apache: Disable mod_status (CVE-2020-25073)
* debian: Don't show first wizard secret on command line
* debian: Remove unused vars from postinst
* matrixsynapse: Use conf.d snippets
* upgrades: Change backports activation message wording
* upgrades: Display correct backports info for unstable
* upgrades: Add first boot step to configure backports
* upgrades: Use kvstore and then file to determine if backports are enabled
* debian: Temporarily revert source package rename
* locale: Update translation strings
* doc: Fetch latest manual
[ Veiko Aasa ]
* samba: Hide common system partitions
* ikiwiki: Validate a path when deleting wiki or blog
* ssh: Disallow managing keys for the root user
* debian: Add newline to end of /var/lib/plinth/firstboot-wizard-secret
* functional-tests: snapshot: Skip if filesystem doesn't support snapshots
* container: Randomize btrfs partition UUID
* gitweb: Fix enable auth webserver component on app init
* gitweb: Add ability to change default branch
[ Павел Протасов ]
* Translated using Weblate (Russian)
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
[ ikmaak ]
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
[ Burak Yavuz ]
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
* Translated using Weblate (Turkish)
[ Xosé M ]
* Translated using Weblate (Galician)
[ Jens Molgaard ]
* Translated using Weblate (Danish)
[ Nikita Epifanov ]
* Translated using Weblate (Russian)
* Translated using Weblate (Russian)
[ Dietmar ]
* Translated using Weblate (German)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Diego Roversi ]
* Translated using Weblate (Italian)
[ Artem ]
* Translated using Weblate (Russian)
[ Ralf Barkow ]
* Translated using Weblate (German)
[ Reg Me ]
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
[ Q.-A. Nick ]
* upgrades, security: Update the messages describing backports
-- James Valleroy <jvalleroy@mailbox.org> Tue, 15 Sep 2020 17:03:43 -0400
freedombox (20.13) unstable; urgency=medium
[ Sunil Mohan Adapa ]
* Rename source package from plinth to freedombox.
[ Veiko Aasa ]
* minidlna: Do not expose statistics over public web
[ Benjamin Ortiz ]
* backups: Allow remote repository usernames to start with numbers
[ James Valleroy ]
* upgrades: Update apt cache before manual update
* upgrades: Parameterize backports dist name
* upgrades: Use current release codename when enabling backports
* upgrades: Use codename to pin freedombox from backports
* security: Move backports notice to security page
* upgrades: Add button to activate backports
* upgrades: Use only sources file to determine if backports enabled
* upgrades: Check that backports is for current release
* upgrades: Rewrite apt prefs file when activating backports
* upgrades: Enable backports for testing only in development mode
* upgrades: Show dist of backports to be activated
* upgrades: Split apt preferences into 2 files
* upgrades: Refactor use of lsb_release
* locale: Update translation strings
* doc: Fetch latest manual
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Tang Zongxun ]
* Translated using Weblate (Chinese (Simplified))
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
-- Federico Ceratto <federico@debian.org> Sat, 18 Jul 2020 12:14:08 +0100
plinth (20.12.1) unstable; urgency=high
[ nautilusx ]
* Translated using Weblate (German)
[ Robert Pollak ]
* Translated using Weblate (German)
[ J. Lavoie ]
* Translated using Weblate (French)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* cfg, frontpage: Ignore errors while reading config and shortcuts
[ Milo Ivir ]
* Translated using Weblate (German)
-- James Valleroy <jvalleroy@mailbox.org> Sun, 05 Jul 2020 15:40:30 -0400
plinth (20.12) unstable; urgency=medium
[ Oğuz Ersen ]
* Translated using Weblate (Turkish)
[ Sunil Mohan Adapa ]
* Translated using Weblate (Telugu)
* transmission: tests: functional: Fix to wait properly
* ttrss: tests: functional: Fix to wait properly
* tor: tests: functional: Fix to wait properly on progress page
* users: tests: functional: Leave no-language as final setting
* mldonkey: tests: functional: Wait for frame to load properly
* snapshot: tests: functional: Delete all snapshots properly
* ejabberd: tests: functional: Fixes for no implicit waiting
* syncthing: tests: functional: Fix to wait properly
* tests: functional: Remove implicit and explicit wait times
* tests: functional: Allow parallel installation of apps
* d/control: Add python3-systemd as a dependency
* apache: Add ssl-cert package as dependency
* storage: Use DBus directly for listing disks
* storage: Fix regression with showing error messages
* storage: Use UDisks information as primary source
* storage: Don't show empty progress bar for disks not mounted
* storage: Remove rule to not automount system disks with no paritions
* storage: Don't auto-mount loopback devices except in develop mode
* storage: Allow ejecting any device not in fstab or crypttab
* storage: Ignore eject failures if filesystems unmounted properly
* backups: Remove an unnecessary print() statement
* Translated using Weblate (Telugu)
* container: Remove sqlite3 file early enough
* storage: Don't log exception of disk space check fails
* storage: Use mount info instead of disk info for free space warning
* notifications: Fix issue with redirection on dismiss
* views: Drop use of private Django utility
* cfg: Don't fallback to develop config if main is not found
* cfg: Drop the default configuration file
* frontpage: Read custom shortcuts from multiple locations
* frontpage: Drop empty custom shortcut files
* cfg: Allow loading multiple configuration files
* cfg: For develop mode, overlay on top of regular configuration
* context_processor: tests: Use already available config fixture
* cfg: Eliminate the need for 'root' directory in configuration
* cfg: Move /plinth.config to plinth/develop.config
* cfg: Rename configuration file to freedombox.config
* d/tests/control: Rename Plinth to FreedomBox in a comment
* cfg: Read configuration from .d files and multiple locations
* frontpage: Load shortcuts from .d directories too
* frontpage: Read from .d files too
* cfg: Remove redundant data in develop.config
* cfg: Remove comments in test data
* cfg: In develop mode, use /var/lib for DB and sessions
* web_framework: Split initialization into two parts
* web_framework: Don't create Django secret key when listing depends
* log: Allow setting the default log level before log configuration
* main: List dependencies without writing to disk
* d/rules: vagrant: INSTALL.md: Fix installing dependencies
* *: Drop files paths in data/var
* doc: Update manual page with configuration file changes
* network: test: Fix race condition when deleting connections
* storage: tests: Ignore cases needing loop devices when not available
* actions: tests: Fix test failures due order of fixtures
* tests: Use develop configuration for most tests
* templates: Disable button and show spinner on submit for all forms
* backups: Remove custom handling of progress on the restore button
* js: Simplify auto-refresh page logic
* jsxc: Remove inline javascript
* apache: Set CSP and other common security headers
* apache: Relax CSP to allow web workers for JSXC
* locale: Update translation strings
[ ferhad.necef ]
* Translated using Weblate (Russian)
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
[ wind ]
* Translated using Weblate (Russian)
[ James Valleroy ]
* upgrades: Combine into single page with manual update
* upgrades: Skip enable-auto in develop mode
* debian: Add nscd >= 2 as dependency
* upgrades: Append unattended-upgrades-dpkg.log for more detail
* storage: Handle multi-line text in functional test
* apt: Run `apt-get -f install` before other commands
* apt: Run `dpkg --configure -a` before other actions
* upgrades: Skip enabling backports on testing and unstable
* networks: Remove firewall zone warning
* networks: Correct wording of internet connection form
[ Veiko Aasa ]
* functional-tests: Handle connection error when web server restarts
* functional-tests: Skip tests if app is not available in distribution
* functional-tests: Fix page not fully loaded errors when taking backups
* functional-tests: Remove unnecessary wait when navigating to module
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Éfrit ]
* Translated using Weblate (French)
[ Jens Molgaard ]
* Translated using Weblate (Danish)
-- Sunil Mohan Adapa <sunil@medhas.org> Mon, 29 Jun 2020 16:39:33 -0700
plinth (20.11) unstable; urgency=medium
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
[ Sunil Mohan Adapa ]
* *: Remove use of Turbolinks library
* web_framework: Reduce verbosity of DB migration process
* container: Add script to manage systemd-nspawn containers for dev.
* container: Fix upgrading of freedombox
* matrixsynapse: Handle upgrade to versions 1.15.x
[ James Valleroy ]
* upgrades: Don't enable backports on Debian derivatives
* upgrades: Use a custom service for manual update
* locale: Update translation strings
* doc: Fetch latest manual
* debian: Update renamed lintian tag
[ Ralf Barkow ]
* Translated using Weblate (German)
[ aiman an ]
* Added translation using Weblate (Arabic (Saudi Arabia))
* Translated using Weblate (Arabic (Saudi Arabia))
[ WaldiS ]
* Translated using Weblate (Polish)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 15 Jun 2020 19:55:45 -0400
plinth (20.10) unstable; urgency=high
[ Joseph Nuthalapati ]
* backups: Add optional field - Name
* functional-tests: Use Name attribute in backups
* functional-tests: Move @backups to Scenario level
* functional-tests: Leave tor+http test disabled
* tests: functional: Document running tests in parallel
* tests: functional: Add pytest-xdist to install.sh
[ Sunil Mohan Adapa ]
* openvpn: Use app toggle button and common app view
* tests: functional: Merge into main source hierarchy
* storage: Fix failing path validation unit tests
* tests: functional: cosmetic: flake8 fixes
* tests: functional: Re-organize step definitions and helper methods
* coturn: Fix functional test for backup/restore
* ttrss: Fix functional tests
* snapshot: Fix functional test to account for non-removable snapshots
* test: functional: Fix for Apache restart after domain change
* tor: Fix problems with running a relay
* mldonkey: Add app to freedombox-share group
* samba: Add clients information
* cockpit: Promote for advanced storage/firewalld/networking ops
* firewall: Mention that internal services are available over VPN
* firewall: Don't show tun interface in internal zone warning
* minidlna: Add link to manual page
* minidlna: Fix i18n for name of the app
* pagekite: Fix expired certificates causing connection failures
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Etienne ]
* Translated using Weblate (French)
[ Artem ]
* Translated using Weblate (Russian)
[ fred1m ]
* ikiwiki: Enable 'attachment' plugin by default
[ James Valleroy ]
* utils: Handle removal of axes.get_version()
* debian: Mark doc packages as Multi-Arch: foreign
* firewall: Minor spelling fix
* radicale: Fix link in description to clients
* users: Avoid error when user's groups cannot be parsed
* templates: Fix setup state check
* locale: Update translation strings
* doc: Fetch latest manual
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
* Translated using Weblate (Czech)
* Translated using Weblate (Hungarian)
* Translated using Weblate (Greek)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 01 Jun 2020 20:06:53 -0400
plinth (20.9) unstable; urgency=medium
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ James Valleroy ]
* snapshot: Set as essential module
* functional_tests: snapshot: Skip delete all when there are no snapshots
* quassel: Use systemd sandboxing features
* minidlna: Move sysctl config to /etc/sysctl.d/50-freedombox.conf
* upgrades: Add needrestart to restart services as needed
* upgrades: Enable Automatic-Reboot option of unattended-upgrades
* locale: Update translation strings
* doc: Fetch latest manual
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
[ Fioddor Superconcentrado ]
* Folder remained unrenamed. Should have changed along with git links.
[ Sunil Mohan Adapa ]
* snapshot: Fix issues with restore and delete
* performance: Add basic functional tests
* daemon: Allow using an alias when enabling a daemon
* bind: Add daemon alias for bind9 -> named
* daemon: bind: cosmetic: yapf, isort formatting
* firewall: Reload firewalld so it works with newly installed services
* glib: Allow scheduling non-repeating tasks in separate threads
* notification: Expand and clarify restriction on id property
* storage: Auto-mount disks, notify of failing disks
* package: Fix error log when checking if package manager is busy
* power: cosmetic: Fix flake8 warnings
* first_setup: Fix regression with logo not showing
* minidlna: cosmetic: isort fixes
* mediawiki: Stop jobrunner during backup/restore
* minidlna: Stop daemon during backup/restore
* mumble: Stop server during backup/restore
* quassel: Fix stopping server during backup/restore
* tor: Fix stopping server during backup/restore
* upgrades: Always schedule a reboot at 02:00 local time
* upgrades: Add information about service restart and system reboot
* performance: Launch the Cockpit graphs directly if possible
[ Joseph Nuthalapati ]
* samba: Change description to Network File Storage
* functional-tests: Skip network setup wizard
* functional-tests: Move Disable tests to the end
[ fred1m ]
* performance: Add app for system monitoring
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Artem ]
* Translated using Weblate (Russian)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 18 May 2020 19:42:49 -0400
plinth (20.8) unstable; urgency=medium
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
* Translated using Weblate (Telugu)
* HACKING: More detailed instructions for VirtualBox
* HACKING: Correction to macOS package manager name
[ Nektarios Katakis ]
* syncthing: add to freedombox-share group
[ Veiko Aasa ]
* users: Try-restart service after service is added to the sharing group
* datetime: Handle timesyncd service runs conditionally
* minidlna: Add functional tests that enable and disable application
* minidlna: Make app installable inside unprivileged container
[ Sunil Mohan Adapa ]
* web_server: Suppress warnings that static directories don't exist
* debian: Remove timer to setup repositories properly
* static: Use SVG logo during first wizard welcome step
* static: Reduce the size of the background noise image
* mediawiki: Reuse existing images in functional tests
* setup.py: Don't install/ship .po files
* static: Don't ship visual design file and unused images
* storage: Fix tests by wrestling with auto-mounting of disks
* HACKING: Minor indentation fix
* *: Update links to repository and project page
* ci: Update link to container in Docker registry
* coturn: New app to manage Coturn TURN/STUN server
* datetime: Refactor handling systemd-timesyncd not running in VMs
* datetime: Don't expect synced time in diagnostics inside VMs
* mediawiki: Partial fix for installing on testing
* datetime: Disable diagnostics when no tests are available
[ James Valleroy ]
* d/copyright: Fix path to visual_design
* data: Print hostname and IP addresses before console login
* snapshot: Fix message when not available
* snapshot: Fix title
* locale: Update translation strings
* debian: Use debhelper compat level 13
* doc: Fetch latest manual
[ Artem ]
* Translated using Weblate (Russian)
[ nautilusx ]
* Translated using Weblate (German)
[ Fioddor Superconcentrado ]
* Directions to install VirtualBox when it's not part of the Debian-based
distro, like Buster.
[ Anonymous ]
* Translated using Weblate (Spanish)
[ Nathan ]
* Translated using Weblate (French)
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ fred1m ]
* mumble: Add Mumla to the list of clients
-- James Valleroy <jvalleroy@mailbox.org> Mon, 04 May 2020 20:33:35 -0400
plinth (20.7) unstable; urgency=medium
[ Coucouf ]
* Translated using Weblate (French)
[ vihor ]
* Translated using Weblate (Serbian)
[ Localisation Lab ]
* Translated using Weblate (French)
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
[ Veiko Aasa ]
* gitweb: Improve error handling when creating repository
[ James Valleroy ]
* upgrades: Allow installation of python3-twisted from backports
* matrixsynapse: Handle upgrade to 1.12.*
* locale: Update translation strings
* doc: Fetch latest manual
[ Fioddor Superconcentrado ]
* HACKING: Clarify where commands should be run
-- James Valleroy <jvalleroy@mailbox.org> Mon, 20 Apr 2020 18:38:52 -0400
plinth (20.6.1) unstable; urgency=medium
[ James Valleroy ]
* users: Fix regression where form help_text line was dropped
* debian: Add firmware-ath9k-htc to Recommends
* doc: Fetch latest manual
[ Allan Nordhøy ]
* gitweb: Use proper ellipsis char when showing clone progress
* Translated using Weblate (Norwegian Bokmål)
* Translated using Weblate (German)
[ Coucouf ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Manuela Silva ]
* Translated using Weblate (Portuguese)
[ nautilusx ]
* Translated using Weblate (German)
[ Jeannette L ]
* Translated using Weblate (German)
* Translated using Weblate (French)
* Translated using Weblate (Italian)
[ wind ]
* Translated using Weblate (Russian)
[ vihor ]
* Translated using Weblate (Serbian)
-- James Valleroy <jvalleroy@mailbox.org> Sat, 11 Apr 2020 09:56:43 -0400
plinth (20.6) unstable; urgency=medium
[ wind ]
* Translated using Weblate (Russian)
[ Thomas Vincent ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Alice Kile ]
* app: Separate app enable/disable form from config form
[ Sunil Mohan Adapa ]
* pagekite: Fix functional tests
* monkeysphere: Making styling more specific to avoid interference
* networks: Make styling more specific to avoid interference
* syncthing: Update description to mention 'syncthing' group
[ Michael Breidenbach ]
* Translated using Weblate (German)
[ Coucouf ]
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ James Valleroy ]
* radicale: Support upgrade to any 2.x version
* packages: Mark freedombox package as held during package installs
* packages: Keep existing hold if already set
* locale: Update translation strings
* doc: Fetch latest manual
* debian: Cleanup overrides for jsxc symlinks
[ Allan Nordhøy ]
* Translated using Weblate (German)
* Translated using Weblate (French)
* Translated using Weblate (Italian)
* Translated using Weblate (Hindi)
[ Joseph Nuthalapati ]
* users: Add component for managing users and groups
* yapf: Update conf to add blank line before nested class/def
* cosmetic: Minor yapf and other fixes
* app: Fix grammar in developer documentation string
* ikiwiki: Disable edits. Add moderation of comments
* Translated using Weblate (Telugu)
* vagrant: Skip upgrading freedombox dependencies
* firewalld: Force upgrade anything in [0.7, 0.9)
* infinoted: Fix permissions of sync directory
[ vihor ]
* Added translation using Weblate (Serbian)
* Translated using Weblate (Serbian)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 06 Apr 2020 20:40:17 -0400
plinth (20.5.1) unstable; urgency=medium
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Allan Nordhøy ]
* networks: Update label wording in topology form: Choose → Specify
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* web_server: Introduce component to handle special static file dirs
* jsxc: Fix issue with serving static files
* help: Move custom static file handling into app from central place
* debian: Update doc-base to include PDF
* debian: Prepare for multiple binary packages
* debian: Separate binary packages for each language manual
* debian: Remove outdated TODO file
[ Michael Breidenbach ]
* Translated using Weblate (German)
[ James Valleroy ]
* debian: Correct doc package names in Recommends
-- James Valleroy <jvalleroy@mailbox.org> Thu, 26 Mar 2020 09:13:13 -0400
plinth (20.5) unstable; urgency=medium
[ Joseph Nuthalapati ]
* ci: Use pre-built container image to speed up CI
* ci: Add maintenance script for updating images
* ci: Optimize refreshing Docker image for GitLabCI
[ James Valleroy ]
* ci: Switch docker image to testing
* Translated using Weblate (Swedish)
* locale: Update translation strings
* doc: Fetch latest manual
[ Sunil Mohan Adapa ]
* app: Fix name of the block in templates, used for overriding
* views: Allow AppViews to set self.intial
* pagekite: Simplify code for form adding custom service
* pagekite: Remove unused templates
* pagekite: Drop ineffective base template
* pagekite: Minor cleanup
* pagekite: Merge all the configuration retrieval actions
* pagekite: Merge set-kite and set-frontend actions
* pagekite: Use Daemon component to simplify handling daemon actions
* pagekite: Don't signal new domain on init if app is disabled
* pagekite: Simplify code notifying domain name changes
* pagekite: Don't attempt to notify about domain if app is disabled
* pagekite: Remove app enabled checking from getting configuration
* pagekite: Fix functional tests by submitting the right form
* pagekite: Fix styling issues for custom services section
* pagekite: On enable/disable, add/remove domain from names module
* pagekite: Fix an error message in custom services form
* pagekite: Ensure transitioning for from old code
* matrixsynapse: Handle release of matrix-synapse 1.11
* setup: Fix regression to force-upgrade caused by Info changes
* pagekite: Don't allow non-unique custom services
* toolbar: Factor out the clients buttons into a separate template
* index: Reintroduce clients button in front page
* upgrades: Don't ship apt backport preferences file
* setup.py: Remove files shipped in the past
* upgrades: Use internal scheduler instead of systemd timer
* shadowsocks: Change default configuration
* action_utils: Add utility to call systemd daemon-reload
* shadowsocks: Fix incorrect setting of state directory
* shadowsocks: When editing configuration, don't re-enable
* mediawiki: Don't allow anonymous edits
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
* Translated using Weblate (Spanish)
[ Fred ]
* Translated using Weblate (French)
[ Veiko Aasa ]
* names: Fix Local Network Domain is not shown
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Nektarios Katakis ]
* shadowshocks: Fix setting configuration on Buster
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 23 Mar 2020 19:42:28 -0400
plinth (20.4) unstable; urgency=medium
[ Thomas Vincent ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Sunil Mohan Adapa ]
* networks: Fixes for networks wizards
* avahi: Use generic app view
* privoxy: Use generic app view
* infinoted: Move views to a separate views module
* help: Rename views modules as 'views'
* networks: Rename views modules as 'views'
* diagnostics: Rename views modules, move utilities to main module
* backups: cosmetic: Rename .inc file to .html
* css: Merge responsive.css into main style file
* css: cosmetic: Rename plinth.css to main.css
* views: Don't send app to template context
* app: Fix showing app name in port forwarding information
* networks: Rename polkit JS authority rules file
* firewalld: Add polkit JS authority rules files
* networks: Show router wizard before Internet connection type wizard
* networks: Don't show router wizard if not behind a router
* networks: If topology wizard is skipped, skip router wizard too
* apache: Handle transition to php 7.4
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
* shadowsocks: Move user settings to state directory
[ Veiko Aasa ]
* storage: Directory selection form improvements
* transmission: Allow one to submit download directory if it is creatable
* plinth: Increase sqlite busy timeout from default 5s to 30s
* upgrades: Clean apt cache every week
* apps: Do not show status block if service is running
* i2p: New style app page layout
* quassel: Fix unable to disable application without choosing a domain name
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Nektarios Katakis ]
* networks: Add form for network topology
* networks: Add page for network topology form
* networks: First boot view for network topology wizard
* networks: First boot step for network topology wizard
* networks: Save networks topology type to DB
* networks: Update main networks page Internet connectivity section
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ James Valleroy ]
* ci: Switch to testing image
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 09 Mar 2020 20:01:44 -0400
plinth (20.3) unstable; urgency=medium
[ Sunil Mohan Adapa ]
* web_framework: Separate out Django settings into module
* doc/dev: Allow all modules to be imported by Sphinx
* notification: Add developer documentation
* doc/dev: Update copyright year
* app: Update style for toggle button
* app: Drop border shadow for app icon in mobile view
* app: cosmetic: Minor refactoring of header styling
* app: Simplify some header styling
* app: cosmetic: Rename a CSS style class in app header
* app: cosmetic: Rename header.html to app-header.html
* app: Show short description as secondary title
* networks: Fix i18n for wizard forms
* networks: Minor changes to router/internet configuration forms
* web_framework: Generate and retain a secret key
* web_framework: Cleanup expired sessions every week
[ Nektarios Katakis ]
* networks: Add form for internet connection type
* networks: Add network view and url for internet connection help page
* networks: Link internet connection help page with networks page.
* networks: All first step wizard form for internet connection type
* networks: Add first boot step for internet connection type
* networks: Save to kvstore internet connectivity type
* networks: Refactor connections list template
* networks: Show internet connectivity string in main page
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
[ Dietmar ]
* Translated using Weblate (Italian)
[ Jaime Marquínez Ferrándiz ]
* Translated using Weblate (Spanish)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* shadowsocks: Fix shadowsocks not able to start
[ James Valleroy ]
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 24 Feb 2020 20:16:12 -0500
plinth (20.2.1) unstable; urgency=high
[ Veiko Aasa ]
* apps: remove css filters and glow from app icons
* config: Depends also on apache module
[ Dietmar ]
* Translated using Weblate (German)
* Translated using Weblate (Italian)
* Translated using Weblate (Italian)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* cards: Remove the transition delay on hover effect
* system: Implement new style for cards
* jsxc: Bypass issue with stronghold to get the app working again
* jsxc: Fix functional test case failure
* functional_tests: cosmetic: Minor yapf change
* app: Introduce Info component to store basic app information
* app: Add info property as shortcut to access basic information
* app: Refactor all apps to use the Info component
* app: Document the app_id property for App class
* doc/dev: Include information on how to edit dev documentation
* views: Document the AppView class properties
* monkeysphere: Fix regression with reading Apache configuration
* Translated using Weblate (Italian)
* firewall: Use firewalld DBus API for most operations
* *.py: Use SPDX license identifier
* *.html: Use SPDX license identifier
* actions/*: Use SPDX license identifier
* functional_tests: Use SPDX license identifier
* *.css: Use SPDX license identifier
* *: Update misc build related files to use SPDX license identifier
* doc/dev: Update tutorial to use SPDX license indentifier
* *: Update remaining misc files to use SPDX license identifier
* *.js: Use SPDX license identifier
* help: Fix attribute on download manual button
* css: Add missing license identifier on some CSS files
* firewalld: Ignore errors with DBus API when firewalld is not running
* deluge: Don't use code execution for editing configuration
* deluge: More reliable initial configuration setup
[ Joseph Nuthalapati ]
* l10n: Fix gettext not detecting no-python-format
* samba: Add link to manual page
* searx: Update search engines for 0.16.0
[ Allan Nordhøy ]
* openvpn: Fix spelling for Tunnelblick
* Translated using Weblate (Norwegian Bokmål)
[ Nektarios Katakis ]
* bind: parse zones files
* bind: test for parsing zones file with specific format
* bind: views show served domains in main view
* bind: create zones directory on setup action
[ James Valleroy ]
* bind: Bump version and handle upgrade
[ Ralf Barkow ]
* Translated using Weblate (German)
[ nautilusx ]
* Translated using Weblate (German)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Lev Lamberov ]
* debian: Update Russian translation for debconf (Closes: #951440)
[ Radek Pasiok ]
* Translated using Weblate (Polish)
[ Alice Kile ]
* gitignore: Add .vscode & segregate editor settings
[ Thomas Vincent ]
* Translated using Weblate (French)
-- James Valleroy <jvalleroy@mailbox.org> Fri, 21 Feb 2020 22:38:12 -0500
plinth (20.2) unstable; urgency=medium
[ Veiko Aasa ]
* networks: Support virtual Ethernet (veth) devices
* diagnostics: Show firewall service status
* users: Fix functional test delete user
* storage: Show disks if FreedomBox is running in an unprivileged container
* service: Stop service not before but after disabling it
* users: More precise username validation
* sso, users: Turn off autocapitalization on the username field
* users: Add unit tests for views
* help: Fix anchor hidden under navbar
[ Joseph Nuthalapati ]
* tests: Use the latest version of geckodriver
* vagrant: Add alias for run --develop
* l10n: Add blocktrans trimmed tag on a block
* l10n: Add missing trimmed to blocktrans blocks
* vagrant: Allocate cpus equal to the no. of cores
* Translated using Weblate (Telugu)
* searx: Fix installation issue for 0.16.0
[ Sunil Mohan Adapa ]
* firewall: Show Run Diagnostics button in app
* help: Eliminate redundant HTML attribute in template
* glib: Create a new module to deal with all things glib
* glib: Introduce method to schedule an operation at regular intervals
* web_framework: Set the timezone to UTC
* log: Ability to log SQL queries (disabled by default)
* tests: Allow adding test templates
* models: Add model for storing notifications
* notification: New API for showing better notifications
* notification: Add tests for notification API
* views: A view to dismiss notifications
* notification: Show a drop down from main navbar for notifications
* storage: Show low disk space warning using notifications API
* upgrades: Show notification when FreedomBox is updated
* storage: In develop mode check for low disk space more frequently
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Ralf Barkow ]
* Translated using Weblate (German)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ James Valleroy ]
* users: Make help text translatable
* security: Add Sandbox Coverage to report page
* bind: Add CapabilityBoundingSet and ReadWritePaths to service file
* matrixsynapse: Enable systemd sandboxing
* security: Drop PrivateUsers=yes from all service files
* locale: Update translation strings
* doc: Fetch latest manual
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 10 Feb 2020 19:22:55 -0500
plinth (20.1) unstable; urgency=medium
[ ikmaak ]
* Translated using Weblate (Dutch)
* Translated using Weblate (Dutch)
[ Allan Nordhøy ]
* samba: Fix spelling
* Translated using Weblate (Norwegian Bokmål)
* Translated using Weblate (German)
* Translated using Weblate (Spanish)
* Translated using Weblate (Norwegian Bokmål)
* Translated using Weblate (Swedish)
[ Veiko Aasa ]
* samba: Add unit and functional tests
* deluge: Allow one to set a download directory
* deluge: Fix installation failure on slow machine
* storage: Make external disk mounts accessible by other users
* gitweb: Add link to the manual page
* gitweb: Fix functional tests if git user and email is not configured
[ Sunil Mohan Adapa ]
* style: Fix incorrect margins for containers in mobile view
* style: Fix responsiveness for app header
* network: Fix activating connections that don't have real devices
* network: Allow setting the auto-connect property on a connection
* network: Add method to re-activate connections after an update
* wireguard: Show large buttons in show client/server pages
* wireguard: Cosmetic fixes by yapf and isort
* wireguard: Don't error out when wg0 server is not setup
* wireguard: Add ability to set private key in client addition
* wireguard: Accept all IPs on server in a client setup
* wireguard: Update descriptions in form labels
* wireguard: Only use network manager for connections to servers
* wireguard: Handle client connections through network manager
* wireguard: Update descriptions for client vs. server clarity
* wireguard: Generate private key if needed when editing server
* wireguard: Add validations in forms
* wireguard: Ensure tests work without latest network manager
* wireguard: Implement enabling/disabling app using a stored flag
* wireguard: Enable/disable connections along with the app
* wireguard: When a connection is edited, reactivate to apply changes
* wireguard: Show public key even when connection is not active
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Nektarios Katakis ]
* Translated using Weblate (Greek)
* Translated using Weblate (Greek)
* Translated using Weblate (Greek)
* networks: form for configuring router
* networks: create view & url for new form
* networks: add link to main page for router config form
* networks: add first boot step for router config helper
* networks: modify as first boot wizard step
* networks: save router config to kvstore
[ James Valleroy ]
* Translated using Weblate (French)
* wireguard: Add skeleton for new app
* wireguard: Implement adding client
* wireguard: Show list of added clients
* wireguard: Allow deleting a client
* wireguard: Add client info view
* wireguard: Form to add server
* wireguard: List peers in client section
* wireguard: Add server information view
* wireguard: Generate key pair
* wireguard: Show this box's public key
* wireguard: Create network manager connection
* wireguard: Encode public keys for use in URLs
* wireguard: Refactor actions file
* wireguard: Add views for editing and deleting clients and servers
* wireguard: Make setup idempotent
* wireguard: Write pre-shared key to tempfile
* wireguard: Use network API to handle connections
* wireguard: Add icon
* wireguard: Replace nmcli use with libnm
* restore: Remove app
* repro: Remove app
* networks: Update text for router setup
* bind: Enable systemd sandbox options for bind9 service
* functional_tests: Update geckodriver version to v0.26.0
* locale: Update translation strings
* doc: Fetch latest manual
* debian: Rename TODO.Debian to TODO
* debian: Add Expat license to copyright
* debian: Update standards version to 4.5.0
[ Dietmar ]
* Translated using Weblate (German)
[ nautilusx ]
* Translated using Weblate (German)
* Translated using Weblate (German)
[ Joseph Nuthalapati ]
* functional-tests: Login only once per session
* functional-tests: Africa/Addis_Abada is gone?
* functional-tests: Add tag @service-discovery
* functional-tests: Make nav_to_module efficient
* functional-tests: Avoid unnecessary trips to Home
* functional-tests: Avoid warnings about markers
* functional-tests: Minor refactoring
* functional-tests: Mark backups and security with @system
-- James Valleroy <jvalleroy@mailbox.org> Mon, 27 Jan 2020 19:23:04 -0500
plinth (20.0) unstable; urgency=medium
[ Veiko Aasa ]
* users: Fix test fixture that disables console login restrictions
* gitweb: Add tests for views
* samba: Improve actions script startup time
* deluge: Manage starting/stoping deluged
* deluge: Fix set default daemon
[ Nektarios Katakis ]
* openvpn: Enable support for communication among all clients
* Translated using Weblate (Greek)
* Translated using Weblate (Greek)
* Translated using Weblate (Greek)
* Translated using Weblate (Greek)
[ Sunil Mohan Adapa ]
* gitweb: Fix flake8 error that is causing pipeline failures
* storage: Ignore errors resizing partition during initial setup
* storage: Make partition resizing work with parted 3.3
* debian: Add powermgmt-base to recommends list
* openvpn: Enable IPv6 for server and client outside the tunnel
* networks: Refactor creating a network manager client
* networks: Remove unused method
* networks: Fix crashing when accessing network manager D-Bus API
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
* Translated using Weblate (German)
* Translated using Weblate (German)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Joseph Nuthalapati ]
* mediawiki: Use a mobile-friendly skin by default
* mediawiki: Allow admin to set default skin
* mediawiki: Fix functional tests depending on skin
[ James Valleroy ]
* Translated using Weblate (Greek)
* Translated using Weblate (Greek)
* openvpn: Add diagnostic for ipv6 port
* matrixsynapse: Allow upgrade to 1.8.*
* security: Add explanation of sandboxing
* locale: Update translation strings
* doc: Fetch latest manual
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Ralf Barkow ]
* Translated using Weblate (German)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 13 Jan 2020 19:11:44 -0500
plinth (19.24) unstable; urgency=medium
[ Thomas Vincent ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Veiko Aasa ]
* app: Fix javascript doesn't run on first visit
* samba: private shares
* storage: Tests for the directory validation action
* users: Add tests for the Samba user database
[ James Valleroy ]
* samba: Fix spelling in description
* debian: Update French debconf translation (Closes: #947386)
- Thanks to Jean-Pierre Giraud for the patch.
* firewall: Support upgrading firewalld to 0.8
* mldonkey: Add ProtectKernelLogs
* deluge: Use systemd sandboxing features
* infinoted: Use systemd sandboxing features
* storage: Add systemd sandboxing features to udiskie service
* upgrades: Add systemd sandboxing features to repository setup service
* security: List whether each app is sandboxed
* locale: Update translation strings
* debian: Update Dutch debconf translation (Closes: #947136)
- Thanks to Frans Spiesschaert for the patch.
* doc: Fetch latest manual
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
[ Nektarios Katakis ]
* Translated using Weblate (Greek)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Kunal Mehta ]
* mediawiki: Pass --quick when running update.php
[ Sunil Mohan Adapa ]
* help: Refactor to move app into __init__.py for consistency
* app: Introduce API to return a list of all apps
* app: Introduce API to run diagnostics on an app
* apache: Implement diagnostic test for web server component
* daemon: Implement diagnostic test for daemon component
* daemon: Implement diagnostic test to check if a daemon is running
* firewall: Implement new diagnostic tests to check port status
* diagnostics: Use new component based API for all diagnostic tests
* cosmetic: Yapf and isort fixes
* daemon: Move diagnosing port listening into daemon module
* daemon: Move diagnosing using netcat to daemon module
* apache: Move diagnostics for checking URLs into apache module
* app: Implement API to check if app/component has diagnostics
* views: Don't require sending diagnostics module name separately
* minidlna: Fix showing clients information
* mediawiki: Fix problem with session cache failing logins
[ Ralf Barkow ]
* Translated using Weblate (German)
[ erlendnagel ]
* Translated using Weblate (Dutch)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 30 Dec 2019 21:17:58 -0500
plinth (19.23) unstable; urgency=medium
[ Thomas Vincent ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Fred ]
* Translated using Weblate (French)
[ Alice Kile ]
* show app icons in apps page
* use single variable for referencing icon filename
* fix formatting issues
* fix formatting and template-related issues
* properly implement header in app and setup pages
* implement responsive layout for app page
* fix toggle button html layout and responsive design css
* config: fix minor syntax error
* fix: implement requested changes
[ James Valleroy ]
* themes: css whitespace minor fixes
* samba: Add icon to app page
* minidlna: Add managed service and Daemon component
* minidlna: Use single action to set media dir and restart
* minidlna: Show icon on app page
* minidlna: Fix webserver config name
* minidlna: Only show shortcut to users in group
* mumble: Keep icon_filename in moved view
* cockpit: Filter out localhost URLs from displayed access list
* users: Use service action to restart share group service
* locale: Update translation strings
* doc: Fetch latest manual
[ Veiko Aasa ]
* samba: recursively set open share directory permissions
* users: Fix functional tests changing the language feature
* app: Fix app checkbox status change functional tests
* storage: Directory selection form and validator
* transmission: New directory selection form
[ Nektarios Katakis ]
* feature: minidlna app
* fix: minidlna.conf file permissions after editing
* update minidlna svg
* run sysctl after installation
* mumble: Add option to set SuperUser password
* cockpit: extend apps description with access info
* cockpit: add list of valid urls to access the app.
[ /rgb ]
* Translated using Weblate (German)
* Translated using Weblate (German)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ adaragao ]
* Translated using Weblate (Portuguese)
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 16 Dec 2019 18:38:46 -0500
plinth (19.22) unstable; urgency=medium
[ Matt Conroy ]
* pagekite: Get rid of tabs in the configuration page
* openvpn: manual link points to incorrect page
[ Joseph Nuthalapati ]
* pagekite: Fix functional tests
* pagekite: Show existing services only if there are any
* pagekite: Make Custom Services look like it's under Configuration
* pagekite: Use the new app toggle button
* openvpn: Add client apps
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Fred ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Alice Kile ]
* backups: fix title not appearing
* diagnostics: don't run on disabled modules
* apps: Remove link to webapps in app descriptions
* Fix error with app toggle input
* templates: Add toolbar for apps in app.html
* toolbar: Move diagnostics button into dropdown menu
[ nautilusx ]
* Translated using Weblate (German)
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
[ Veiko Aasa ]
* ssh: fix Avahi SFTP service file
* diagnostics: fix IPv6 failures
* matrix-synapse: Update requirement from buster-backports
* samba: Users can enable a guest share
* samba: user can select devices for sharing
* samba: fixes and improvements
* samba: fixes and improvements
* app: fix javascript constant redeclaration error
* samba: Fix javascript constant redeclaration error
[ James Valleroy ]
* debian: Update German debconf translation (Closes: #945387)
- Thanks to Helge Kreutzmann for the patch.
* samba: Add acl to managed_packages
* samba: Fix restore command
* samba: Move urls under apps/
* functional_tests: Add basic samba tests
* samba: Use register_group instead of create_group
* samba: Only show shortcut to users in freedombox-share group
* samba: Keep create_group in setup
* diagnostics: Use a distinct class for Run Diagnostics button on this page
* locale: Update translation strings
* doc: Fetch latest manual
[ Sunil Mohan Adapa ]
* diagnostics: Use app.html instead of simple_app.html
* firewall: Use app.html instead of simple_app.html
* letsencrypt: Use app.html instead of simple_app.html
* monkeysphere: Use app.html instead of simple_app.html
* names: Use app.html instead of simple_app.html
* power: Use app.html instead of simple_app.html
* openvpn: Use app.html instead of simple_app.html
* tor: Use app.html instead of simple_app.html
* ikiwiki: Move the create button to manage section
* gitweb: Move create button into manage section
* networks: Move actions button into connection section
* templates: Remove the now unused simple_app.html
* users: Move create button into users section
* minetest: Minor cosmetic fix
* templates: Make internal zone and port forwarding info override-able
* toolbar: Make diagnostics button looks like other drop down items
* toolbar: Align extra actions drop down button to the right
* toolbar: Rewamp toolbar code for simplicity and to fix issues
-- James Valleroy <jvalleroy@mailbox.org> Mon, 02 Dec 2019 18:00:45 -0500
plinth (19.21) unstable; urgency=medium
[ Veiko Aasa ]
* gitweb: Allow to import from a remote repository
* gitweb: Do not recursively scan for Git repositories
* turbolinks: Disable turbolinks on links that don't point to /plinth/...
[ nautilusx ]
* Translated using Weblate (German)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Allan Nordhøy ]
* Translated using Weblate (Swedish)
* Translated using Weblate (Norwegian Bokmål)
[ Birger Schacht ]
* backups: Show proper error when SSH server is not reachable
* ssh: Add the error of ssh-keyscan to the verification view
* tor: Rename "Hidden Service" to "Onion Service"
[ Joseph Nuthalapati ]
* ejabberd: Handle case where domain name is not set
* tahoe: Mark Tahoe-LAFS as an advanced app
* README: Fix hyperlinks to badges and images
* doc: dev: Add instructions to setup developer documentation
* doc: dev: Mention where to find the user manual
* doc: dev: Reduce toc depth to 2 levels to reduce noise
* doc: dev: Fix headings
* doc: dev: Add favicon to developer documentation site
* app: Avoid showing empty configuration block
* app: Fix broken functional tests
* firstboot: reading firstboot-wizard-secret file
* searx: Set safe_search to Moderate by default
* clients: Improve code readability
[ Sunil Mohan Adapa ]
* backups: i18n for a string on verify ssh host page
* backups: Simplify SSH fingerprint verification command
* HACKING: Update with instructions for multiple OSes
* CONTRIBUTING: Add more instructions on commits and MR changes
* doc: Fix unavailability of manual images
* tor: Fix port diagnostics by correcting port data type
* tor: Expect obfs service to be also available on IPv6
* tor: Listen on IPv6 for OrPort
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Michael Breidenbach ]
* Translated using Weblate (Swedish)
[ James Valleroy ]
* HACKING: Fix provision with tests command
* d/po: Run debconf-updatepo
* locale: Update translation strings
[ Radek Pasiok ]
* Translated using Weblate (Polish)
* Translated using Weblate (Polish)
[ Alice Kile ]
* clients: implement launch button feature
* app: Implement toggle button in app page
* app: Use single form for app toggle and configuration
* app: Make the toggle-button responsive
-- James Valleroy <jvalleroy@mailbox.org> Mon, 18 Nov 2019 19:35:38 -0500
plinth (19.20) unstable; urgency=medium
[ Veiko Aasa ]
* gitweb: Set correct access rights after enabling application
* gitweb: Add tests for actions script
* gitweb: Add functional tests
* gitweb: avoid global environment variables in Apache configuration
* gitweb: fix links that end with /HEAD
* gitweb: Validate repository name also in actions script
* gitweb: do not change working directory inside actions script
* sharing: Fix wrong links on Apache2 directory index page
[ Fioddor Superconcentrado ]
* Translated using Weblate (German)
* Translated using Weblate (Spanish)
* d/po/es: New translation file
* d/po: Fix header comments
[ Michael Breidenbach ]
* Translated using Weblate (German)
* Translated using Weblate (Swedish)
* Translated using Weblate (Swedish)
[ Sunil Mohan Adapa ]
* debian: Remove plinth transitional package
* cfg: Fix test case failure due to incorrect path assumption
* gitlab-ci: Fix path for HTML coverage report generation
* gitweb: Set proper access after restoration of a backup
* setup: Don't include actions/__pycache__ during installation
* ssh: Fix flake8 failure by removing unused import
* config: Use AppView and cleanup custom code
* storage: Use AppView and cleanup custom code
* doc: Install using makefile instead of setup.py
* doc: Fetch and add Spanish manual
* help: Fix showing manual pages in fallback cases
* app: Fix a pytest warning in tests
* setup.py: Set development status classifier to production/stable
* setup.py: Add more topics to classifiers
* doc: Add developer documentation using Sphinx
* actions: Fix issue with docstring causing issues with Sphnix
* Translated using Weblate (Swedish)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Thomas Vincent ]
* Translated using Weblate (French)
* backups: Fix a typo in backups upload form
* Translated using Weblate (French)
[ homycal ]
* Translated using Weblate (French)
[ Mattias Münster ]
* Translated using Weblate (Swedish)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
* Translated using Weblate (French)
* Translated using Weblate (French)
[ Nektarios Katakis ]
* ssh: Option for disabling password authentication
[ Joseph Nuthalapati ]
* infinoted: Add missing manual page link
* doc: Add directory for development documentation
* doc: Skip empty lines when piping to wget
* doc: Fix Unicode issues with the manual
* doc: Remove language code from title
* doc: Move build scripts into separate directory
* doc: Minor cosmetic changes
* doc: Move English manual to manual/en directory
* help: Respect language preference when showing user manual
* snapshot: Sort snapshot list from newest to oldest
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Fred ]
* Translated using Weblate (French)
* Translated using Weblate (French)
[ James Valleroy ]
* config: Implement get_initial and form_valid
* functional_tests: Update config form ids
* coquelicot: Change quotes to ASCII
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 04 Nov 2019 19:15:27 -0500
plinth (19.19) unstable; urgency=medium
[ Veiko Aasa ]
* ikiwiki: Allow full Unicode text in wiki/blog title names
* actions: Check with flake8
* gitweb: New app for simple git hosting
* users: reload Apache2 to flush LDAP cache after user operations
* gitweb: update repository list where necessary
* gitweb: fix Windows Git client download link in manifest
* gitweb: add help text for description and owner fields in the form
* gitweb: enable rename detection
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Thomas Vincent ]
* Translated using Weblate (French)
[ Birger Schacht ]
* ssh: Show server fingerprints in SSH page
[ James Valleroy ]
* Translated using Weblate (French)
* gitweb: Fix flake8 error
* locale: Update translations strings
* doc: Fetch latest manual
[ Nevena Mircheva ]
* Translated using Weblate (Bulgarian)
[ Sunil Mohan Adapa ]
* matrixsynapse: Remove unused letsencrypt action
* ejabberd: Removed unused letsencrypt action
* gitweb: Minor fixes after review
* gitweb: Minor visual changes to templates
* gitweb: Fix issue with elevated access to private repositories
* frontpage: Show shortcuts that public even if need a group
* searx, app, translation, language-selection: Fix license header
* ikiwiki: Remove extra create button when no wiki/blog is present
* cosmetic: yapf formatting
[ ikmaak ]
* Translated using Weblate (Dutch)
[ Michael Breidenbach ]
* Translated using Weblate (German)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Matthias Dellweg ]
* quassel: Add let's encrypt component for certficiates
-- James Valleroy <jvalleroy@mailbox.org> Mon, 21 Oct 2019 18:49:35 -0400
plinth (19.18) unstable; urgency=medium
[ Matthias Dellweg ]
* diagnose: Move negating diagnose result inside try block
[ Fioddor Superconcentrado ]
* Translated using Weblate (Spanish)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Dietmar ]
* Translated using Weblate (German)
[ Sunil Mohan Adapa ]
* pagekite: Remove first wizard step for danube edition
* pagekite: cosmetic: yapf and isort changes
* debian: Remove python3-requests from depends list
* users: Make UI close to rest of the apps
* upgrades: Remove unnecessary subsubmenu
* ikiwiki: Remove subsubmenu in favor of toolbar
* networks: Remove subsubmenu in favor of toolbar buttons
* backups: Remove unnecessary use of subsubmenu template
* templates: Remove unused invocation of subsubmenu
* templates: Simplify unnecessary override
* templates: Provide subsubmenu functionality in app.html
* dynamicdns: Use app.html instead of app-subsubmenu.html
* i2p: Use app.html instead of app-subsubmenu.html
* pagekite: Use app.html instead of app-subsubmenu.html
* snapshot: Use app.html instead of app-subsubmenu.html
* templates: Remove unused app-subsubmenu.html
* deluge: Support deluge 2 by starting it properly
* minetest: Remove mod-torches no longer available in testing/unstable
[ James Valleroy ]
* security: Add past vulnerabilities count
* security: Move security report to new page
* locale: Update translation strings
* doc: Fetch latest manual
* d/control: Add Rules-Requires-Root: no
* d/control: Update Standards-Version to 4.4.1
-- James Valleroy <jvalleroy@mailbox.org> Mon, 07 Oct 2019 19:06:16 -0400
plinth (19.17) unstable; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
* Translated using Weblate (Czech)
[ Anxin YI ]
* Translated using Weblate (Chinese (Simplified))
[ Joseph Nuthalapati ]
* firstboot: network connections not used, cleanup
* firstboot: Add new help menu to firstboot navbar
[ Sunil Mohan Adapa ]
* letsencrypt: Update and fix tests involving domain changes
* tor: Fix test case for getting status
* firstboot: Hide left menu during first boot as intended
[ James Valleroy ]
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 23 Sep 2019 18:14:40 -0400
plinth (19.16) unstable; urgency=medium
[ Joseph Nuthalapati ]
* help: Add button to submit feedback
* help: Add button for Support
* help: Add button for Contribute
* manual: Move PDF download link to HTML manual page
* help: Convert help icon in the navbar to dropdown
[ Sunil Mohan Adapa ]
* help: Add more text to contribute page for donations
* action_utils: Introduce utility for setting debconf answers
* action_utils: Workaround problem with setting debconf answers
* views: Fix failure in redirecting from language selection page
* help: Make download as PDF a regular button
* backups: Add missing slashes at the end of URLs
* backups: Remove cancel button from add disk location page
* backups: Fix removing local repository
* backups: Simplify checking repository capabilities using flags
* backups: Simplify listing repositories in index page
* backups: Rename network_storage module to store
* backups: Introduce method for checking if a repository is usable
* backups: Minor cosmetic fixes
* backups: Expose repository path as property
* backups: Rename remove_repository method to remove
* backups: Minor change to disk repository name
* backups: Rename repo_path to borg_path for clarity
* backups: Make mountpoint property private
* backups: Use higher level method in views instead of store methods
* backups: Implement hostname property on SSH repository
* backups: Clarify two separate uses of name create_repository
* backups: Separate repository loading from instantiation
* backups: Minor cosmetic changes
* backups: Minor simplification in running of action script
* backups: Improve handling borg errors
* backups: Minor simplification when adding remote repository
* backups: Handle errors when adding disk repository
* backups: Show repository error in archives table
* backups: Show lock icon for encrypted repositories
* backups: Show error when password is provided for unencrypted repo
* backups: Don't show used disk choices when adding disk repo
* backups: Show error when there are no disks available to add repo
* backups: Move add repository buttons to the top
* ejabberd: Fix listen port configuration for ejabberd 19.x
* cockpit: Prevent restart on freedombox startup
* ejabberd: Prevent restart on freedombox startup
* ejabberd: Perform host/domain name operations only when installed
* module_loader: Cosmetic changes by yapf
* web_server: Remove log message about serving static directory
* setup: Better log message when no apps need upgrades
* module_loader: Remove log message when app is imported
* actions: Improve log message about action execution
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Swann Martinet ]
* Translated using Weblate (German)
* Translated using Weblate (Italian)
* Translated using Weblate (French)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Danny Haidar ]
* help: Minor updates to the statements on contribute page
[ Joseph Nuthalpati ]
* backups: Allow adding backup repositories on multiple disks
* backups: Refactor class hierarchy in repository.py
* backups: Save new backup location to plinth database
[ James Valleroy ]
* locale: Update translation strings
-- James Valleroy <jvalleroy@mailbox.org> Mon, 09 Sep 2019 18:20:03 -0400
plinth (19.15) unstable; urgency=medium
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ nautilusx ]
* Translated using Weblate (German)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Joseph Nuthalpati ]
* functional_tests: Fix site.is_available not handling default paths
* functional_tests: Fix step definition "When I log out"
* matrix-synapse: Allow installation of version 1.2 from backports
[ James Valleroy ]
* security: Hide vulnerability table by default
* vagrant: Stop any ongoing unattended-upgrade
* functional_tests: Use longer password when creating user
* locale: Update translation strings
* doc: Fetch latest manual
* debian: Add lintian-override for package-installs-apt-preferences
[ Sunil Mohan Adapa ]
* names: Perform better layout of domain names table on small screens
* cockpit: Apply domain name changes immediately
* ejabberd: Prevent processing empty domain name
* config: Send hostname change signal only after fully processing it
* letsencrypt: Don't try to obtain certificates for .local domains
* avahi: Expose .local domain as a proper domain
* cockpit: Make essential and install by default
* tt-rss: Force upgrade to 18.12-1.1 and beyond
* doc: Fetch latest manual
* README: Add more screenshots, update existing paths
* matrixsynapse: Fix apache syntax errors introduce by 4b8b2e171c86d75
* users: yapf cosmetic changes
* users: Don't delete 'admin' group when running unit tests
* users: Minor cosmetic refactoring
* users: Don't fail badly when admin group does not exist
* users: Minor fix to return value when getting last admin user
* users: Cosmetic yapf and isort fixes
* updates: Allow matrix-synapse 1.3 to be installed for buster users
* javascript: Don't resubmit when refreshing the page
* vagrant: Fix dpkg command for recovering from broken state
* functional_tests: Fix create snapshot test failure
* storage: Fix regression with restoring backups with storage
[ bn4t ]
* matrix-synapse: Use recommended reverse proxy configuration
-- James Valleroy <jvalleroy@mailbox.org> Mon, 26 Aug 2019 18:55:49 -0400
plinth (19.14) unstable; urgency=medium
[ James Valleroy ]
* functional_tests: Fix delete backup path
* tests: Test add custom shortcuts to frontpage
* locale: Update translation strings
* doc: Fetch latest manual
* debian: Update standards version to 4.4.0
* debian: Switch to debhelper-compat
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ pierre ]
* Translated using Weblate (French)
[ ZeroAurora ]
* Translated using Weblate (Chinese (Simplified))
[ Sunil Mohan Adapa ]
* storage: Handle all device paths during eject
* storage: Fix incorrect i18n when throwing and error
* storage: yapf changes
* setup: Clarify success log message when force upgrading
* Yapf changes
* firewall: Force upgrade to firewalld 0.7.x
* frontpage: Fix regression with loading custom shortcuts
* frontpage: Log a message when loading custom shortcuts
* upgrades: Set apt configuration to allow release info change
* tests: Fix flake8 warning about unused imports
* Minor yapf fixes
* names: Minor styling fixes
* names: Don't enumerate services for domains supporting all
* names: Introduce new API to manage domains
* names: Declare domain types in various apps
* names: Make all apps use new api to retrieve domain names
* names: Use new API in all apps
* letsencrypt: Revoke certificate only if it exists
* letsencrypt: Fix problem with automatically obtaining certificates
* cockpit: Don't error out when removing an unknown domain
* ejabberd: Ensure that hosts are not duplicated in configuration
* ejabberd: Use domain added signal for listening to domain changes
* cockpit: Don't handle the domain changed signal
* letsencrypt: Remove unused listen to domain change signal
* config: Remove unused domain change signal
* api: Fix regression with listing only enabled apps in mobile app
[ Joseph Nuthalpati ]
* upgrades: Use reusable collapsible-button style for logs
[ Mesut Akcan ]
* Translated using Weblate (Turkish)
[ Radek Pasiok ]
* Translated using Weblate (Polish)
[ Anxin YI ]
* Translated using Weblate (Chinese (Simplified))
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 12 Aug 2019 19:31:35 -0400
plinth (19.13) unstable; urgency=low
[ Nikolas Nyby ]
* Fix a handful of typos in docs and comments
* Introduce flake8 checking
* Fix typos in module init docs
* Add flake8 to gitlib-ci
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* Minor changes to flake8 related updates
* diaspora: Fix tests by reverting changes during flake8 clenaup
* backups: Fix issue with showing index page
* backups: Fix HTML template indentation, remove inline styling
[ James Valleroy ]
* help: Show security notice when backports are in use
* security: Show vulnerability counts
* locale: Update translation strings
* doc: Fetch latest manual
* Begin uploading to unstable again.
* security: Fixup refactoring
[ Joseph Nuthalapati ]
* backups: Make UI more consistent with other apps
* backups: Make backup location tables collapsible
* flake8: Remove unused import
[ nautilusx ]
* Translated using Weblate (German)
[ Anxin YI ]
* Translated using Weblate (Chinese (Simplified))
-- James Valleroy <jvalleroy@mailbox.org> Mon, 29 Jul 2019 19:13:58 -0400
plinth (19.12) experimental; urgency=medium
[ Miguel A. Bouzada ]
* Added translation using Weblate (Galician)
* Translated using Weblate (Galician)
[ Sunil Mohan Adapa ]
* dbus: Allow plinth user to own FreedomBox DBus service
* service: Implement action for systemd try-restart
* cockpit: Don't handle domains if app is not installed
* dynamicdns: Send domain added signal properly during init
* letsencrypt: Force commands to be non-interactive
* letsencrypt: Remove renewal hooks implementation
* letsencrypt: Remove old style hooks from all configuration files
* letsencrypt: Remove deprecated logger.warn
* letsencrypt: Remove special treatment for domain added from 'config'
* letsencrypt: Implement DBus service for renewal notifications
* letsencrypt: Add lineage information in status
* letsencyrpt: Implement action to copy certificates
* letsencrypt: Implement action to compare copied certificates
* letsencrypt: Introduce component for handling certificates
* letsencrypt: Add permanent hook to receive renewal notifications
* letsencrypt: Trigger renewal certificate events in component
* letsencrypt: Trigger events for obtain, revoke and delete
* letsencrypt: Implement re-obtain separately
* letsencrypt: Handling certificate renewals when daemon is offline
* apache: Add let's encrypt certificate component
* matrixsynapse: Add let's encrypt component for certficiates
* ejabberd: Add let's encrypt component for managing certificates
* ejabberd: Backup and restore TLS certificates
* sso: Use new features of axes, log axes messages
* Minor yapf and isort changes
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* backups: Add option to select/deselect all apps for backup or restore
* backups: Change "select all" to a pure JavaScript implementation
* Translated using Weblate (Telugu)
* Translated using Weblate (Chinese (Simplified))
* sharing: Allow directories to be publicly shared
* sharing: Add functional test for public shares
* sharing: Add JavaScript to hide user groups for public shares
* sharing: Simplify --is-public option
* sharing: Indicate public shares in listing of shares
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Mesut Akcan ]
* Translated using Weblate (Turkish)
[ Elizabeth Sherrock ]
* Translated using Weblate (Chinese (Simplified))
[ Anxin YI ]
* Translated using Weblate (Chinese (Simplified))
[ Igor ]
* Translated using Weblate (Russian)
[ ZeroAurora ]
* Translated using Weblate (Chinese (Simplified))
[ James Valleroy ]
* Translated using Weblate (Chinese (Simplified))
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 22 Jul 2019 19:23:02 -0400
plinth (19.11) experimental; urgency=medium
[ THANOS SIOURDAKIS ]
* Added translation using Weblate (Greek)
[ ZeroAurora ]
* Translated using Weblate (Chinese (Simplified))
[ Doma Gergő Mihály ]
* matrixsynapse: Fix missing translation mark
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* backups: Improve UX of adding ssh remote
* backups: Avoid creating duplicate SSH remotes
* backups: YAPF formatting
* backups: Text change on index page
* backups: Make paramiko a dependency of freedombox package
* debian: Add python3-paramiko to build dependencies
* backups: Fix issue with repository not being initialized
* backups: Minor refactoring in forms.py
* backups: Add test for adding ssh remotes
* backups: Avoid using `sudo` in tests
* backups: Skipping tests temporarily
* backups: tests: Fix issue with usage of fixture 'needs_root'
* Add SSH hostkey verification
* backups: ssh remotes: Refactoring
* backups: Fix functional tests broken due to URL changes
* Verify SSH hostkey before mounting
* ui: Create reusable CSS class for collapsible-button
* backups: Remove unnecessary context manager for paramiko SFTPClient
* backups: Read file path of known_hosts directly from plinth.config
* backups: Add regex validation for ssh_repository field
[ Sunil Mohan Adapa ]
* backups: Minor fixes to host verification view template
* backup: Allow SSH directory paths with : in them
* backups: Cleanup auto-mounting SSH repositories
* backups: Minor styling changes
* backups: Handle SSH keys for old stored repositories
* backups: Require passphrase for encryption in add repository form
* backups: Fix and refactor adding a new remote repository
* backups: Remove known_hosts file from config file
* backups: Fix issue with verifying SSH host keys
* backups: Don't send passphrase on the command line
* backups: Git ignore the .ssh folder in data folder
* setup.py: Don't install directories matching ignore patterns
* backups: Minor cleanup
* backups: Un-mount SSH repositories before deleting them
[ Igor ]
* Translated using Weblate (Russian)
[ Andrey Vostrikov ]
* Translated using Weblate (Russian)
[ James Valleroy ]
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Mon, 08 Jul 2019 18:13:37 -0400
plinth (19.10) experimental; urgency=medium
[ Sunil Mohan Adapa ]
* Introduce firewall component for opening/closing ports
* Introduce webserver component for managing Apache configuration
* Introduce uwsgi component to manage uWSGI configuration
* app: Rename get() method to get_component()
* app: Add unique ID to each app class
* Introduce daemon component to handle systemd units
* radicale: Workaround issue with creating log directory
* app: Set app as enabled only when the daemon is enabled
* syncthing: Open firewall ports for listening and discovery
[ James Valleroy ]
* functional_tests: Add shortcut- prefix to test home page config
* locale: Update translations strings
* doc: Fetch latest manual
[ Mesut Akcan ]
* Translated using Weblate (Turkish)
[ ssantos ]
* Translated using Weblate (German)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ adaragao ]
* Translated using Weblate (Portuguese)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 24 Jun 2019 20:06:17 -0400
plinth (19.9) experimental; urgency=medium
[ Danny Haidar ]
* Added translation using Weblate (Bulgarian)
[ Sunil Mohan Adapa ]
* menu: Remove unused template submenu.html
* menu: Removed unused templates, methods and properties
* Introduce component architecture and menu component
* Turn frontpage shortcut into an app component
[ James Valleroy ]
* config: Update migration to use app id
* searx: Update to use shortcut component
* config: Add option to show advanced apps
* monkeysphere: Hide by default
* locale: Update translation strings
* doc: Fetch latest manual
[ Joseph Nuthalapati ]
* searx: Add option to allow public access to the application
* searx: Preserve public_access setting
* searx: Improve functional tests
[ Mesut Akcan ]
* Translated using Weblate (Turkish)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 10 Jun 2019 19:18:52 -0400
plinth (19.8) experimental; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* i2p: Update SVG logo with standard units, size and margins
* HACKING: Add guidelines for creating new icons
* icons: Add new SVG icons for all apps
* icons: Add license information for SVG icons
* templates: Use SVG icons for apps page and shortcuts
* icons: Ensure SVG presence for all non-app icons
* icons: Update copyright information remaining icons
* doc: Update the correct license for documentation
* apache: Serve SVG files compressed using gzip
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ ssantos ]
* Translated using Weblate (German)
[ Mesut Akcan ]
* Translated using Weblate (Turkish)
[ ventolinmono ]
* Translated using Weblate (Spanish)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ James Valleroy ]
* locate: Update translation strings
* doc: Fetch latest manual
* debian: Remove duplicate priority field
* doc: Remove unused duplicate image
-- James Valleroy <jvalleroy@mailbox.org> Mon, 27 May 2019 18:11:25 -0400
plinth (19.7) experimental; urgency=medium
[ LoveIsGrief ]
* i2p: Use augeas for editing the router.config
* i2p: Include default favorites after installation
[ Sunil Mohan Adapa ]
* i2p: Update license headers for consistent formatting
* i2p: Minor flake8 and yapf fixes
* i2p: Convert router configuration tests to pytest style
* transmission: Fix issue with promoting menu item
* tor: Fix issue with promoting/demoting menu item
* apps: Fix showing apps background twice
* apps: Style disable app icons according to design
* apps: Style the title for disabled icons section
* sharing: Always keep menu item in promoted state
* apps: Promote/demote menu items for disabled apps too
* tests: Add commonly used fixtures globally
* tests: Remove unused test discovery code
* custom_shortcuts: Fix issue with writing tests as different user
* backups: Convert tests to pytest style
* bind: Convert tests to pytest style
* config: Convert tests to pytest style
* diaspora: Convert tests to pytest style
* letsencrypt: Convert tests to pytest style
* names: Convert tests to pytest style
* pagekite: Convert tests to pytest style
* storage: Convert tests to pytest style
* tor: Convert tests to pytest style
* users: Convert tests to pytest style
* actions: Convert tests to pytest style
* cfg: Convert tests to pytest style
* clients: Convert tests to pytest style
* context_processors: Convert tests to pytest style
* kvstore: Convert tests to pytest style
* menu: Convert tests to pytest style
* middleware: Convert tests to pytest style
* network: Convert tests to pytest style
* templatetags: Convert tests to pytest style
* utils: Convert tests to pytest style
* i2p: Rename test fixtures to avoid a minor warning
* ejabberd: Include Bosh port 5280 in port forwarding information
* repro: Show port forwarding information
* Common template for showing port forwarding information
* i2p: Show port forwarding information
* bind: Show port forwarding information
* ssh: Show port forwarding information
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Radek Pasiok ]
* Translated using Weblate (Polish)
[ Erik Ušaj ]
* Added translation using Weblate (Slovenian)
* Translated using Weblate (Slovenian)
[ Karel Trachet ]
* Translated using Weblate (Dutch)
[ ssantos ]
* Translated using Weblate (German)
* Translated using Weblate (Portuguese)
[ James Valleroy ]
* apps: Separate enabled and disabled apps
* apps: Add port forwarding info
* service: Show port forwarding info when available
* openvpn: Show port forwarding info
* minetest: Fix flake8 error
* matrixsynapse: Show port forwarding info
* tahoe: Show port forwarding info
* locate: Update translation strings
* doc: Fetch latest manual
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 13 May 2019 19:47:52 -0400
plinth (19.6) experimental; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ CurlingTongs ]
* Translated using Weblate (German)
[ nautilusx ]
* Translated using Weblate (German)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Mesut Akcan ]
* Translated using Weblate (Turkish)
[ narendrakumar.b ]
* letsencrypt: Provide link to configure domain if not configured
[ James Valleroy ]
* firewall: Get service ports details
* firewall: Show ports details
* locale: Update translation strings
* doc: Fetch latest manual
[ LoveIsGrief ]
* i2p: Add helper to modify the tunnel config
* i2p: Open HTTP(S) and IRC ports on all interfaces on install
* i2p: Add HTTP(S) and IRC ports to firewall
* i2p: Enable application
[ Sunil Mohan Adapa ]
* i2p: flake8 and yapf fixes
* i2p: Convert unit tests to pytest style
* i2p: Update firewalld service descriptions
* i2p: Disable the daemon before editing configuration
* i2p: Don't enable proxies on external zone
-- James Valleroy <jvalleroy@mailbox.org> Mon, 29 Apr 2019 19:18:01 -0400
plinth (19.5) experimental; urgency=medium
[ LoveIsGrief ]
* i2p: Add new application
* i2p: Disable compression on /i2p/
* i2p: apache: Catch more I2P locations
* i2p: django: Add shortcuts to /i2p/... URLs
* i2p: django: Additional information about /i2p location
* i2p: todo: Add TODOs for I2P
* i2p: todo: add more TODOs for I2P
* i2p: idea: Browse eepsites directly from freedombox
* i2p: todo: Add torrent tracker to list of favorites
* i2p: django: Add description for the configuration shortcuts
* i2p: django: Add i2p homepage to description
* i2p: setup: Enrich I2P favorites
* i2p: todo: Tick off a TODO and reword one
* i2p: todo: Remove IDEA for browsing to .i2p sites in iframe
* i2p: torrents: Link to the list of trackers
* i2p: Add functional tests
* functional_tests: Allow provisioning VM for functional tests
* functional tests: Fix wheel errors when provisioning VM
[ Sunil Mohan Adapa ]
* i2p: Move data files into the app's data folder
* i2p: Use project logo instead of mascot
* i2p: Remove TODO in favor of issue tracker
* apache: Add proxy_html module needed by i2p app
* i2p: Backup/restore the correct state folder
* i2p: Minor styling changes
* i2p: Add diagnostic test for web interface port
* i2p: Add main web interface to list of clients
* i2p: Review and cleanup action script
* i2p: Review and update views
* i2p: Disable app until further fixes are done
[ James Valleroy ]
* functional_tests: Install python3-pytest-django
* locale: Update translation strings
* doc: Fetch manual
[ wind ]
* Translated using Weblate (Russian)
[ Joseph Nuthalapati ]
* storage: Use udisks to list disks and df for disk space utilization
[ Igor ]
* Translated using Weblate (Russian)
[ CurlingTongs ]
* Translated using Weblate (German)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 15 Apr 2019 18:47:17 -0400
plinth (19.4) experimental; urgency=medium
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ nautilusx ]
* Translated using Weblate (German)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* clients: Open web app in a new browser tab
* matrix-synapse: Change client diagnostics url
* minetest: Fix duplicate domain names being displayed in UI
* storage: Do not show an eject button on /boot partitions
* letsencrypt: Call letsencrypt manage_hooks with correct arguments
* vagrant: Run plinth as user plinth in development environment
[ Johannes Keyser ]
* Translated using Weblate (German)
[ James Valleroy ]
* dynamicdns: Install module by default
* locale: Update strings
* doc: Fetch latest manual
[ Sunil Mohan Adapa ]
* storage: Don't check type of the disk for / and /boot
* storage: Don't log error when checking if partition is expandable
[ wind ]
* Translated using Weblate (Russian)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 01 Apr 2019 20:31:54 -0400
plinth (19.3) experimental; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ advocatux ]
* Translated using Weblate (Spanish)
[ James Valleroy ]
* vagrant: Rearrange steps of provision script
* locale: Update translation strings
[ Joseph Nuthalapati ]
* dynamicdns: Break up dynamicdns.py into forms.py and views.py
* dynamicdns: Move subsubmenu below description
* firewall: Change "Current Status:" from p to h3
* names: Add description
* subsubmenu: Make description a customizable block
* pagekite: Bring subsubmenu below description. Remove About section.
* upgrades: Move subsubmenu below description
* Include clients.html in service-subsubmenu.html
* ikiwiki: Move subsubmenu below description
[ Sunil Mohan Adapa ]
* pagekite: Rename base template file
* pagekite: Change the template section title
* dynamicdns: Simplify template inheritance
* ikiwiki: Consistent styling for delete warning page
* templates: Minor styling change
* functional_tests: Reorder tests to disable apps after tests
* tests: Mark functional tests with functional mark
* tests: Read functional tests conf file without assuming CWD
* tests: Fix backups API test cases to work under all conditions
* README: Provide simple instruction for installing FreedomBox
* INSTALL.md: Simplify installation instructions
* HACKING.md: Update instructions on installing dependencies
* functional_tests: Update todo list by removing implemented tests
* mediawiki: Fix tests to allow running from any directory
* tests: Use pytest for running all tests
* ci: Allow gitlab to parse test coverage results
* main: Show service version in logs
* setup: Automatically gather information about files to install
* setup: Allow apps to have their own data directories
* setup: Don't include data/ files as package data
* module_loader: Specially load modules in development mode
* setup: Move app enabling files to respective apps
* setup: Move app data files into respective apps
* setup: Remove unused /var/run directory
[ Dietmar ]
* Translated using Weblate (German)
* Translated using Weblate (French)
* Translated using Weblate (Italian)
[ jonathan göhler ]
* Translated using Weblate (German)
[ Vincent Ladeuil ]
* Translated using Weblate (French)
[ David Maulat ]
* Translated using Weblate (French)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Mesut Akcan ]
* Translated using Weblate (Turkish)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 18 Mar 2019 20:30:44 -0400
plinth (19.2) unstable; urgency=medium
[ Joseph Nuthalapati ]
* docs: Fix deprecation warnings in post-processor
* tor: Fix deprecation warning W605 for '\' character in regex
* utils: Simplify YAMLFile by removing the post_exit argument
* config: Consolidate get_domainname() implementation into config
* config: Move default-app configuration to a dedicated file
* config: Fix Ikiwiki entries not showing up as default apps
* config: Migrate default app configuration to new conf file
* config: Rename Default App to Webserver Home Page
* config: Add option to use Apache's default home page as home page
* config: Remove Apache home page configuration from freedombox.conf
* config: Fix error when setting JSXC as the home page
* users: Add nscd as a dependency
* Disable Coquelicot for Buster release
* matrix-synapse: Fix LDAP login issue
* config: Revert changes in freedombox.conf to avoid conffile prompt
* config: Reset home page setting in freedombox.conf during migration
* openvpn: Migration from easy-rsa 2 to 3 for existing installations
* openvpn: Increment version number for easy-rsa 3 migration
* snapshot: Fix failing functional test
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ danielwine ]
* Translated using Weblate (Hungarian)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Sunil Mohan Adapa ]
* tor: Styling changes due to yapf
* tor: Use fixed 9001 port for relaying
* utils: Handle exceptions in context management for YAMLFile
* utils: Fix some flake8 warnings
* tahoe: Styling changes
* backups: Fix failing test case
* web_server: Move shutdown handling to main
* dbus: Add new module for D-Bus services
* setup: Abstraction for getting managing packages of a module
* setup: Filter packages to force upgrade
* package: Implement identifying packages that need conffile prompts
* package: Helper method to filter packages that need conffile prompt
* setup: Trigger force upgrade for app that implement it
* bind: Handle conffile prompt during upgrade
* setup: Rush force upgrade in development mode
* ttrss: Make functional test definitions specific to ttrss
* cockpit: Pre-enable necessary apache modules
* radicale, searx: Pre-enable necessary apache modules
* letsencrypt: Pre-enable necessary apache modules
* ikiwiki: Pre-enable necessary apache modules
* sso: Pre-enable necessary apache modules
* apache: Use cgid module instead of cgi
* apache: Increment app version number
* setup: Make additional info available for force upgrading
* debian/copyright: Minor fixes
* debian/copyright: Add full text for AGPL-3+
* debian/copyright: Add license text for public-domain
* debian/copyright: Add license text for GPL-2 and GPL-3
* debian/copyright: Add license text for CC-BY-SA-3.0
* debian/copyright: Update copyright for logos
* static: Remove unused files
* LICENSES: Remove files that are same license as rest of the source
* config: Don't pass configuration file argument to action
* openvpn: Fix issues with upgrade easy-rsa 2 to 3 migration
* openvpn: Make frontpage shortcut appear after an upgrade
* openvpn: Work around firewalld bug 919517
* setup: Pass better data structure for force upgrade operation
* utils: Introduce abstraction over distutils comparison of versions
* firewalld: Implement upgrading from 0.4.x to 0.6.x
* ttrss: Make setup process reusable
* ttrss: Implement upgrade from 17.4 to 18.12
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Anjali Datla ]
* Translated using Weblate (Telugu)
[ Darkblaze ]
* Translated using Weblate (Telugu)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Jag ]
* vagrant: Use virtualbox linked clones / CoW to reduce startup times
[ James Valleroy ]
* Add 2019 to copyright years
* Fix some paths in LICENSES
* debian: Add copyright years for debian/*
* radicale: Add description of web interface
* ttrss: Add backup support
* debian: Add copyright info for lato fonts
* debian: Add copyright info for individual logo files
* LICENSES: Add reference to debian/copyright
* debian: Add copyright info for theme images
* debian/copyright: Move all license texts to end
* debian/copyright: Remove unnecessary fields for native package
* debian/copyright: Move some app icons from LICENSES
* debian/copyright: Fix typo in year
* debian/copyright: Move more app icons from LICENSES
* debian/copyright: Include some URLs dropped from LICENSES
* debian/copyright: Move some more app icons from LICENSES
* debian/copyright: Fix filename for tahoe-lafs logo
* security: Migrate access config to new file
* users: When ssh used in tests, add users to admin group
* locale: Update translations strings
-- James Valleroy <jvalleroy@mailbox.org> Sat, 02 Mar 2019 14:45:55 -0500
plinth (19.1) unstable; urgency=medium
[ James Valleroy ]
* radicale: Log errors during upgrade
* radicale: Bump version to 2
* radicale: Remove obsolete diagnostics
* radicale: Fix server URLs in client info
* locale: Update translation strings
* doc: Fetch latest manual
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Sunil Mohan Adapa ]
* setup: Add option to handle configuration prompts during install
* radicale: Simplify upgrading to newer packages
* matrixsynapse: Remove hard-coded URL
* matrixsynapse: Fix issues with showing certificate warning
* letsencrypt: Fix issue with disabling matrixsynapse checkbox
* matrixsynapse: Don't check for current domain in renew hook
* matrixsynapse: Fix potential exposure of private key
* matrixsynapse: Setup certificate after domain selection
* matrixsynapse: Better checking for valid certificate
[ Joseph Nuthalapati ]
* matrixsynapse: Use Let's Encrypt certificates
-- James Valleroy <jvalleroy@mailbox.org> Thu, 14 Feb 2019 06:01:19 -0500
plinth (19.0) unstable; urgency=high
[ J. Carlos Romero ]
* mldonkey: Add some more clients to the module page
* mldonkey: Add to the description the three available front-ends
[ Sunil Mohan Adapa ]
* monkeysphere: Fix handling of multiple domains and keys
* monkeysphere: Fix regression with reading new apache domain config
* apache: Cleanup domain configuration
* apache: Add support for mod_ssl in addition to mod_gnutls
* apache: Switch to mod_ssl from mod_gnutls
* mldonkey: Add systemd service file with security options
* mldonkey: Enable app
* action_utils: Fix checking for URL availability
* upgrades: Fix priority for buster-backports version
* upgrades: Fix premature adding of buster-backports sources
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ advocatux ]
* Translated using Weblate (Spanish)
[ James Valleroy ]
* locale: Update strings for translation
* Switched to a new version number scheme: YY.N
- YY is the year of release.
- N is the release number within that year.
-- James Valleroy <jvalleroy@mailbox.org> Sat, 09 Feb 2019 20:38:00 -0500
plinth (0.49.1) unstable; urgency=medium
[ Sunil Mohan Adapa ]
* ui: Fix regression with configure button in home page
* backups: Rename 'Abort' buttons to 'Cancel'
* backups: Use icon for add repository button
* backups: Move subsubmenu below description
* backups: Add title and description to other pages
* backups: Add link to manual page
* backups: Fix styling for upload size warning
* backups: Increase timeout for SSH operations to 30 seconds
* backups: Minor styling fixes
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* letsencrypt: UI: Fix checkbox disabling
[ James Valleroy ]
* datetime: Switch from chrony to systemd-timesyncd
* locale: Update translation strings
* doc: Fetch latest manual
-- James Valleroy <jvalleroy@mailbox.org> Thu, 07 Feb 2019 21:23:32 -0500
plinth (0.49.0) unstable; urgency=medium
[ Prachi Srivastava ]
* networks: remove unused html
* security: Moves inline javascript to files
* security: Moves input field focus javascript to django forms
* help: Use freedombox package instead of plinth for version
* repro: Disable app due to issues with Debian package
[ Sunil Mohan Adapa ]
* ui: Fix regression with card icon style in front page
* js: Full librejs compatibility
* js: Remove javascript license link from footer
* backups: Remove incorrectly set buffer size during download
* backups: Minor styling fixes
* backups: Remove dead code
* backups: Minor styling fixes
* backups: Minor refactoring
* backups: Fix incomplete download archives
* backups: Improve performance of backup download
* tor: Make a utility method public
* action_utils: Expose URL checking utility for generic use
* upgrades: Improve handling of backports
* datetime: Fix diagnostic test to not ignore first two servers
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ J. Carlos Romero ]
* mldonkey: show 'Learn more...' link in package page when installed
[ James Valleroy ]
* radicale: Handle migration from 1.x to 2.x
* shadowsocks: Use resolvable domains in functional tests
* radicale: Handle data migration for upgrade to 2.x
* datetime: Switch from ntp to chrony
* vagrant: Put hold on freedombox package during provision
* repro: Also disable functional tests
* monkeysphere: Re-enable functional tests
* locale: Update translation strings
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Joseph Nuthalapati ]
* backports: Add buster-backports to apt sources list
* debian: Add smoke test with autopkgtests (Closes: #878699)
[ danielwine ]
* Translated using Weblate (Hungarian)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
-- James Valleroy <jvalleroy@mailbox.org> Tue, 05 Feb 2019 22:55:53 -0500
plinth (0.48.0) unstable; urgency=medium
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* ui: Fix top margin for content containers
* ui: Rename page specific CSS classes
* ui: Underline the logo along with 'Home' text when active
* ui: Style frontpage application info like regular content
* ui: Fix setting width of card-list at various page sizes
* ui: Show help nav item text when navbar is collapsed
* ui: Hide restart/shutdown items when navbar is collapsed
* ui: Compact pages on extra small screen sizes
* ui: Re-add background for home, apps and system pages in small sizes
* fail2ban: Split and update configuration files
* fail2ban: Pickup new configurations without reboot
* mldonkey: Update description and minor updates
* mldonkey: Disable app due to bug during restart
* backups: Upgrade apps before restoring them
* backups: Fix showing not-installed apps in create backup page
* syncthing: Add backup/restore support
* Serve default favicon for apps that don't provide one
* radicale: Fix issue with configuration changes not applying
* openvpn: Add backup/restore support
* storage: Fix false error message visiting home page
* storage, backups: Minor styling and yapf fixes
* service: Fix warning to use collections.abc
* help: Minor refactoring in get-logs action
* mldonkey: Add functional test for uploading
* axes: Minor fixes to configuration for IP blocking
* infinoted: Wait for up to 5 minutes to kill daemon
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Joseph Nuthalapati ]
* ci: Export freedombox.deb as build artifact instead of plinth.deb
* matrix-synapse: Fix startup error caused by bind_address setting
* matrix-synapse: Use '::' as the IPv6 bind address
* backups: Automatically install required apps before restore
* backups: Add a loader to the restore button to indicate progress
[ Johannes Keyser ]
* Translated using Weblate (German)
[ James Valleroy ]
* django: Remove deprecated AXES_BEHIND_REVERSE_PROXY
* radicale: Only set hosts for radicale 1.x
* radicale: Don't change auth type for radicale 2.x
* radicale: Use rights file by default for radicale 2.x
* radicale: Add functional tests for setting access rights
* help: Use journalctl to show status log
* help: Add action script to read logs from journal
* help: Add functional test to check status logs page
* locale: Update translation strings
* doc: Fetch latest manual from wiki
[ Prachi Srivastava ]
* fail2ban: Enable bans for apache auth failures
[ J. Carlos Romero ]
* mldonkey: Add new module for the eDonkey network
* mldonkey: Add backup/restore support
-- James Valleroy <jvalleroy@mailbox.org> Mon, 28 Jan 2019 19:22:19 -0500
plinth (0.47.0) unstable; urgency=medium
[ Joseph Nuthalapati ]
* ci: Don't install fuse and fuse3 packages in the CI environment
* snapshot: Fix snapshots filling up the disk
* snapshot: ui: Remove NUMBER_MIN_AGE setting and add FREE_LIMIT
* snapshot: Enable TIMELINE_CLEANUP and NUMBER_CLEANUP by default
* snapshot: Improve description
* snapshot: Merge the functionality of the migrate command into setup
* snapshot: Fix failing tests
* snapshots: Handle installation on non-btrfs filesystems
* snapshot: Handle "Config in use" error
[ James Valleroy ]
* radicale: Add tests for well-known URLs
* radicale: Don't modify default file for radicale >= 2.1.10
* radicale: Add support for radicale 2.x
* setup: Fix spelling error
* radicale: Switch to uwsgi for radicale 2.x
* radicale: Create collections folder before starting uwsgi
* Update translation strings
* Fetch latest manual
* debian: Update debhelper compat version to 12
[ Sunil Mohan Adapa ]
* radicale: Redirect to well-known URLs according to version
* syncthing: Use exact matches when enforcing trailing '/'
* snapshot: Minor styling fixes
* snapshot: Update descriptions and UI options
* snapshot: Refactor configuration migration
* main: Separate out Django setup into a separate module
* main: Separate out CherryPy code into a separate module
* Show Gujarati in the list of UI languages
* cockpit: Add link to manual page
* cockpit: Update description
* firewalld: Flush iptables rules before restarting firewall
* backups: Don't fail tests when borg is not installed
* backups: yapf fixes
* django: Use Argon2 password hash
* setup: Handle showing setup page after app completes installation
* setup: Minor flake8 fixes
* setup: Reduce refresh time when application is already installed
* setup: Don't perform is-package-manager-busy checks when not needed
* action_utils: Implement utilities for managing uwsgi configurations
* searx: Use action utils for uwsgi configuration management
* radicale: Don't keep radicale service running
* icons: Fixes for switching to fork-awesome
* Fix i18n for menu strings
[ Prachi Srivastava ]
* Replace glyphicons with forkawesome icons
-- James Valleroy <jvalleroy@mailbox.org> Mon, 14 Jan 2019 22:08:54 -0500
plinth (0.46.1) unstable; urgency=medium
[ prolinux ukraine ]
* Translated using Weblate (Ukrainian)
[ Joseph Nuthalapati ]
* clients: Rename DAVdroid to DAVx5
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* debian: Replace and break older versions of plinth
[ James Valleroy ]
* debian: Fix spelling errors in lintian override comment
-- James Valleroy <jvalleroy@mailbox.org> Fri, 04 Jan 2019 23:17:45 -0500
plinth (0.46.0) unstable; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ advocatux ]
* Translated using Weblate (Spanish)
[ prolinux ukraine ]
* Translated using Weblate (Ukrainian)
[ Sunil Mohan Adapa ]
* logging: Don't log static file requests
* logging: Make cherrypy log to the main log
* logging: Don't log to a log file
* logging: Log to systemd journal directly
* logging: Separate logging init logic into a module
* logging: Implement colors for console messages
* searx: Update outdated Apache configuration
* sso: Update outdated Apache configuration
* letsencrypt: Use macros for configuring sites
* letsencrypt: Remove outdated Apache configuration
* logging: Remove references to old log files
* debian: Alter control file indentation
* storage: Add parted as dependency module
* debian: Add dependencies from freedombox-setup
* sudoers: Allow all admin users to become superusers
* Move update-motd script from freedombox-setup
* debian: Break current version of freedombox-setup
* Move preseed file from freedombox-setup
* debian: Use description from freedombox.org
* debian: Ignore debian/debhelper-build-stamp
* debian: Fix lintian warning about vcs ignore file
* debian: Don't change ownership recursively in postinst
* debian: Update short description
* debian: Rename plinth package to freedombox
[ James Valleroy ]
* vagrant: Cleanup for obsolete log files
* debian: Move Recommends to binary package
* locale: Run update_translations
* doc: Fetch latest manual from wiki
* debian: Standards-Version is now 4.3.0
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 31 Dec 2018 16:46:25 -0500
plinth (0.45.0) unstable; urgency=medium
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* udiskie: Finish merging udiskie into storage
* apache: Switch to php-fpm from mod_php
[ Allan Nordhøy ]
* Translated using Weblate (Chinese (Simplified))
* Translated using Weblate (Italian)
* Translated using Weblate (Norwegian Bokmål)
[ Herdir ]
* Translated using Weblate (French)
[ Michael Pimmer ]
* Backups: first UI sceleton for remote / encrypted backups
* Backups: allow testing the connection of ssh locations
* Backups, remote repositories: implement init, info and some test
* Backups, remote repositories: uniform parameter handling
* Backups, remote repositories: start using sshfs
* Backups, remote repositories: integrate to backups index page
* Backups, remote repositories: re-use template for root location
* Backups, remote repositories: use object-oriented repositories
* Backups, remote backups: fix unittests
* Backups, remote repositories: create/delete/restore of remote repos
* Backups, remote repositories: change network_storage to dict
* Backups, remote repository: adapt functional tests
* Backups: remove unittests to backups test directory
* Backups: remove archive name when creating an archive
* Backups: support for encrypted repositories
* Backups: Cleanup and improved error handling
* Backups: functional tests update; restoring backup bugfix
* Backups: allow creating archive in unmounted repository
* Backups: allow using keyfile as credentials for sshfs mounts
* Backups: notify that credentials of remote backups are stored
* Backups: unittests for accessing repository with borg directly
* Backups: bump module version
[ James Valleroy ]
* backups: Make validator errors translatable
* functional_tests: Move backup test into backups feature
[ ssantos ]
* Translated using Weblate (German)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 17 Dec 2018 19:05:51 -0500
plinth (0.44.0) unstable; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Robert Martinez ]
* Add gray noise background
* Add white Card
* add footer padding
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ James Valleroy ]
* ejabberd: bosh port moved to 5443
* apache: Run setup again to reload
* ejabberd: Change BOSH port from 5280 to 5443
* Revert "ci: Use python3.6 when installing dependencies"
* ci: Install jquery packages for coverage
* functional_tests: Confirm when deleting all snapshots
* Translated using Weblate (Spanish)
* Update translation strings
[ Joseph Nuthalapati ]
* vagrant: clear logs and plinth database on destroying box
* minetest: Change list of mods to what's available in Debian
* Add instructions on how to use "WIP" in merge requests
* clients: Fix distortion of the client apps buttons
* snapshots: Fix default snapshot listing
* firewalld: Use nftables instead of iptables
* snapshots: Place the subsubmenu below the description
[ ssantos ]
* Translated using Weblate (German)
* Translated using Weblate (Portuguese)
[ Prachi Srivastava ]
* Changes delete all to delete selected in snapshot
* Adds toggle to select all for deletion
* Changes functional test to select All and delete snapshots
* Ignores warnings in pytest while running functional test
[ advocatux ]
* Translated using Weblate (Spanish)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 03 Dec 2018 19:47:04 -0500
plinth (0.43.0) unstable; urgency=medium
[ Michael Pimmer ]
* Backups: export and download archives in one step
* Backups: uploading and import with temporarily stored file
* Backups: Restore directly from archive
* Backups: Don't fail when borg doesn't find files to extract
* Backups: clean up exporting archives functionality
* Backups: relative paths for borg extract in action script
* Backups: fix test
* Backups: clean up forms, names and templates
* Functional tests: minor documentation changes
* Backups: Stream archive downloads/exports
* Backups: do not hardcode uploaded backup file path
* Backups: minor cleanups
* Backups: show free disk space on upload+restore page
* Backups: functional test to download and restore an archive
* Backups: minor adaption of upload file size warning
* Backups: minor fixes of functional tests
* Functional tests: check that browser waits for redirects to finish
* Functional tests: fix waiting for redirects
* Functional tests: assert that module installation succeeded
* Cherrypy: Do not limit maximum upload size
* Backups: Make Manifest a dict instead of a list
[ James Valleroy ]
* functional_tests: Remove backup export steps
* functional_tests: Remove remaining backup export steps
* functional_tests: Add sso tags
* upgrades: Internationalize string and apply minor formatting
[ Anthony Stalker ]
* Translated using Weblate (Czech)
[ Joseph Nuthalapati ]
* vagrant: Destroy Plinth development database when box is destroyed
* sso: Make auth-pubtkt tickets valid for 12 hours
* openvpn: Migration from easy-rsa 2 to 3
* openvpn: is-setup checks for non-empty dh.pem file
* openvpn: Always write the latest server configuration on setup
[ ssantos ]
* Translated using Weblate (Portuguese)
[ Robert Martinez ]
* Update module terminology improvements
* Incorporate feedback from MR
-- James Valleroy <jvalleroy@mailbox.org> Mon, 19 Nov 2018 17:25:31 -0500
plinth (0.42.0) unstable; urgency=medium
[ Robert Martinez ]
* Fix wrong color in mobile menu
[ James Valleroy ]
* snapshot: Handle snapper list output change
* functional_tests: Fix steps with domain parameter
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
* tor: Add functional tests for relays and hidden services
* tor: Enable backup/restore
* upgrades: Add functional tests
* upgrades: Enable backup/restore
* monkeysphere: Handle importing new OpenSSH format keys
* monkeysphere: yapf reformatting
* tests: Change the domain to be an FQDN
* monkeysphere: Add functional tests for import/publish keys
* monkeysphere: Enable backup/restore
* monkeysphere: Skip functional tests until bugs are resolved
* letsencrypt: Enable backup/restore
* tahoe: Minor changes to facilitate functional tests
* tahoe: Add functional tests
* tahoe: Enable backup/restore
* tahoe: yapf run
* udiskie: unmount drive as superuser
[ buoyantair ]
* Translated using Weblate (Telugu)
[ Michael Pimmer ]
* Actions: use local plinth in development mode
* Actions: path in development mode: do not preserve PYTHONPATH
[ ButterflyOfFire ]
* Translated using Weblate (Indonesian)
* Translated using Weblate (Italian)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 05 Nov 2018 18:41:15 -0800
plinth (0.41.0) unstable; urgency=medium
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ ButterflyOfFire ]
* Translated using Weblate (French)
[ James Valleroy ]
* debian: Add Russian translation of debconf template (Closes: #910848)
- Thanks to Lev Lamberov for the patch.
* deluge: Handle prompt to change default password
* functional_tests: When creating backup, scroll window to top
* backups: Handle permission error during chown
[ Joseph Nuthalapati ]
* vagrant: Increase memory to 2GiB
* vagrant: Increase number of CPUs to 2
* datetime: Add functional test for setting time zone
* datetime: Enable backup/restore
* tests: More accurately compute waited time
* deluge: Add functional test for uploading a torrent
* deluge: Enable backup/restore
* avahi: Enable backup/restore (no data)
* backups: Enable backup/restore (no data currently)
* bind: Add functional tests
* bind: Enable backup/restore
* security: Add functional tests for restricted logins
* security: Enable backup/restore
* snapshot: Fix issue with setting configuration
* snapshot: Add functional tests for setting configuration
* backups: Implement app hooks
* snapshot: Enable backup/restore
* deluge: Add missing backups tag in functional tests
* ssh: Enable backup/restore
* firewall: Enable backup/restore (no data)
* diagnostics: Enable backup/restore (no data)
* names: Enable backup/restore (no data)
* power: Enable backup/restore (no data)
* storage: Enable backup/restore (no data)
* backups: Make plinth the owner of the backup archives
* backups: Fix issue with showing exports from disks without labels
* storage: Minor styling with urlencode call in template
* backups: Don't rely on disk labels during export/restore
[ Michael Pimmer ]
* Backups: bugfix for downloading extracted archive files
[ rafael ]
* Translated using Weblate (Spanish)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 22 Oct 2018 19:48:50 -0400
plinth (0.40.0) unstable; urgency=medium
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ James Valleroy ]
* ci: Prevent installing fuse
* upgrades: Don't change origins pattern list
* upgrades: Keep config file when disabling
* debian: Add Portuguese translation for debconf messages (Closes: #909745)
- Thanks to "Traduz" - Portuguese Translation Team for the patch.
* home: Also display card title above icon
* functional_tests: Make coquelicot password entry more robust
* functional_tests: Check ejabberd contact list more robustly
[ Augusto Borin ]
* Translated using Weblate (Portuguese)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ BO41 ]
* Translated using Weblate (German)
[ David Maulat ]
* Translated using Weblate (French)
[ Robert Martinez ]
* Translated using Weblate (German)
* Add tint effect on card icons under "Apps"
* Change maximum cards per row
* Change card text style and position
[ Joseph Nuthalapati ]
* Don't disable installation when apt lists are empty
* backups: Relax schema for backup manifest data
* backups: Remove empty keys in backup manifest data
* backups: Rename the backups API module
* mediawiki: Backup/restore settings also
* backups: Rename test_backup to test_api
* backups: List apps that don't require backup too
* backups: Minor styling fixes
* cockpit: Add clients and backup manifests
* mumble: Implement backup/restore
* privoxy: Enable backup/restore (no data)
* backups: Allow restoring backups with no files
* roundcube: Enable backup/restore (no data)
* searx: Enable backup/restore (no data)
* jsxc: Enable backup/restore (no data)
* coquelicot: Enable backup/restore
* coquelicot: Implement functional tests with uploading file
* tests: Reduce time for polling in functional tests
* transmission: Implement upload torrent functional test
* transmission: Enable backup/restore
* coquelicot: Fix upload file functional test
* mediawiki: Run update script for 1.31 upgrade
* quassel: Enable backup/restore
* shadowsocks: Enable backup/restore
* backups: Implement disabling web configuration during backup
* sharing: Enable backup/restore
* pagekite: Add functional tests
* pagekite: Enable backup/restore
* tests: Add missing backups tag on functional tests
* vagrant: Get rid of apt warning during provisioning
* customization: Serve static files from customization directory
* customization: Create customization path in /var/www
* customization: Serve custom shortcuts through the REST API
* customization: Show custom shortcuts on frontpage
[ Michael Pimmer ]
* Backup module: Implement downloading archives
* Backup module: Implemented uploading files
* Backup module: added some unittests; minor doc updates
[ Federico Ceratto ]
* Translated using Weblate (Italian)
[ Johannes Keyser ]
* Translated using Weblate (German)
-- James Valleroy <jvalleroy@mailbox.org> Tue, 09 Oct 2018 06:01:50 -0400
plinth (0.39.0) unstable; urgency=medium
[ Joseph Nuthalapati ]
* Fix typo in the description meta tag
* backups: Support multiple backups in one day
* backups: Check if paths exist before passing them to borgbackup
* backups: Reword the no-apps-installed message
* backups: Make getting all apps method public
* backups: Minor styling fixes
* backups: Minor refactoring in finding exported archive
* backups: Simplify getting included apps during restoring
* udiskie: Merge into storage module
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ danielwine ]
* Translated using Weblate (Hungarian)
[ James Valleroy ]
* backups: Validate backup manifests
* backups: Move manifest validation into backups app
* backups: Fix iteration over loaded modules
* users: Reset groups before testing register_group
* backups: List supported and installed apps when creating
* backups: Implement process manifests for Packet
* backups: Provide a default backup name
* backups: Select all apps by default
* backups: Use paths from selected apps
* backups: Fix and test service shutdown and restore
* backups: Patch actions for shutdown services test
* backups: Disable create archive when no supported apps are installed
* backups: Dump manifests file and include it in backup
* backups: Name borg repo folder more clearly
* backups: Include app versions in manifest file
* backups: Use valid filename for export
* backups: Don't display time as separate column
* backups: Confirm that archive exists before restoring
* backups: Add apps selection to restore form
* backups: Use valid filename for manifest
* backups: When restoring, only list apps included in backup
* backups: Use backups API for restore
* backups: Add more basic tests for backups API
* functional_tests: Test dynamicdns backup and restore
* ikiwiki: Add sites folder to backup data
* functional_tests: Test ikiwiki backup and restore
* functional_tests: Test mediawiki backup and restore
* functional_tests: Test repro config backup and restore
* backups: Rename 'Create archive' to 'New backup'
* functional_tests: More robust checks using eventually
* backups: Show disabled 'New backup' button when no apps installed
* backups: Enable module
* backups: Create folder if needed during setup
* functional_tests: Only select app under test for new backup
* functional_tests: Test ejabberd backup and restore
* functional_tests: Ensure that backups app is installed before test
* debian: Don't make backup of /etc/security/access.conf (Closes: #909484)
* Bump Standards-Version to 4.2.1
* Cleanup udiskie module
-- James Valleroy <jvalleroy@mailbox.org> Mon, 24 Sep 2018 19:23:04 -0400
plinth (0.38.0) unstable; urgency=medium
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Igor ]
* Translated using Weblate (Russian)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ BO41 ]
* Translated using Weblate (German)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Vignan Lavu ]
* mediawiki: Enable SVG support for MediaWiki
[ advocatux ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* Install ncurses-term during vagrant file provision
* docs: Fix MediaWiki manual page download failing
* manual: Remove footer for manual pages using Python XML module
* upgrades: Clean up old kernel packages during automatic upgrades
* turbolinks: Make the progress bar white and thicker
[ James Valleroy ]
* debian: Add German translation of debconf messages (Closes: #907787)
- Thanks to Helge Kreutzmann for the patch.
* tests: Make coverage package optional
-- James Valleroy <jvalleroy@mailbox.org> Mon, 10 Sep 2018 18:12:06 -0400
plinth (0.37.0) unstable; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Igor ]
* Translated using Weblate (Russian)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ James Valleroy ]
* backups: Simplify export of backup archive files
* backups: Add list of exported archives
* backups: Restore from exported archive
* vagrant: Clarify post-up message
* debian: Add Dutch translation of debconf messages (Closes: #906945)
- Thanks to Frans Spiesschaert for the patch.
* Bump Standards-Version to 4.2.0
[ Joseph Nuthalapati ]
* vagrant: Vagrantfile changes for ease of development
* install: Use Post/Response/Get pattern for reloads
-- James Valleroy <jvalleroy@mailbox.org> Mon, 27 Aug 2018 19:15:08 -0400
plinth (0.36.0) unstable; urgency=medium
[ Gayathri Das ]
* Translated using Weblate (Hindi)
[ James Valleroy ]
* Fix validation error in Hindi translation
* Fix validation error in Spanish translation
* Add backups info to apps
* ejabberd: Cleanup config file upgrade
* Add license info for Lato fonts
* ci: Run test coverage and get report
* Commit patch for French debconf translation (Closes: #905933)
- Thanks to jean-pierre giraud for the patch.
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Igor ]
* Translated using Weblate (Russian)
[ Hemanth Kumar Veeranki ]
* Translated using Weblate (Telugu)
* Remove deprecated settings from already existing config files
* Add functional test to enable/disable Message Archive Management
[ Joseph Nuthalapati ]
* Fix validation error in Spanish translation
* Translated using Weblate (Hindi)
* Trim the translation strings in Letsencrypt template where missing
* backups: Add core API for full/apps backup
* mediawiki: Fix issue with re-installation
* mediawiki: Enable Instant Commons
* mediawiki: Fix images throwing 403s
* turbolinks: Reload page using JavaScript
* functional tests: Fix failing test change default app
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Robert Martinez ]
* Add woff2 fonts
[ Prachi Srivastava ]
* Translated using Weblate (Hindi)
[ manikanta varma datla ]
* Disable launch button for web client when not installed
[ Pavel Borecki ]
* Translated using Weblate (Czech)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 13 Aug 2018 18:24:33 -0400
plinth (0.35.0) unstable; urgency=medium
[ Igor ]
* Translated using Weblate (Russian)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ ikmaak ]
* Translated using Weblate (Dutch)
[ Bart Notelaers ]
* Translated using Weblate (Dutch)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Gayathri Das ]
* Translated using Weblate (Hindi)
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Praveen Illa ]
* Translated using Weblate (Telugu)
[ Jayasuganthi ]
* mediawiki: Enable short URLs
[ Joseph Nuthalapati ]
* mediawiki: Override Debian settings in FreedomBoxSettings.php
* functional_tests: Fix first test failing on a pristine VM
* debian: Remove Bdale Garbee from the list of uploaders
* Add turbolinks
* turbolinks: Replace style elements in head with blocks in body
* functional_tests: Use body instead of html for state change check
* turbolinks: Disable caching on application visits
* configuration: Option to set a default app for FreedomBox
* configuration: Use augeas to edit Apache files
* configuration: Fix parsing error in retrieving default app
[ వీవెన్ ]
* Translated using Weblate (Telugu)
[ Johannes Keyser ]
* Translated using Weblate (German)
* text stripped from icons for mediawiki, radicale, tahoe-lafs
[ Hemanth Kumar Veeranki ]
* Clarify description for radicale shared calendar/addressbook
* Remove deprecated `iqdisc` in ejabberd config
[ Robert Martinez ]
* Adding link to HACKING.md
* Fix ejabberd logo #1336
[ Sunil Mohan Adapa ]
* udiskie: Move udisks2 methods to separate module
* storage: Fix parsing issues when mount point has spaces
* udiskie: Remove the unused ejectable property
* utils: Remove unused method
* udiskie: Add eject functionality for a drive
* udiskie: Also list read-only filesystems
* udiskie: Remove internal networks warning
* udiskie: Show special message when no storage device available
[ James Valleroy ]
* udiskie: Import glib and udisks only inside methods
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 30 Jul 2018 19:04:51 -0400
plinth (0.34.0) unstable; urgency=medium
[ Joseph Nuthalapati ]
* firstboot: Prompt for secret during firstboot welcome
* firstboot: Add debconf translations for wizard secret dialog
* l10n: Fix build error due to partially translated string in Hindi
* ci: Install python3-coverage before running tests
* backups: Temporarily hide app till implementation is complete
[ James Valleroy ]
* postinst: Fix indents and untabify
* lintian: Add override for no-debconf-config
* Translated using Weblate (Italian)
* ci: Use python3.6 when installing dependencies
* functional_tests: Rename features, organize by app
* backups: New app to manage borgbackup archives
* backups: Allow valid filenames as archive names
* backups: Set LANG=C.UTF-8 when extracting archive
* backups: Move repository location under /var/lib
[ ikmaak ]
* Translated using Weblate (Dutch)
[ Gayathri Das ]
* Translated using Weblate (Hindi)
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Bart Notelaers ]
* Translated using Weblate (Dutch)
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
-- James Valleroy <jvalleroy@mailbox.org> Mon, 16 Jul 2018 19:16:08 -0400
plinth (0.33.1) unstable; urgency=medium
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Igor ]
* Translated using Weblate (Russian)
[ Joseph Nuthalapati ]
* Change get-group-users to a simpler implementation
* users: Replace disabled with readonly for admin group checkbox
(Closes: #902892)
[ Gayathri Das ]
* Translated using Weblate (Hindi)
-- James Valleroy <jvalleroy@mailbox.org> Wed, 04 Jul 2018 10:32:23 -0400
plinth (0.33.0) unstable; urgency=medium
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Allan Nordhøy ]
* Translated using Weblate (Norsk bokmål)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Igor ]
* Translated using Weblate (Русский)
[ Pavel Borecki ]
* Translated using Weblate (Čeština)
[ Gayathri Das ]
* Translated using Weblate (Hindi)
[ Joseph Nuthalapati ]
* Fix mistake in Hindi translation template
* firewall: Display information that a service is internal only
* users: Don't show Create User form to non-admin users
* Translated using Weblate (Hindi)
* users: Redirect to users list on successful user creation
* packages: Button to refresh package lists
[ Hemanth Kumar Veeranki ]
* Add a way to refine shortcuts
* Restrict removal of last admin user
* Use logos instead of icons in the apps page
[ danielwine ]
* Translated using Weblate (Hungarian)
[ Bart Notelaers ]
* Translated using Weblate (Dutch)
[ James Valleroy ]
* users: Update Change Password menu for non-admin users
* package: Add option to skip recommends
* udiskie: New module for automatic mounting of removable media
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Sunil Mohan Adapa ]
* udiskie: Use glib library for dbus interaction
-- James Valleroy <jvalleroy@mailbox.org> Mon, 02 Jul 2018 20:15:50 -0400
plinth (0.32.0) unstable; urgency=medium
[ Allan Nordhøy ]
* Translated using Weblate (Norsk bokmål)
[ Pavel Borecki ]
* Translated using Weblate (Čeština)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Igor ]
* Translated using Weblate (Русский)
[ Gayathri Das ]
* Translated using Weblate (Hindi)
[ Hemanth Kumar Veeranki ]
* Hide mediawiki frontpage shortcut when private mode is enabled
* Translated using Weblate (Telugu)
* Enable image uploads in mediawiki at startup
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ ikmaak ]
* Translated using Weblate (Dutch)
[ Michael Pimmer ]
* Use djangos url reverse mechanism instead of hardcoding urls
* Add ./run --develop option to use relative config/file paths
* Add documentation for the './run --develop' option
* Adapt test and documentation to changes of '--develop' option
* Adapt .md files to four spaces for correct lists
* Merge ./run --debug into --develop option
* Remove unused imports and variables
[ Sunil Mohan Adapa ]
* yapf and isort fixes
* Fix client info table size and flickering
* Resize all main content
* Remove unnecessary submenu override in 403.html
* help: Show cards in the index page
* snapshot: Remove unnecessary column sizing
* users: Remove unnecessary column sizing
* networks: Center align connection information
* networks: Remove unnecessary column sizing
* pagekite: Convert a two column page to one column
* pagekite: Remove unnecessary column sizing
* letsencrpt: Remove unnecessary column sizing
* monkeysphere: Remove unnecessary column sizing
* names: Remove unnecessary column sizing
* sso: Adjust size of login form
* storage: Remove unnecessary column sizing
* tor: Increase the size of the status tables
* help: Center the FreedomBox logo on about page
* help: Remove the duplicate index URL and menu item
* firewall: Resize the info table to full width
* Increase language selection form to full width
* first_setup: Remove unnecessary content sizing
* first_boot: Remove unnecessary content sizing
* diagnostics: Remove unnecessary content sizing
* frontpage: Fix card sizing
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
* mediawiki: Make private mode and public registrations mutually exclusive
* mediawiki: Image uploads: improve logic and add functional tests
* first-setup: Automatically expand root partition
[ kotibannu541 ]
* Translated using Weblate (Telugu)
[ Nikhil Sankesa ]
* Translated using Weblate (Telugu)
[ Nikhil501 ]
* Translated using Weblate (Telugu)
[ Sandeepbasva ]
* Translated using Weblate (Telugu)
[ James Valleroy ]
* mediawiki: Untabify template
[ Doma Gergő ]
* Translated using Weblate (Hungarian)
[ Manish Tripathy ]
* Apply new card based design
-- James Valleroy <jvalleroy@mailbox.org> Mon, 18 Jun 2018 20:36:30 -0400
plinth (0.31.0) unstable; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Igor ]
* Translated using Weblate (Russian)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Gayathri Das ]
* Translated using Weblate (Hindi)
[ Robert Pollak ]
* Translated using Weblate (German)
[ Hemanth Kumar Veeranki ]
* Translated using Weblate (Telugu)
* Added an option to enable/disable private mode in mediawiki
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* searx: Don't depend on libapache2-mod-proxy-uwsgi
[ Joseph Nuthalapati ]
* users: Fix user permissions not being saved
* users: internationalize a string
* mediawiki: Run update script for 1.30 upgrade
* shortcuts: Fix urls for ikiwiki shortcuts
[ James Valleroy ]
* mediawiki: Handle missing config lines for private mode
-- James Valleroy <jvalleroy@mailbox.org> Mon, 04 Jun 2018 18:16:00 -0400
plinth (0.30.0) unstable; urgency=medium
[ Igor ]
* Translated using Weblate (Russian)
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ danielwine ]
* Translated using Weblate (Hungarian)
[ Gayathri Das ]
* Translated using Weblate (Hindi)
[ Joseph Nuthalapati ]
* setup: Remove unavailable as a state in setup_helper
-- James Valleroy <jvalleroy@mailbox.org> Mon, 21 May 2018 17:15:47 -0400
plinth (0.29.1) unstable; urgency=high
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Sunil Mohan Adapa ]
* security: Fix issue with Plinth locked out from sudo
-- James Valleroy <jvalleroy@mailbox.org> Tue, 08 May 2018 05:20:45 -0400
plinth (0.29.0) unstable; urgency=high
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Hemanth Kumar Veeranki ]
* Add an option to enable/disable public registrations in mediawiki
[ Joseph Nuthalapati ]
* mediawiki: enable/disable public registrations - refactoring & tests
* security: Allow console login access to user plinth
* tt-rss: Skip the check for SELF_URL_PATH
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Sunil Mohan Adapa ]
* searx: Fix issue with uwsgi crashing
-- James Valleroy <jvalleroy@mailbox.org> Mon, 07 May 2018 18:45:02 -0400
plinth (0.28.0) unstable; urgency=medium
[ Sunil Mohan Adapa ]
* Add locale for Lithuanian (lt)
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Igor ]
* Translated using Weblate (Russian)
[ advocatux ]
* Translated using Weblate (Spanish)
[ Johannes Keyser ]
* Translated using Weblate (German)
* setup: disable install button for currently unavailable apps
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
[ ikmaak ]
* Translated using Weblate (Dutch)
[ James Valleroy ]
* Bump Standards-Version to 4.1.4
-- James Valleroy <jvalleroy@mailbox.org> Mon, 23 Apr 2018 21:03:39 -0400
plinth (0.27.0) unstable; urgency=medium
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Igor ]
* Translated using Weblate (Russian)
[ advocatux ]
* Translated using Weblate (Spanish)
[ ikmaak ]
* Translated using Weblate (Dutch)
* Translated using Weblate (German)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ James Valleroy ]
* snapshot: Disable python formatting for description
* debian: Move Lintian source-level overrides to preferred location
* debian: Bump debhelper compat version to 11
* debian: Use https for copyright format url
* debian: Bump standards version to 4.1.3
* debian: Remove unused lintian override
* middleware: Skip 'installed' message for essential apps
* snapshot: Don't increment version
* snapshot: Clarify form label and help text
* snapshot: Format code with yapf
[ Johannes Keyser ]
* Translated using Weblate (German)
[ Максим Якимчук ]
* Translated using Weblate (Ukrainian)
[ Jonny Birkelund ]
* Translated using Weblate (Norwegian Bokmål)
[ Joseph Nuthalapati ]
* users: Fix admin group appearing twice in permissions
* apps: Fix app names and short descriptions not being translated
* snapshots: Move manual page link to the index page
* snapshots: Fix tests broken by UI changes
* language: Fix tests broken by recent feature
* tests: Improve waiting for installation and configuration
* Fix tests for firstboot, users and groups
* tests: snapshots: Remove find_by_value usages
* test: sharing: Fix tests that check text in English
* tor: Make tests independent of language
* tests: Recover from server restart during installation
* tests: Fix tests depending on language being English
* tests: Fix delete_user fixture
* UI: Fix progress bar not appearing
* snapshots: Fix for permissions issue when updating configuration
[ Shubham Agarwal ]
* snapper: enable/diable apt snapshots
-- James Valleroy <jvalleroy@mailbox.org> Mon, 09 Apr 2018 19:34:05 -0400
plinth (0.26.0) unstable; urgency=high
[ 关羽 ]
* Translated using Weblate (Chinese (Simplified))
[ Igor ]
* Translated using Weblate (Russian)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Dietmar ]
* Translated using Weblate (German)
[ anonymous ]
* Translated using Weblate (German)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Joseph Nuthalapati ]
* snapshots: Update description
* searx: Rewrite url from /searx to /searx/
* manual: Link to manual from each service
* manual: Fix manual page links for tor and power templates
[ Petter Reinholdtsen ]
* Translated using Weblate (Norwegian Bokmål)
[ Robert Martinez ]
* Translated using Weblate (German)
[ Sunil Mohan Adapa ]
* Workaround security issues in django-axes
* ssh, avahi, apache: Fix default value for setup arguments
* ssh: Add comment about regenerating SSH keys
* apache: Only regenerate snake oil cert when needed
* apache: Explicitly enable the latest version of PHP module
* apache: Increase module version number to fix php7.2
[ danielwine ]
* Translated using Weblate (Hungarian)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Sciumedanglisc ]
* Translated using Weblate (Italian)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ James Valleroy ]
* Update doc-base for current html manual file
-- James Valleroy <jvalleroy@mailbox.org> Mon, 26 Mar 2018 20:18:57 -0400
plinth (0.25.0) unstable; urgency=medium
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ danielwine ]
* Translated using Weblate (Hungarian)
[ Allan Nordhøy ]
* Translated using Weblate (Norwegian Bokmål)
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Joseph Nuthalapati ]
* coquelicot: Rename Plinth to FreedomBox in license headers
* functional-tests: Merge plinth-tester into plinth
* searx: Add basic functional tests
* snapshots: Refactoring and indentation changes
* Translated using Weblate (Telugu)
* ttrss: update client apps
* sharing: Update description
* sharing: CSS styling fixes and text changes
[ James Valleroy ]
* infinoted: Always check ownership of cert files in setup
[ Алексей Докучаев ]
* Translated using Weblate (Russian)
[ Igor ]
* Translated using Weblate (Russian)
[ Sunil Mohan Adapa ]
* doc: Fix generation of HTML fragment
* users: Generalize styling for multi-select widget
* sharing: Finish implementation
* sharing: Add functional tests
* Support Django 2.0
[ Shubham Agarwal ]
* snapshots: Add submenu section in UI
[ Prachi ]
* sharing: Add app to share disk folders using various protocols
-- James Valleroy <jvalleroy@mailbox.org> Mon, 12 Mar 2018 18:40:31 -0400
plinth (0.24.0) unstable; urgency=medium
[ Joseph Nuthalapati ]
* Add file-sharing application Coquelicot to FreedomBox
* Translated using Weblate (Telugu)
* mediawiki: Allow shortcut to be publicly visible on front page
* clients: Add and correct Client Apps
* api: fix icon_url
* searx: New app for Searx metasearch engine
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Allan Nordhøy ]
* Translated using Weblate (Chinese (Simplified))
* Translated using Weblate (Norwegian Bokmål)
[ Sunil Mohan Adapa ]
* Rename Plinth to FreedomBox in various places
* debian: Update copyright to FreedomBox Authors
* setup.py: Update website to freedombox.org
* Add locale for Hungarian (hu)
* locale: Update the language selection form
* config: Remove language selection from config page
* Don't use async for method parameters
* searx: Increase the secret key length to 64 bytes
[ danielwine ]
* Translated using Weblate (Hungarian)
[ Sai Kiran Naragam ]
* locale: Anonymous users can set preferred language
* locale: Adds preferred language for logged in user
[ Luis A. Arizmendi ]
* Translated using Weblate (Spanish)
[ Johannes Keyser ]
* Translated using Weblate (German)
* matrixsynapse: Fix mail attribute for ldap login
-- James Valleroy <jvalleroy@mailbox.org> Mon, 26 Feb 2018 18:22:23 +0100
plinth (0.23.0) unstable; urgency=medium
[ Sunil Mohan Adapa ]
* Fetch latest manual from wiki
* Translated using Weblate (Telugu)
* snapshot: Enable Delete All only with non-default snapshots
[ Joseph Nuthalapati ]
* jsxc: consistent url format
* Translated using Weblate (Telugu)
* sso: Increase timeout to 60 minutes
* YAPF formatting for actions/auth_pubtkt
* transmission: Add .png logo
* snapshot: Delete All should skip currently active snapshot
* config: Move the method get_hostname to __init__.py
* snapshots: Refactoring and text changes
* snapshots: Increment version to 2
[ drashti kaushik ]
* Translated using Weblate (Gujarati)
[ uday17 ]
* Translated using Weblate (Telugu)
[ Sandeepbasva ]
* Translated using Weblate (Telugu)
[ kotibannu541 ]
* Translated using Weblate (Telugu)
[ Arshadashu ]
* Translated using Weblate (Telugu)
[ Nikhil Sankesa ]
* Translated using Weblate (Telugu)
[ sandeepgurram ]
* Translated using Weblate (Telugu)
[ prudhvi ]
* Translated using Weblate (Telugu)
[ chilumula vamshi krishna ]
* Translated using Weblate (Telugu)
[ pranava pari ]
* Translated using Weblate (Telugu)
[ Nikhil501 ]
* Translated using Weblate (Telugu)
[ Michal Čihař ]
* Translated using Weblate (Telugu)
[ Johannes Keyser ]
* Translated using Weblate (German)
[ anil kukmar soma ]
* Translated using Weblate (Telugu)
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Vikas Singh ]
* Font: Change Helvetica to Lato
* theme: Update CSS to use Lato font
[ Aakanksha Saini ]
* Snapper: Modify configurations to reduce disk usage
[ James Valleroy ]
* Add fonts-lato as dependency
* Update translation strings
* Add lintian override for symlink to Lato font file
-- James Valleroy <jvalleroy@mailbox.org> Mon, 12 Feb 2018 19:17:31 -0500
plinth (0.22.0) unstable; urgency=medium
[ Drashti Kaushik ]
* Translated using Weblate (Gujarati)
* Translated using Weblate (Hindi)
[ Igor ]
* Translated using Weblate (Russian)
[ Ikmaak ]
* Translated using Weblate (Dutch)
[ Joseph Nuthalapati ]
* Translated using Weblate (Telugu)
* ci: Replace CircleCI configuration with GitLab CI configuration
* firstboot: Fix caching issue in collecting first_boot steps
* HACKING: Commands to run a single test method, class or module
* first_setup: UX improvements for the first setup page
* matrix-synapse: Fix YAML format issues.
[ Pavel Borecki ]
* Translated using Weblate (Czech)
[ Sunil Mohan Adapa ]
* Add locale for Ukrainian (uk)
* ci: Update badge to use Gitlab CI instead of Circle CI
* Update Github URLs with Salsa URLs
* tor: Ensure that is-enabled status is show properly
[ Vikas Singh ]
* actions: Allow not printing error when an action fails
-- Sunil Mohan Adapa <sunil@medhas.org> Tue, 30 Jan 2018 14:41:25 +0530
plinth (0.21.0) unstable; urgency=medium
[ Aakanksha Saini ]
* navigation bar: change label 'Configuration' to 'System'
* storage: Removed beta warning for expanding partition
* groups: Consistent listing of groups
* syncthing: Restrict administration to users in group syncthing
[ Allan Nordhøy ]
* Spelling: configuration, log in, wiki
[ Johannes Keyser ]
* doc: update HACKING, CONTRIBUTING and INSTALL information
* help: Show menu on smaller screens also
[ Joseph Nuthalapati ]
* Complete some of the pending changing in renaming some files to .md
[ Shubham Agarwal ]
* diagnostics: Enable button when enabled but not running
[ Sunil Mohan Adapa ]
* openvpn: Upgrade to the new Debian way
* Add explicit dependency on e2fsprogs (Closes: #887223).
-- James Valleroy <jvalleroy@mailbox.org> Mon, 15 Jan 2018 15:07:03 -0500
plinth (0.20.0) unstable; urgency=high
[ James Valleroy ]
* bind: Rework getting and changing config
* bind: Don't use forwarders by default
[ Johannes Keyser ]
* ejabberd: Remove redundant button Client Apps
* ejabberd: Minor description cleanups
[ Joseph Nuthalpati ]
* mediawiki: Add wiki application
[ Sunil Mohan Adapa ]
* users: Make sure first run actually works
* bind: Add information about current utility
* storage: Make tests run on special filesystems
-- James Valleroy <jvalleroy@mailbox.org> Mon, 01 Jan 2018 15:04:02 -0500
plinth (0.19.0) unstable; urgency=medium
[ James Valleroy ]
* users: Use own copy of ldapscripts config
* users: Handle upgrade for ldapscripts config
* vagrant: Avoid debconf prompts while provisioning
* Bump standards version, no changes needed
[ John McCann ]
* ejabberd: Use dynamic reload after enabling/disabling MAM
[ Joseph Nuthalapati ]
* Add framework for user groups per application
* groups: User permissions for access to apps based on LDAP groups
* Fixes for user groups
* Fix failing root tests
* Suppress unnecessary logging in cfg tests
* users: tests: restore previous value of restricted access
* snapshots: Button to delete all snapshots
* snapshots: Minor refactoring
* manual: Make manual available as a PDF download
* manual: Download can serve either pdf or pdf.gz file
[ Sunil Mohan Adapa ]
* Update yapf configuration for simplicity
* Update HACKING file about coding standard tools
* clients: Minor styling fixes
* clients: Update icons to be 32x32 consistently
* api: Update for clarity (API breaking change)
* clients: Cleanup framework
* clients: Update all manifest due to use updated framework
* users: Add a note about using separate first setup action
* help: Don't uncompress the PDF manual
[ Hanisha P ]
* minetest: Show domain information for users to connect to minetest
* Option to enable/disble automatic timeline snapshots
-- James Valleroy <jvalleroy@mailbox.org> Mon, 18 Dec 2017 17:16:58 -0500
plinth (0.18.1) unstable; urgency=high
* Re-upload with higher urgency (to unblock django-axes 3.0.3).
-- James Valleroy <jvalleroy@mailbox.org> Mon, 04 Dec 2017 23:10:37 -0500
plinth (0.18.0) unstable; urgency=low
[ James Valleroy ]
* Add shadowsocks client with socks5 proxy.
[ Joseph Nuthalapati ]
* config: Avoid sending domain_added signal for empty domain.
* Override monkey-patched LoginView from django-axes 3.0.3.
* Make Plinth depend on django-axes 3.0.3 or later.
* sso: Fixes for regressions after adding captcha and axes.
* sso: Fix conflict between urls of sso and captcha.
* transmission: Fix sso not being enabled.
* Add client information for Matrix Synapse and Syncthing.
* Add icons for desktop applications and Apple App store.
[ Prachi Srivastava ]
* avahi: Add service for freedombox discovery.
* Add fields to the api response.
* Add client information for modules.
[ Sunil Mohan Adapa ]
* shadowsocks: Add more ciphers.
* service: Add missing restart action.
* avahi: Update FreedomBox service file.
[ Hritesh Gurnani ]
* Reduce OS icons size for clients.
-- James Valleroy <jvalleroy@mailbox.org> Mon, 04 Dec 2017 20:14:41 -0500
plinth (0.17.0) unstable; urgency=medium
[ Joseph Nuthalapati ]
* transmission: Enable Single Sign On.
* cockpit: Add short description to frontpage shortcut.
[ Allan Nordhøy ]
* fail2ban: Spelling "Fail2ban" and sentence structure.
[ Ravi Bolla ]
* config: Refactor config.py into views and form.
[ James Valleroy ]
* Removed old changelog.
-- James Valleroy <jvalleroy@mailbox.org> Mon, 20 Nov 2017 18:43:17 -0500
plinth (0.16.0) unstable; urgency=medium
[ Federico Ceratto ]
* Switched to native package.
-- James Valleroy <jvalleroy@mailbox.org> Mon, 06 Nov 2017 20:51:58 -0500
plinth (0.15.3+ds-1) unstable; urgency=high
[ James Valleroy ]
* Switch from gir1.2-networkmanager-1.0 to gir1.2-nm-1.0 (Closes: #862758).
Thanks to Michael Biebl.
* Bump standards version to 4.1.1.
* New upstream version 0.15.3 (Closes: #877371).
* Add patch to skip letsencrypt tests that require root privileges.
* Cleanup disks module (renamed to storage).
* Add patch with workaround for login issues.
* Add myself to uploaders.
[ Sunil Mohan Adapa ]
* Break older version of freedombox-setup (<< 0.11~)
* Bump Django version to 1.11
[ Joseph Nuthalapati ]
* Add new dependencies - axes and captcha
-- James Valleroy <jvalleroy@mailbox.org> Sat, 21 Oct 2017 14:14:00 -0400
plinth (0.15.2+ds-1) unstable; urgency=medium
[ James Valleroy ]
* Cleanup config for removed modules (Closes: #876627).
* New upstream version 0.15.2 (Closes: #876640).
* Add python3-configobj depend.
-- Federico Ceratto <federico@debian.org> Mon, 25 Sep 2017 15:03:35 +0100
plinth (0.15.1+ds-1) unstable; urgency=medium
[ James Valleroy ]
* Sort dependency list for essential modules (Closes: #872541).
* Bump standards version to 4.0.1.
[ Federico Ceratto ]
* New upstream version 0.15.1
-- Federico Ceratto <federico@debian.org> Sat, 23 Sep 2017 11:35:41 +0100
plinth (0.14.0+ds-1) unstable; urgency=medium
[ James Valleroy ]
* New upstream version 0.14.0.
* Refresh patches.
-- Sunil Mohan Adapa <sunil@medhas.org> Thu, 20 Apr 2017 19:48:03 +0530
plinth (0.13.1+ds-1) unstable; urgency=medium
[ James Valleroy ]
* Disable shaarli module, package removed from Debian.
* New upstream version 0.13.1.
* Update paths for jsxc symlinks.
* Remove configuration for obsolete xmpp module.
-- Federico Ceratto <federico@debian.org> Sun, 22 Jan 2017 21:48:59 +0000
plinth (0.12.0+ds-1) unstable; urgency=medium
[ James Valleroy ]
* Exclude new symlink in upstream source.
* New upstream version 0.12.0.
* Remove patches that have been merged upstream.
* Rearrange copyright file with more general license at the top.
* Move plinth into web section.
* Update symlinks for jsxc 3.0.0.
-- Federico Ceratto <federico@debian.org> Sat, 10 Dec 2016 18:42:29 +0100
plinth (0.11.0+ds-1) unstable; urgency=medium
[ James Valleroy ]
* New upstream version 0.11.0.
* Replace python3-yaml dependency with python3-ruamel.yaml.
* Add python3-apt dependency.
* Add patch to fix permissions and use new setup command (Closes: #837206).
* Add patch to include xmpp module static files in build.
* Add links for jsxc static files. Workaround for #838183.
* Remove symlinks from source package.
[ Sunil Mohan Adapa ]
* Automatically add essential packages to depends (Closes: #837332).
-- Federico Ceratto <federico@debian.org> Mon, 26 Sep 2016 14:52:36 +0100
plinth (0.10.0-1) unstable; urgency=medium
[ James Valleroy ]
* New upstream version 0.10.0.
* Bump minimum required python3-django to 1.10.
-- Federico Ceratto <federico@debian.org> Sun, 21 Aug 2016 13:07:54 +0100
plinth (0.9.4-2) unstable; urgency=medium
[ James Valleroy ]
* Add breaks/replaces on freedombox-setup << 0.9.2~ (Closes: #829743).
-- Federico Ceratto <federico@debian.org> Sat, 16 Jul 2016 14:55:37 +0100
plinth (0.9.4-1) unstable; urgency=medium
[ James Valleroy ]
* New upstream version 0.9.4.
* Remove init script override. Init script was removed from upstream.
* Drop packagekit dependency. No longer required by upstream.
* Drop gir1.2-packagekitglib-1.0 depend and build-depend.
-- Federico Ceratto <federico@debian.org> Fri, 24 Jun 2016 22:02:54 +0100
plinth (0.9.2-1) unstable; urgency=medium
[ James Valleroy ]
* New upstream version 0.9.2.
[ Petter Reinholdtsen ]
* Added d/gbp.conf to enforce the user of pristine-tar.
* Adjusted d/copyright to make sure license names are unique. Thanks lintian.
* Updated Standards-Version from 3.9.6 to 3.9.8.
-- Petter Reinholdtsen <pere@debian.org> Wed, 25 May 2016 07:16:08 +0000
plinth (0.9.1-1) unstable; urgency=low
[ James Valleroy ]
* New upstream version 0.9.1.
* Add python3-requests as dependency and build-dep.
-- Federico Ceratto <federico@debian.org> Sat, 02 Apr 2016 16:53:42 +0100
plinth (0.8.2-1) unstable; urgency=low
[ James Valleroy ]
* New upstream version 0.8.2.
-- Federico Ceratto <federico@debian.org> Fri, 26 Feb 2016 19:51:37 +0000
plinth (0.8.1-1) unstable; urgency=low
[ James Valleroy ]
* Skip filter-pristine-tar step for new upstream.
* New upstream version 0.8.1.
* Add docbook-utils as build dependency.
* Add packagekit as dependency.
-- Federico Ceratto <federico@debian.org> Tue, 16 Feb 2016 18:38:53 +0000
plinth (0.7.2-1) unstable; urgency=low
[ James Valleroy ]
* New upstream version 0.7.2.
* Remove patch to enable javascript-common, fixed upstream.
-- Federico Ceratto <federico@debian.org> Fri, 25 Dec 2015 13:47:03 +0000
plinth (0.7.1-1) unstable; urgency=low
[ James Valleroy ]
* New upstream version 0.7.1.
* Remove patch to fix config test, fixed upstream.
* Refresh patch.
* Add gettext as build dependency.
* Disable restore module, node-restore package not available in Debian yet.
[ Sunil Mohan Adapa ]
* Remove Django HTMLParser workaround as it is no longer need.
* Add javascript-common as dependency as we are enabling it during setup.
* Update package description (Closes: #804753)
-- Federico Ceratto <federico@debian.org> Sat, 12 Dec 2015 15:12:48 +0000
plinth (0.6-1) unstable; urgency=low
[ Nick Daly ]
* Uploaded new version.
[ James Valleroy ]
* New upstream version 0.6.
* Drop obsolete documentation patch.
* Add dblatex and xmlto as build dependencies, for manual. Drop pandoc.
* Add network-manager, ppp, pppoe, and python3-psutil as dependencies.
* Remove old TODO from docs.
* Add patch to workaround django 1.7 issue with python 3.5.
* Add patch to fix failing plinth config test.
* Add gir1.2-networkmanager-1.0 and python3-psutil also as build-depends.
* Cleanup installation documenation.
-- Nick Daly <Nick.M.Daly@gmail.com> Fri, 16 Oct 2015 22:57:10 -0500
plinth (0.5-1) unstable; urgency=low
[ Nick Daly ]
* Package new upstream version 0.5.
[ James Valleroy ]
* Add augeas-tools, gir1.2-glib-2.0, gir1.2-networkmanager-1.0, ldapscripts,
python3-augeas, and python3-django-stronghold as dependencies.
* Disable "packages" module when upgrading.
* Remove patches for python-networkmanager (obsolete) and ikiwiki
(upstreamed).
* Add patch to skip privileged actions test while building.
* Add some build-depends needed for tests.
[ James Valleroy ]
* New upstream version 0.4.5.
* Remove patch that has been upstreamed.
* Add new patch to remove python-networkmanager dependency, because
python3-networkmanager package is not available in Debian yet. The networks
module is disabled for now.
* Enable systemd service file.
* Add new patch to enable javascript-common apache conf in plinth setup.
* Add new patch to require ikiwiki module to install some of ikiwiki's
recommends that are needed for compiling wikis.
[ Sunil Mohan Adapa ]
* Add python3-yaml as dependency.
* Add lintian override for extra apache configuration.
* Update Debian copyright file.
-- Nick Daly <Nick.M.Daly@gmail.com> Sun, 02 Aug 2015 17:14:50 -0500
plinth (0.4.4-1) unstable; urgency=low
[ Sunil Mohan Adapa ]
* New upstream version 0.4.4. Closes: #769328, #755619, #765916,
#768666, #737456, #741919.
* Update dependencies as per upstream changes.
* Require Django 1.7 reflecting upstream changes.
* Remove patches that have been upstreamed.
* Update standards version to 3.9.6.
* Properly remove obsolete module configuration.
* Remove upstream install documentation.
-- Bdale Garbee <bdale@gag.com> Tue, 13 Jan 2015 22:25:07 +1300
plinth (0.4.1-1) unstable; urgency=low
[ Sunil Mohan Adapa ]
* New upstream version 0.4.1.
* Remove install override which is no longer required. Upstream
does not contain images with executable permissions anymore.
* Remove patch for changing paths which is no longer necessary.
* Change upstream URLs to point to github.com/freedombox.
* Update license information. Remove information about files no
longer present in upstream.
* Remove link to configuration file no longer necessary due to
upstream changes.
* Remove debian/clean no longer necessary.
* Build package as Python 3 package. Upstream migrated to Python 3.
* Fix issue with cleaning the package after build.
-- Petter Reinholdtsen <pere@debian.org> Sun, 02 Nov 2014 17:20:26 +0000
plinth (0.3.2.0.git.20140829-1) unstable; urgency=high
* Updated to new git version from Nick Daly based on commit
250b0100aab236fcf9dfa65eccf656fe037f9422.
- Fixes broken web pages (Closes: #754117).
* Updated patch program-paths.diff to include actions_dir setting,
and drop now obsolete patch actions-path.diff.
-- Petter Reinholdtsen <pere@debian.org> Sat, 30 Aug 2014 08:26:06 +0200
plinth (0.3.2.0.git.20140621-1) unstable; urgency=medium
* Updated to new git version from Nick Daly based on commit
af08066cafefb5d10304b7d8b22ed1f18c4df6d0.
- Drop now obsolete patch drop-firewalld-services.diff.
-- Petter Reinholdtsen <pere@debian.org> Sat, 21 Jun 2014 20:39:30 +0200
plinth (0.3.2.0.git.20140614-3) unstable; urgency=medium
* Add libjs-twitter-bootstrap as binary dependency in addition to
being a build dependency.
-- Petter Reinholdtsen <pere@debian.org> Sun, 15 Jun 2014 23:38:57 +0200
plinth (0.3.2.0.git.20140614-2) unstable; urgency=low
* Update dependencies, drop python-cheetah and python-simplejson,
which are no longer used, and add python-bootstrapform needed to
show the first page.
-- Petter Reinholdtsen <pere@debian.org> Sat, 14 Jun 2014 08:51:34 +0200
plinth (0.3.2.0.git.20140614-1) unstable; urgency=low
* Updated to new git version from Nick Daly based on commit
a01ef055beab017fcd77ca9da7cab6fe01eeffbe.
* Add build-depend on libjs-twitter-bootstrap, now needed to
build documentation.
* Add new patch drop-firewalld-services.diff to remove firewalld
service definitions now available in firewalld version 0.3.10-1
(Closes: #750927).
-- Petter Reinholdtsen <pere@debian.org> Sat, 14 Jun 2014 00:30:42 +0200
plinth (0.3.2.0.git.20140504-2) unstable; urgency=low
* Drop python-contract dependency. It is not used any more.
* Add python-django as binary dependency on request from Nick Daly.
-- Petter Reinholdtsen <pere@debian.org> Mon, 05 May 2014 13:27:27 +0200
plinth (0.3.2.0.git.20140504-1) unstable; urgency=low
* Updated to new git version from Nick Daly based on commit
d7a323512073cea9e4ee5a1cd91870a9f04959a6.
- Move firewall setup from freedombox-setup to plinth.
* Add Sunil and Nick as uploaders.
-- Petter Reinholdtsen <pere@debian.org> Sun, 04 May 2014 09:53:25 +0200
plinth (0.3.1.git.20140327-1) unstable; urgency=low
* New upstream version 0.3.1.git.20140327.
-- Petter Reinholdtsen <pere@debian.org> Thu, 27 Mar 2014 10:29:36 +0100
plinth (0.3.1.git.20140304-1) unstable; urgency=low
* Add sudo as a run time dependency, to make sure the privileged
commands work.
* Update Standards-Version from 3.9.4 to 3.9.5. No changes needed.
* Create plinth user with /var/lib/plinth as home directory, to keep
lintian happy.
-- Petter Reinholdtsen <pere@debian.org> Sat, 08 Mar 2014 22:25:32 +0100
plinth (0.3.0.0.git.20131229-1) unstable; urgency=low
* Updated to new git version from Nick Daly based on commit
cb9ca1b86c7b7440e87b6d5b65ab6ccf51f760cf .
- Remove patch correct-issue-tracker.diff now included upstream.
- Updated patches actions-path.diff and program-paths.diff to match
changes done upstream.
* Updated copyright file with more details using the new upstream
LICENSES file.
-- Petter Reinholdtsen <pere@debian.org> Sun, 29 Dec 2013 16:06:53 +0100
plinth (0.3.0.0.git.20131117-1) unstable; urgency=low
* Updated to new git version from Nick Daly based on commit
7f3b1a62c81f760da465497030b68d77139406d7.
- Add new dependencies libjs-jquery and libjs-modernizr to plinth.
Patch from James Valleroy.
- Add new dependencies on python-passlib (>= 1.6.1) and python-bcrypt.
* Remove now obsolete disable-override-config patch
* Updated program-paths.diff patch to match new upstream source.
* Add new patch actions-path.diff to use correct path to actions scripts.
* Add new patch correct-issue-tracker.diff to use correct URL to current
upstream github repository.
-- Petter Reinholdtsen <pere@debian.org> Sun, 17 Nov 2013 13:07:21 +0100
plinth (0.3.0.0.git.20131101-2) unstable; urgency=low
* Rewrite config to get plinth starting out of the box. New patches
program-paths and disable-override-config.
-- Petter Reinholdtsen <pere@debian.org> Sat, 02 Nov 2013 07:54:37 +0100
plinth (0.3.0.0.git.20131101-1) unstable; urgency=low
* Updated to new git version from Nick Daly based on commit
b9b4e0a2ec21edc1b1f73cffc905463a96c18f25.
* Drop patch install-actions-lib made obsolete by latest upstream
changes.
* Depend on pandoc-data | pandoc (<= 1.11.1-3) to make sure
documentation can be built with the latest pandoc package in
unstable.
-- Petter Reinholdtsen <pere@debian.org> Fri, 01 Nov 2013 13:14:41 +0100
plinth (0.3.0.0.git.20131028-1) unstable; urgency=low
* Updated to new git version from Nick Daly based on commit
0296a1a99cb1ad0a21729ea37fd53e171ee60614.
- Drops local copies of javascript libraries also available from
Debian packages.
* Add new dependency python-contract needed by new upstream version.
* Reduce the versioned python-withsqlite dependency from
0.0.0~git.20130929-1 to 0.0.0~git.20130929, to also accept the
0.0.0~git.20130929-1~pere.0 version currently available from the
non-debian repo.
* New patch install-actions-lib to fix install target (Upstream
issue #41).
-- Petter Reinholdtsen <pere@debian.org> Wed, 30 Oct 2013 22:25:25 +0100
plinth (0.3.0.0.git.20131010-1) unstable; urgency=low
* Updated to new git version from Nick Daly based on
commit 5ec749af8e5cb2480556e6926e239972ac890b4c
* Dropped patch debpathes now merged upstream.
* Changed depend on python-withsqlite to (>= 0.0.0~git.20130929-1),
making sure a version with support for more than one table in
one sqlite file is available.
-- Petter Reinholdtsen <pere@debian.org> Thu, 10 Oct 2013 22:51:34 +0200
plinth (0.0.0~git.20130928-1) unstable; urgency=low
* Updated to new git version from Nick Daly.
* Drop patches keep-vendor-dir.diff, handle-unknown-users.diff,
sudo-not-exmachina.diff and app-owncloud.diff now merged upstream.
* Drop workaround for keep-vendor-dir.diff from rules file.
-- Petter Reinholdtsen <pere@debian.org> Sat, 28 Sep 2013 22:55:36 +0200
plinth (0.0.0~git.20130925-2) unstable; urgency=low
* Depend on python-withsqlite (>= 0.0.0~git.20130915-2) to make sure a
version with support for the check_same_thread constructor option is
available.
* New patch handle-unknown-users.diff to make sure unknown users
are handled exactly like incorrect passwords when login fail.
* New patch app-owncloud.diff to add owncloud support to Plinth.
* Adjusted rules to make sure actions/* scripts are executable.
-- Petter Reinholdtsen <pere@debian.org> Fri, 27 Sep 2013 09:06:38 +0200
plinth (0.0.0~git.20130925-1) unstable; urgency=low
[ Tzafrir Cohen ]
* Initial release. (Closes: #722093)
[ Petter Reinholdtsen ]
* New patch keep-vendor-dir.diff to avoid removing directories that
should survive the clean Makefile target.
* Add workaround in rules addressing the problem caused by
keep-vendor-dir.diff being applied after 'make clean' is executed.
* New patch sudo-not-exmachina.diff to drop the exmachina dependency,
and adjust binary dependencies and the debpathes patch to cope with
this. Drop dependency on augeas-tools, no longer used with this
patch.
* Set priority to optional, as the package do not conflict with anything.
-- Petter Reinholdtsen <pere@debian.org> Thu, 26 Sep 2013 09:14:54 +0200
|