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
|
2025-03-03 Mike Gabriel
* Release 3.1.1 (HEAD -> main, tag: v3.1.1)
2025-02-06 Milo Ivir
* Translated using Weblate (Croatian) (0163b70)
2025-02-05 Milo Ivir
* Translated using Weblate (Croatian) (061a3e4)
2025-02-04 Milo Ivir
* Translated using Weblate (Croatian) (8c8be4c)
2025-02-01 Milo Ivir
* Translated using Weblate (Croatian) (676c730)
2025-01-19 reimu105
* Translated using Weblate (Chinese (Traditional Han script))
(bcb468c)
2025-01-12 தமிழ்நேரம்
* Translated using Weblate (Tamil) (eb97269)
2024-12-27 Hosted Weblate
* Update translation files (f2600f0)
2024-10-14 Guido Berhörster
* .gitlab-ci.yml: Increase clickable publish timeout to 20min
(bfa2236)
2024-10-07 Ratchanan Srirattanamet
* Merge branch 'add/libreofficePrefixConfigurable' into 'main'
(472cca4)
2024-08-24 OPNA2608
* libreofficetoolkit-qml-plugin: Make LibreOffice installation path
configurable at build time (45a433f)
2024-09-22 Mike Gabriel
* Merge branch 'fix/xdgIcon' into 'main' (de50ca7)
2024-09-12 OPNA2608
* data/CMakeLists: XDGify desktop icon (baf6278)
2024-09-22 Mike Gabriel
* .gitlab-ci.yml: use shared runner if run outside our namespace.
(476ecc9)
2024-09-11 Mike Gabriel
* Release 3.1.0 (8d6af81) (tag: v3.1.0)
* Merge branch 'personal/OPNA2608/gnuInstallDirs' into 'main'
(4e9b9cb)
2024-08-24 OPNA2608
* Use GNUInstallDirs more/better (a6b34d0)
2024-09-11 Mike Gabriel
* Merge branch 'personal/OPNA2608/qt5_use_modules' into 'main'
(feb431c)
2024-08-24 OPNA2608
* CMakeLists.txt: Move all Qt find_package to top-level
CMakeLists.txt (d508ef1)
* Stop using qt5_use_modules (8647cdf)
2024-09-11 Mike Gabriel
* Merge branch 'personal/OPNA2608/nonclickContenthubUrldispatcher'
into 'main' (9fd930f)
2024-09-04 OPNA2608
* click/CMakeLists.txt: Also install content-hub &
lomiri-url-dispatcher data in non-click mode (d6731f6)
2024-09-11 Mike Gabriel
* .gitlab-ci.yml: Use UBports GitLab runner. (a672953)
2024-09-03 Mike Gabriel
* Merge branch 'fix/bindtextdomain' into 'main' (a77ee8c)
2024-08-26 OPNA2608
* Migrate i18n init to C++ (0229831)
2024-08-24 OPNA2608
* Call i18n.bindtextdomain with buildtime-determined locale path
(6202bd4)
2024-09-03 Mike Gabriel
* Merge branch 'add/optionalTesting' into 'main' (0006cc9)
2024-08-24 OPNA2608
* CMakeLists.txt: Use BUILD_TESTING to gate tests (6f1eb73)
2024-08-13 Ricky From Hong Kong
* Translated using Weblate (Chinese (Traditional)) (102b51f)
2024-08-07 umesaburo sagawa
* Translated using Weblate (Japanese) (79837fb)
2024-08-06 umesaburo sagawa
* Translated using Weblate (Japanese) (4771201)
2024-07-22 Jiri Grönroos
* Translated using Weblate (Finnish) (728e9c7)
2024-07-22 Mike Gabriel
* Merge branch 'main_-_presentationmode' into 'main' (17209c9)
2024-01-24 kugiigi
* Add left/right click for back/forward in presentation mode
(69546e6)
2024-01-10 kugiigi
* Implement presentation mode in LibreOffice documents (e0de06e)
* Implement presentation mode in PDF files (298dfc7)
* Implement presentation mode to Text Documents (b817fa6)
2024-07-08 Ricky From Hong Kong
* Translated using Weblate (Chinese (Traditional, Hong Kong))
(811fde9)
2024-06-23 Mike Gabriel
* Merge branch
'personal/sunweaver/non-click-mode-install-icon-and-splash'
into 'main' (ef20bbd)
2024-02-26 Mike Gabriel
* data/CMakeLists.txt: Do install splash file in non-click mode.
(8a32a82)
* data/CMakeLists.txt: In non-click mode, fix installation of desktop
app icon into datadir. (ffca1ec)
* CMakeLists.txt: Use SVG icon as desktop app icon. (51da33c)
2024-05-28 Ali Beyaz
* Translated using Weblate (Turkish) (3c89001)
2024-05-16 Daniel Soohan Park
* Translated using Weblate (Korean) (e112588)
2024-05-05 phlostically
* Translated using Weblate (Esperanto) (104140d)
2024-04-23 Mike Gabriel
* Merge branch 'personal/gberh/fix-i18n-domain' into 'main' (ac1c117)
2024-04-23 Guido Berhoerster
* Set gettext domain correctly (8dc2c91)
2024-04-01 复予
* Translated using Weblate (Chinese (Simplified)) (711e274)
2024-03-09 saveurlinux
* Translated using Weblate (French) (6a3b352)
2024-01-25 Vlad Nirky
* Translated using Weblate (French) (ec5da85)
2023-12-31 phlostically
* Translated using Weblate (Esperanto) (e0177ac)
2023-12-27 Hosted Weblate
* Update translation files (429272c)
2023-12-27 Weblate
* Added translation using Weblate (Chinese (Simplified)
(zh_LATN@pinyin)) (30ef22d)
* Added translation using Weblate (Tamil (Sri Lanka)) (59fda1c)
* Added translation using Weblate (German (Walser)) (79f1e86)
* Added translation using Weblate (Meadow Mari) (0021710)
* Added translation using Weblate (Crimean Tatar) (5a2478e)
* Added translation using Weblate (Chuvash) (013634e)
* Added translation using Weblate (Silesian) (ca79118)
* Added translation using Weblate (Latin) (75685cf)
* Added translation using Weblate (Venetian) (a259916)
* Added translation using Weblate (Ossetian) (4b1a71f)
* Added translation using Weblate (Sami (Northern)) (5c6ae5f)
* Added translation using Weblate (Greenlandic) (9b7bb77)
* Added translation using Weblate (Assamese) (4e12d15)
* Added translation using Weblate (Haitian) (93ea56c)
* Added translation using Weblate (Cornish) (bb8d1f7)
* Added translation using Weblate (Frisian) (3a8e738)
* Added translation using Weblate (Kashubian) (99e522b)
* Added translation using Weblate (Aragonese) (f2beb7d)
* Added translation using Weblate (Tibetan) (37cf0b7)
* Added translation using Weblate (Filipino) (2a27ba7)
* Added translation using Weblate (Tigrinya) (87d2dbb)
* Added translation using Weblate (Tatar) (3327d84)
2023-12-26 Weblate
* Added translation using Weblate (Italian (it_CARES)) (d11aab0)
2023-12-04 Reza Almanda
* Translated using Weblate (Indonesian) (8be58bd)
2023-10-21 Hosted Weblate
* Update translation files (6c38504)
2023-10-18 Weblate
* Added translation using Weblate (Xhosa) (804d2c9)
* Added translation using Weblate (Manx) (79c1e7b)
* Added translation using Weblate (Corsican) (d260a18)
* Added translation using Weblate (Chechen) (ffafdc7)
* Added translation using Weblate (Wolof) (86f53b3)
* Added translation using Weblate (Kurdish (Central)) (8db7062)
* Added translation using Weblate (Kyrgyz) (d2cdb59)
* Added translation using Weblate (Kurdish) (f07a909)
* Added translation using Weblate (Sotho (Southern)) (1d0ca02)
* Added translation using Weblate (Kannada) (e20717f)
* Added translation using Weblate (Kazakh) (9e74e01)
* Added translation using Weblate (Nepali) (74ea930)
* Added translation using Weblate (Norwegian Nynorsk) (88cfc4e)
* Added translation using Weblate (Interlingua) (bb42744)
* Added translation using Weblate (Swahili) (2424d9d)
* Added translation using Weblate (Marathi) (9c8deda)
* Added translation using Weblate (Vietnamese) (f66a947)
* Added translation using Weblate (Odia) (0d81856)
* Added translation using Weblate (Occitan) (a48e219)
* Added translation using Weblate (Bengali) (ac9ac9d)
* Added translation using Weblate (Estonian) (721f18d)
* Added translation using Weblate (Irish) (b94c660)
2023-10-15 Mike Gabriel
* Release 3.0.4 (82c018a) (tag: v3.0.4)
2023-08-21 NPL
* Translated using Weblate (Japanese) (8aab09b)
2023-08-12 NPL
* Translated using Weblate (Japanese) (53d22a2)
2023-08-13 Abdullah AL Shohag
* Translated using Weblate (Bengali (Bangladesh)) (455c99b)
2023-06-30 Rudra Harsh V.Singh
* Translated using Weblate (Sanskrit) (f3d3748)
2023-07-01 NPL
* Translated using Weblate (Japanese) (f11f911)
2023-07-01 Hosted Weblate
* Update translation files (c8409ed)
2023-06-30 Weblate
* Added translation using Weblate (Sanskrit) (6c8949f)
2023-06-27 Rudra Harsh V.Singh
* Translated using Weblate (English (Canada)) (770b5a7)
2023-06-26 Rudra Harsh V.Singh
* Translated using Weblate (Hindi) (33d6c6c)
2023-06-28 J. Lavoie
* Translated using Weblate (French) (f482e7c)
* Translated using Weblate (German) (6e437ce)
2023-06-08 Mike Gabriel
* Merge branch 'add_ignore_review' into 'main' (92d4b7c)
2023-03-30 Danfro
* add ignore review errors to clickable.yaml to allow local building
(0d06588)
2023-05-13 abidin toumi
* Translated using Weblate (Arabic) (2a5008f)
2023-04-12 Temuri Doghonadze
* Translated using Weblate (Georgian) (40ade7c)
2023-04-30 Mike Gabriel
* Merge branch 'nightmode-fixes' into 'main' (aba0d4a)
2023-04-26 Capsia
* Disable nightMode switch when viewing text files with SuruDark
(85f9f46)
* Switch UI theme to SuruDark when night mode is enabled (a0be526)
* Apply night mode to document instead of mainView (fc7199e)
2023-04-11 Temuri Doghonadze
* Translated using Weblate (Georgian) (d9d6ab7)
* Translated using Weblate (Georgian) (27ff9b5)
2023-04-04 gallegonovato
* Translated using Weblate (Spanish) (b25f72b)
2023-03-30 Sylke Vicious
* Translated using Weblate (Italian) (806e12c)
* Translated using Weblate (Italian) (4b4c72f)
2023-03-30 Jozef Mlich
* Translated using Weblate (Czech) (d29f678)
2023-03-28 Jozef Mlich
* Translated using Weblate (Czech) (39cbb3d)
2023-03-27 Jozef Mlich
* Translated using Weblate (Czech) (1d38762)
2023-03-22 phlostically
* Translated using Weblate (Esperanto) (cabfe0f)
2023-03-16 Mike Gabriel
* Merge branch 'personal/gberh/click-migrate' into 'main' (ae5c96b)
2023-02-28 Guido Berhoerster
* Fix dh_installman manpage installation path (5567ef4)
* Use session-migration for migration in Debian (dc7f508)
2023-02-23 Guido Berhoerster
* Add migrations to manifest (f869acb)
* Add migration wrapper script (7d9131c)
2023-02-26 Luna Jernberg
* Translated using Weblate (Swedish) (dc080f9)
2023-02-27 Guido Berhoerster
* Release 3.0.3 (7aa6018) (tag: v3.0.3)
2023-02-20 Sergii Horichenko
* Translated using Weblate (Ukrainian) (c31a8f9)
2023-02-21 Heimen Stoffels
* Translated using Weblate (Dutch) (7e6ce64)
2023-02-19 phlostically
* Translated using Weblate (Esperanto) (02e1cb8)
2023-02-16 phlostically
* Translated using Weblate (Esperanto) (1595fa4)
2023-02-14 Luna Jernberg
* Translated using Weblate (Swedish) (5bcb2b3)
2023-02-13 Adolfo Jayme Barrientos
* Translated using Weblate (Spanish) (ddbfcef)
* Translated using Weblate (Spanish) (c3feb9c)
2023-02-03 Guido Berhoerster
* Release 3.0.2 (4913bdb) (tag: v3.0.2)
* Merge branch 'personal/sunweaver/manpage' into 'main' (2c91a9f)
2023-01-30 Mike Gabriel
* CMakeLists.txt: Fix man page installation path. (2ca94b2)
* lomiri-docviewer-app.1: Typo fix. (14e9c05)
2023-01-31 Mike Gabriel
* Translated using Weblate (German) (95cac18)
2023-01-30 Guido Berhoerster
* Merge branch 'personal/sunweaver/desktop-file-mime-handling' into
'main' (bdf7157)
2023-01-30 Mike Gabriel
* data/lomiri-docviewer-app.desktop.in.in: Enable MIME handling via
Exec= key. Also add TryExec= key. (4925300)
2023-01-30 Guido Berhoerster
* Merge branch 'personal/sunweaver/cmake-portable' into 'main'
(d495520)
2023-01-30 Mike Gabriel
* CMakeLists.txt: Don't use dpkg tools if not in CLICK_MODE. Makes
the CMake configuration (more) portable. (76708d1)
2023-01-26 gnu-ewm
* Translated using Weblate (Polish) (ab13dca)
2023-01-25 gnu-ewm
* Translated using Weblate (Polish) (5093c41)
2023-01-23 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (ffa6e99)
2023-01-22 Sergii Horichenko
* Translated using Weblate (Ukrainian) (f0a1218)
2023-01-18 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (6748730)
2023-01-18 Guido Berhoerster
* Release 3.0.1 (56831af) (tag: v3.0.1)
2023-01-18 Mike Gabriel
* Merge branch 'personal/gberh/cmake-fix' into 'main' (68f4c3d)
2023-01-18 Guido Berhoerster
* Export symbols from lomiri-docviewer-app executable (b5f2751)
2023-01-15 Sergii Horichenko
* Translated using Weblate (Ukrainian) (ad4069c)
2023-01-14 Sergii Horichenko
* Translated using Weblate (Russian) (09ae74e)
2023-01-14 Dan
* Translated using Weblate (Ukrainian) (0c9bd3a)
2023-01-13 Sergii Horichenko
* Translated using Weblate (Ukrainian) (05d9c28)
2023-01-12 Sergii Horichenko
* Translated using Weblate (Russian) (aa11309)
2023-01-13 Ivo Xavier
* Translated using Weblate (Portuguese) (3d54152)
2023-01-13 Timothy G
* Translated using Weblate (French) (0c70b11)
2023-01-11 Dan
* Translated using Weblate (Ukrainian) (d185448)
2023-01-10 Mike Gabriel
* Translated using Weblate (German) (bd18915)
2023-01-11 Guido Berhoerster
* CI: Increase timeout for upload to Open Store (5fa751f)
2023-01-10 Guido Berhoerster
* Release 3.0.0 (2be2be4) (tag: v3.0.0)
2023-01-10 Hosted Weblate
* Update translation files (de84f12)
2023-01-10 Mike Gabriel
* Merge branch 'personal/gberh/cleanup' into 'main' (6c432f0)
2023-01-10 Guido Berhoerster
* Update pot file (d78eace)
2023-01-06 Guido Berhoerster
* Improve Debian package descriptions (de5bcde)
* Add note about autopilot (c3b6a50)
* Update instructions for translators (d8c9576)
* Update review guidelines (d303a41)
* Update developer information (16114e6)
* Add manual page (002df53)
* Update README.md file (ea309e4)
* Update CMake requirements (1e0187a)
* Fix pep8 so it doesn't pick up unrelated files (56c071f)
2023-01-05 Guido Berhoerster
* Move fetch-libreoffice.py to tools/ (6a34206)
2023-01-10 Mike Gabriel
* Merge branch 'kingu-main-patch-50031' into 'main' (dd36678)
2023-01-10 Allan Nordhøy
* Spelling: Ellipsis … (95eb46a)
2023-01-04 Muhammad
* Translated using Weblate (Urdu) (8a92209)
2023-01-05 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (001eaf1)
2023-01-05 Hosted Weblate
* Update translation files (e584138)
2023-01-04 Anonymous
* Translated using Weblate (Chinese (Min Nan)) (d2f872e)
* Translated using Weblate (Kurdish (Southern)) (25155b7)
* Translated using Weblate (Kurdish (Northern)) (1ba02d7)
* Translated using Weblate (Dhivehi) (e961dc3)
* Translated using Weblate (Burmese) (b0d83c3)
* Translated using Weblate (English (United States)) (1d5406e)
* Translated using Weblate (Macedonian) (f450e81)
* Translated using Weblate (Maori) (2102f26)
* Translated using Weblate (Malayalam) (2661300)
* Translated using Weblate (Friulian) (de35230)
* Translated using Weblate (Icelandic) (f7eb041)
* Translated using Weblate (Pashto) (1bb919f)
* Translated using Weblate (Bulgarian) (7df45e9)
* Translated using Weblate (Telugu) (d10c88f)
* Translated using Weblate (Turkmen) (f0402a6)
* Translated using Weblate (Valencian) (4b6c8a8)
* Translated using Weblate (Urdu) (1c1e9ca)
2023-01-04 Muhammad
* Translated using Weblate (Urdu) (a5f7ab2)
2023-01-04 Anonymous
* Translated using Weblate (Ido) (ae77514)
* Translated using Weblate (Tetum) (4f5cff3)
* Translated using Weblate (Scots) (60392a4)
* Translated using Weblate (Franco-Provençal) (bbbde2a)
* Translated using Weblate (Sindhi) (3a10316)
* Translated using Weblate (Kabyle) (a0f7818)
* Translated using Weblate (Pampanga) (1dc02ad)
* Translated using Weblate (Malagasy) (ef0b156)
* Translated using Weblate (Luxembourgish) (28c8845)
* Translated using Weblate (Tajik) (cbd49fd)
* Translated using Weblate (French (Switzerland)) (4f424e2)
* Translated using Weblate (Lojban) (3ddd450)
* Translated using Weblate (Lingala) (5cd1e3d)
* Translated using Weblate (Oromo) (55bbf98)
* Translated using Weblate (Bemba) (9099153)
* Translated using Weblate (Sinhala) (b7d41c9)
* Translated using Weblate (Shan) (915ce6e)
* Translated using Weblate (Nyanja) (37ed1f2)
* Translated using Weblate (Lao) (ed3d144)
* Translated using Weblate (Asturian) (ae3695e)
2023-01-04 Mike Gabriel
* po/: Rename zh_Hant_HK.po to zh_HK.po. (9d4e20f)
* Revert "Deleted translation using Weblate (Chinese (Traditional,
Hong Kong))" (f645853)
* Revert "Added translation using Weblate (Chinese (Traditional, Hong
Kong))" (3d3228d)
* Merge branch 'personal/gberh/optimize-size' into 'main' (c2523ed)
2023-01-04 Weblate
* Added translation using Weblate (Chinese (Traditional, Hong Kong))
(83d949b)
2023-01-04 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (b958932)
2023-01-04 Mike Gabriel
* Deleted translation using Weblate (Chinese (Traditional, Hong
Kong)) (b082bb9)
2023-01-04 Weblate
* Added translation using Weblate (Chinese (Min Nan)) (12c9e77)
* Added translation using Weblate (Kurdish (Southern)) (d8fa0cd)
* Added translation using Weblate (Kurdish (Northern)) (ee15404)
* Added translation using Weblate (Afar) (d155ad2)
* Added translation using Weblate (Dhivehi) (c2776ac)
* Added translation using Weblate (English (Canada)) (568e1b1)
* Added translation using Weblate (Burmese) (f161eba)
* Added translation using Weblate (English (United States)) (34b0c06)
* Added translation using Weblate (Khmer (Central)) (d8d4a0b)
* Added translation using Weblate (Albanian) (e2fea6b)
* Added translation using Weblate (Georgian) (8486388)
* Added translation using Weblate (Azerbaijani) (f8fc0e8)
* Added translation using Weblate (Malay) (451dc87)
* Added translation using Weblate (Macedonian) (3077ce9)
* Added translation using Weblate (Maori) (7a179a5)
* Added translation using Weblate (Malayalam) (de9adb4)
* Added translation using Weblate (Friulian) (358f00d)
* Added translation using Weblate (Hindi) (49ea2aa)
* Added translation using Weblate (Armenian) (a85e84a)
* Added translation using Weblate (Icelandic) (d29f15b)
* Added translation using Weblate (Pashto) (3a8254e)
* Added translation using Weblate (Bulgarian) (eefb16b)
* Added translation using Weblate (Tamil) (304a0f6)
* Added translation using Weblate (Telugu) (6c57874)
* Added translation using Weblate (Turkmen) (25b18f6)
* Added translation using Weblate (Valencian) (88aab98)
2023-01-03 Muhammad
* Translated using Weblate (Urdu) (a6a4a83)
2023-01-04 Hosted Weblate
* Update translation files (2b58f55)
2023-01-03 Weblate
* Added translation using Weblate (Urdu) (45d391d)
* Added translation using Weblate (Ido) (3a0a0ec)
* Added translation using Weblate (Tetum) (3711fc7)
* Added translation using Weblate (Scots) (f84ca20)
* Added translation using Weblate (Franco-Provençal) (38f94b7)
* Added translation using Weblate (Sindhi) (12de5d7)
* Added translation using Weblate (Kabyle) (5ff9f6d)
* Added translation using Weblate (Pampanga) (468206d)
* Added translation using Weblate (Malagasy) (7a50d12)
* Added translation using Weblate (Luxembourgish) (ba6ecef)
* Added translation using Weblate (French (Switzerland)) (ea06124)
* Added translation using Weblate (Tajik) (9ec5096)
* Added translation using Weblate (Lojban) (03c3b2b)
* Added translation using Weblate (Lingala) (bc19bc3)
* Added translation using Weblate (Oromo) (b1110c2)
2023-01-03 Hosted Weblate
* Update translation files (215fc0b)
2023-01-03 Weblate
* Added translation using Weblate (Bemba) (4a39079)
2023-01-02 Guido Berhoerster
* Optimize click package size (86cb11f)
2022-12-30 Guido Berhoerster
* gitlab-ci.yml: Remove fixed clickable version (e4afff3)
2022-12-20 Marius Gripsgard
* Merge branch 'port-to-lomiri-focal' into 'main' (70fb651)
2022-11-08 Guido Berhoerster
* Use custom-built LibreOfficeKit for the click package (a9da06a)
2022-08-23 Guido Berhoerster
* CI: Do not fail builds on warnings and errors (2dd0782)
2022-07-28 Guido Berhoerster
* Update GitLab CI configuration (92b791c)
2022-10-06 Guido Berhoerster
* Update click packaging (2f69b2d)
2022-06-20 Guido Berhoerster
* Update and move Jenkinsfile to debian/ (0045221)
2022-06-17 Guido Berhoerster
* Update debian packaging (7d3b2cf)
2022-10-06 Guido Berhoerster
* Update .pot file (ac8ed22)
* Modernize i18n (22ba2ed)
2022-08-19 Guido Berhoerster
* Remove vendored libreofficekit headers (97274c7)
2022-10-06 Guido Berhoerster
* Do not hardcode the click root path (80c64e3)
2022-06-20 Guido Berhoerster
* Rename Application (1cf23c1)
2022-06-17 Guido Berhoerster
* Port to Lomiri on focal (79a9f9a)
2022-06-20 Guido Berhoerster
* Remove obsolete bzr-builddeb files (1599da0)
* Remove unused snap packaging (3718112)
2022-09-28 Weblate
* Translated by Antoine Mailhot <capitaineam@outlook.com> using
Weblate (French (Canada)) - 98.9% (92 of 93 strings)
(de7c564)
2022-04-25 Weblate
* Translated by creepen123 <eg.ermakov2016@gmail.com> using Weblate
(Russian) - 100.0% (93 of 93 strings) (8c877a9)
2022-03-24 Weblate
* Translated by HEROBRINE7GAMER <tapermeerkat77@gmail.com> using
Weblate (Arabic) - 91.3% (85 of 93 strings) (ca90544)
2022-03-10 Weblate
* Translated by Behzad <behzadasbahi@gmail.com> using Weblate
(Persian) - 100.0% (93 of 93 strings) (c339be3)
2022-02-21 Weblate
* Translated by Ivo Xavier <ivofernandes12@gmail.com> using Weblate
(Portuguese) - 100.0% (93 of 93 strings) (5981127)
2022-02-12 Weblate
* Translated by Герман Семенов (Разработчик)
<wipetmp+german_semenov@gmail.com> using Weblate (Russian)
- 100.0% (93 of 93 strings) (135d216)
2022-02-05 Weblate
* Translated by Lundrin <berenyi.vilmos@tutanota.com> using Weblate
(Hungarian) - 100.0% (93 of 93 strings) (0e5cedc)
2021-11-21 Weblate
* Translated by Adria <adriamartinmor@gmail.com> using Weblate
(Sardinian) - 100.0% (93 of 93 strings) (b11d504)
2021-10-23 Weblate
* Translated by Jakob Fridesjö <jakob.fridesjo@tuta.io> using Weblate
(Swedish) - 100.0% (93 of 93 strings) (7f6927e)
2021-10-14 Weblate
* Translated by Wannaphong Phatthiyaphaibun <wannaphong@yahoo.com>
using Weblate (Thai) - 20.0% (18 of 90 strings) (ca39ef9)
2021-07-26 Weblate
* Translated by Rondy Andersson <rondarius@vivaldi.net> using Weblate
(Swedish) - 69.8% (65 of 93 strings) (7d9c225)
2021-07-24 Weblate
* Translated by anonymous <noreply@weblate.org> using Weblate
(German) - 100.0% (93 of 93 strings) (43dc501)
2021-06-13 Weblate
* Translated by Ito Rimai <ItoRimai@foxmail.com> using Weblate
(Chinese (Simplified)) - 100.0% (93 of 93 strings)
(8e0e05e)
2021-06-06 Weblate
* Translated by Samson <sambelet@yahoo.com> using Weblate (Amharic) -
100.0% (93 of 93 strings) (4aea559)
2021-05-23 Weblate
* Translated by Wannaphong Phatthiyaphaibun <wannaphong@yahoo.com>
using Weblate (Thai) - 17.7% (16 of 90 strings) (887d1ec)
2021-05-22 Weblate
* Translated by Wannaphong Phatthiyaphaibun <wannaphong@yahoo.com>
using Weblate (Thai) - 15.5% (14 of 90 strings) (63a8135)
2021-05-03 Weblate
* Translated by Enceka <enceka@yeah.net> using Weblate (Chinese
(Simplified)) - 100.0% (93 of 93 strings) (e3d8a00)
2021-04-30 Weblate
* Translated by Milan Korecký <milan.korecky@gmail.com> using Weblate
(Czech) - 100.0% (93 of 93 strings) (491c35a)
2021-04-12 Weblate
* Translated by Florian Leeber <flori@bin.org.in> using Weblate
(German) - 100.0% (93 of 93 strings) (1f25fdc)
2021-03-26 Weblate
* Translated by vokaliz <vokaliz@protonmail.com> using Weblate
(Russian) - 100.0% (93 of 93 strings) (6246830)
2021-03-23 Chris Clime
* Merge branch 'really-fix-ods' into 'master' (0ef93b2) (tag:
v2.3.567)
2021-03-22 Rodney Dawes
* Include both harfbuzz-icu and harfbuzz libs, as icu lib is not in
rootfs. (88f150e)
* Fix gitlab CI config. (e0f4fc8)
2021-03-23 Chris Clime
* Update DocumentLockedDialog.qml: - use correct function for the
unlock button - change input type of the text field to
password (dots) (5a498b3)
* Update .gitlab-ci.yml (clickable/ci-16.04-arm64:16.04.4-qt-5.9 ->
clickable/ci-16.04-arm64:16.04.4-qt5.9) (7904483)
2021-03-22 Chris Clime
* Merge branch 'fix-ods' into 'master' (7fa91c7) (tag: v2.3.564)
2021-03-22 Rodney Dawes
* Use the Qt 5.9 pinned clickable images for now. (a2d2c14)
* Don't pull in harfbuzz here. (efc16ba)
2021-03-15 Weblate
* Translated by Josué <j2g2rp@gmail.com> using Weblate (Spanish) -
100.0% (93 of 93 strings) (e173137)
2021-03-14 Weblate
* Translated by Jan Christian Sherdahl <jan@sherdahl.no> using
Weblate (Norwegian Bokmål) - 100.0% (93 of 93 strings)
(54398fe)
2021-03-04 Weblate
* Translated by helabasa <R45XvezA@pm.me> using Weblate (Sinhala) -
7.7% (7 of 90 strings) (493c45e)
2021-02-26 Weblate
* Translated by Darkness Hidden <kmd36rk@gmail.com> using Weblate
(Indonesian) - 100.0% (93 of 93 strings) (f3c10a2)
2021-02-16 Weblate
* Translated by louies0623 <louies0623@gmail.com> using Weblate
(Chinese (Traditional)) - 100.0% (93 of 93 strings)
(7e021c2)
2021-02-12 Weblate
* Translated by RedXXIII <redxxiii@zaclys.net> using Weblate
(Spanish) - 100.0% (93 of 93 strings) (fc6642e)
2021-02-01 Weblate
* Translated by imrufbd <imrufbd@gmail.com> using Weblate (Bengali
(Bangladesh)) - 8.8% (8 of 90 strings) (e5bfc5e)
2021-01-28 Weblate
* Translated by Adam <padamyno@gmail.com> using Weblate (Hungarian) -
100.0% (93 of 93 strings) (e2aad2a)
2021-01-16 Weblate
* Translated by ierihon <idekovets@mail.ru> using Weblate (Russian) -
100.0% (93 of 93 strings) (3a3fa49)
2021-01-08 Weblate
* Translated by Mike <miguel2000@livecom.it> using Weblate (Italian)
- 100.0% (93 of 93 strings) (d2277d7)
2020-12-25 Weblate
* Translated by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
(Hebrew) - 100.0% (90 of 90 strings) (411a133)
2020-12-18 Weblate
* Translated by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
(Hebrew) - 100.0% (90 of 90 strings) (3e3a094)
2020-12-09 Weblate
* Translated by Zmicer <nashtlumach@gmail.com> using Weblate
(Belarusian) - 100.0% (90 of 90 strings) (87df32e)
2020-12-05 Weblate
* Translated by Zmicer <nashtlumach@gmail.com> using Weblate
(Belarusian) - 2.2% (2 of 90 strings) (e9848cd)
2020-12-05 Chris Clime
* fix page selection popup call (b07e5e0)
2020-11-23 Weblate
* Translated by Jiri Grönroos <jiri.gronroos@iki.fi> using Weblate
(Finnish) - 100.0% (93 of 93 strings) (5e278e1)
2020-11-15 Weblate
* Translated by abidin <abidin24@tutanota.com> using Weblate (Arabic)
- 90.3% (84 of 93 strings) (34dc9c5)
2020-11-13 Weblate
* Translated by abidin <abidin24@tutanota.com> using Weblate (Arabic)
- 90.3% (84 of 93 strings) (7bc596d)
2020-11-06 Weblate
* Translated by abidin <abidin24@tutanota.com> using Weblate (Arabic)
- 90.3% (84 of 93 strings) (7f12c8b)
2020-10-26 Heimen Stoffels
* Translated by Heimen Stoffels <vistausss@outlook.com> using Weblate
(Dutch) - 100.0% (93 of 93 strings) (bc95a0b)
2020-10-21 Chris Clime
* Merge branch 'xenial_-_qt-5-12' into 'master' (cb434e7) (tag:
v2.3.541)
2020-10-09 Stefano Verzegnassi
* [PdfViewer-NEW] Added copyright headers (6031a5c)
2020-10-05 Rodney Dawes
* Build without the 5.12 repo. (4cdf093)
* Try to import the rewrittend poppler plug-in from Stefano (fa553ee)
* Fix typo (8955092)
* try with a newer cmake (cf7c5ad)
* braces for variable in clickable json (0efea46)
* Attempt to build against qt 5.12 for testing (e57a940)
2020-09-16 Chris Clime
* Merge branch 'fix-new-qt' into 'master' (e59d979) (tag: v2.3.540)
2020-09-15 Marius Gripsgard
* Don't set leadingActionBar.actions (qlist) to null, as this breaks
qt 5.12++ (4d19e5e)
2020-09-05 Rüdiger Kupper
* Translated by Rüdiger Kupper <ruediger.kupper+launchpad@gmail.com>
using Weblate (German) - 100.0% (93 of 93 strings)
(7512c61)
2020-09-05 tamer dab
* Translated by tamer dab <dabsantamer@yahoo.com> using Weblate
(Hebrew) - 100.0% (90 of 90 strings) (1909010)
* Translated by tamer dab <dabsantamer@yahoo.com> using Weblate
(Hebrew) - 98.8% (89 of 90 strings) (c9323c4)
2020-09-04 tamer dab
* Translated by tamer dab <dabsantamer@yahoo.com> using Weblate
(Arabic) - 90.3% (84 of 93 strings) (f64e550)
* Translated by tamer dab <dabsantamer@yahoo.com> using Weblate
(Hebrew) - 75.5% (68 of 90 strings) (acc1080)
* Added translation using Weblate (Hebrew) (666c160)
2020-08-31 Florian Leeber
* Translated by Florian Leeber <flori@bin.org.in> using Weblate
(German) - 100.0% (93 of 93 strings) (b67d6d1)
2020-08-25 Arvid Brodin
* Translated by Arvid Brodin <arvidb@fripost.org> using Weblate
(Swedish) - 68.8% (64 of 93 strings) (c7f0341)
2020-08-17 Anne Onyme
* Translated by Anne Onyme <anneonyme017@netcourrier.com> using
Weblate (French) - 100.0% (93 of 93 strings) (c4f2c98)
2020-08-15 Efstathios Iosifidis
* Translated by Efstathios Iosifidis <iefstathios@gmail.com> using
Weblate (Greek) - 100.0% (93 of 93 strings) (86a3166)
2020-08-09 Rüdiger Kupper
* Translated by Rüdiger Kupper <ruediger.kupper+launchpad@gmail.com>
using Weblate (German) - 100.0% (93 of 93 strings)
(4ef6bd5)
* Translated by Rüdiger Kupper <ruediger.kupper+launchpad@gmail.com>
using Weblate (German) - 100.0% (93 of 93 strings)
(8c4d043)
2020-08-08 satriocode
* Translated by satriocode <satrioismail52@gmail.com> using Weblate
(Indonesian) - 100.0% (93 of 93 strings) (91b1a38)
2020-08-03 Chris Clime
* Merge branch 'config-updates' into 'master' (b8393bd)
2020-08-02 Brian Douglass
* Updated gitlab config (6aeea49)
2020-07-31 Young Kim
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
18.2% (17 of 93 strings) (f08e60d)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
17.2% (16 of 93 strings) (e5e46ba)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
16.1% (15 of 93 strings) (a1a573e)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
15.0% (14 of 93 strings) (d111da5)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
13.9% (13 of 93 strings) (e0836b3)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
12.9% (12 of 93 strings) (d1d0d5f)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
11.8% (11 of 93 strings) (440204e)
2020-07-30 Young Kim
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
10.7% (10 of 93 strings) (2b9320a)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
9.6% (9 of 93 strings) (11f42df)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
7.5% (7 of 93 strings) (2c5eb1a)
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
4.3% (4 of 93 strings) (61e1fc8)
2020-07-29 Young Kim
* Translated by Young Kim <rsyh93@gmail.com> using Weblate (Korean) -
2.1% (2 of 93 strings) (be57ef5)
2020-07-22 Anne Onyme
* Translated by Anne Onyme <anneonyme017@netcourrier.com> using
Weblate (French) - 100.0% (93 of 93 strings) (4e4f35e)
2020-07-22 Max Libre
* Translated by Max Libre <libremax@protonmail.com> using Weblate
(French) - 100.0% (93 of 93 strings) (96032ad)
* Translated by Max Libre <libremax@protonmail.com> using Weblate
(French) - 100.0% (93 of 93 strings) (9b08605)
2020-07-19 Chris Clime
* Revert "Update .gitlab-ci.yml (remove --arch arm64)" (e6ad21a)
* Update .gitlab-ci.yml (remove --arch arm64) (b436da7)
* add dependency "libxslt1.1" to docviewer-libs.json (all
architectures) (56d6ba3)
* Update clickable.json (71394e9)
2020-07-17 Anne Onyme
* Translated using Weblate (French) (3a4680f)
2020-07-07 Heimen Stoffels
* Translated using Weblate (Dutch) (c009aba)
2020-07-07 Max Libre
* Translated using Weblate (French) (86ce6d1)
2020-07-05 Heimen Stoffels
* Translated using Weblate (Dutch) (e89cb41)
2020-07-03 Heimen Stoffels
* Translated using Weblate (Dutch) (f3ef1cc)
2020-07-03 Stoian Minaiev
* Translated using Weblate (Ukrainian) (4045d95)
2020-06-30 PPNplus
* Translated using Weblate (Thai) (1d758f0)
* Added translation using Weblate (Thai) (7f16ac8)
2020-06-16 Milan Korecký
* Translated using Weblate (Czech) (5bdd69e)
2020-05-22 demode-root
* Translated using Weblate (Czech) (bde18b2)
2020-05-18 Pavel Borecki
* Translated using Weblate (Czech) (0468c49)
2020-04-22 Adrià
* Translated using Weblate (Sardinian) (f10bd30)
2020-04-09 Neutrum N
* Translated using Weblate (Galician) (c3ab437)
2020-04-06 Neutrum N
* Translated using Weblate (Galician) (7644175)
2020-03-31 Neutrum N
* Translated using Weblate (Galician) (05a9991)
2020-03-31 Pavel Borecki
* Translated using Weblate (Czech) (cc2e656)
2020-03-15 Mohamed Sayed
* Translated using Weblate (Arabic) (b5fa236)
2020-03-11 Ryan Argente
* Translated using Weblate (French (Canada)) (95e1262)
2020-03-06 Weblate
* Merge branch 'origin/master' into Weblate. (4488628)
2020-03-06 Chris Clime
* Revert "Merge branch 'deletedialog' into 'master'" (f721e88)
2020-03-06 Neutrum N
* Translated using Weblate (Galician) (4a65bea)
2020-03-05 Neutrum N
* Translated using Weblate (Galician) (30e05a9)
2020-03-02 Pavel Borecki
* Translated using Weblate (Czech) (d6f1da5)
2020-02-28 Pavel Borecki
* Translated using Weblate (Czech) (82b455d)
2020-02-26 Ryan Argente
* Translated using Weblate (French (Canada)) (3bd4997)
2020-02-17 Riccardo Riccio
* Translated using Weblate (Slovenian) (008fb11)
2020-02-09 Oi Suomi On!
* Translated using Weblate (Finnish) (41e71ac)
2020-02-10 HSN80
* Translated using Weblate (Persian) (6c5917d)
2020-02-09 Rodrigo Benedito
* Translated using Weblate (Portuguese (Brazil)) (d4021f4)
2020-02-01 Jean Joubert
* Translated using Weblate (Afrikaans) (f4ee0fa)
2020-01-23 louies0623
* Translated using Weblate (Chinese (Traditional)) (31a93f0)
2020-01-19 Weblate
* Merge branch 'origin/master' into Weblate. (700f5ef)
2019-12-20 M.Sugahara
* Translated using Weblate (Japanese) (959e135)
2019-12-27 Moo
* Translated using Weblate (Lithuanian) (c218b7e)
2019-12-12 Sami Törmänen
* Translated using Weblate (Finnish) (c1b9bc5)
2020-01-10 Chris Clime
* Merge branch 'splash' into 'master' (4677e7a)
* Merge branch 'deletedialog' into 'master' (f0ed91c)
2020-01-10 Daniel Frost
* Deletedialog (cb762f9)
2020-01-07 Danfro
* fix #49 by adding some color to splash screen background (2a09d15)
2019-12-22 Chris Clime
* only publish with changelog for one architecture (31a29ae)
2019-12-21 Chris Clime
* version 2.3 (56c7e60) (tag: v2.3.472)
* version 2.3 - Fix #40 "Plain Text file: No Visible Text When Using
System Suru Dark Theme" - add splash screen - first
release that includes arm64 architecture - updated
translations, thank you translators ! (bd074be) (tag:
v2.3)
2019-12-17 Chris Clime
* Merge branch 'patch-1' into 'master' (36cf1b2)
2019-12-17 Christian Pauly
* Build and publish all architectures (79aa42d)
2019-11-25 Sam Zhang
* Translated using Weblate (Chinese (Simplified)) (df780b0)
2019-11-21 Alberto
* Translated using Weblate (Galician) (f0010c4)
2019-11-18 Anne Onyme
* Translated using Weblate (French) (4c7db09)
2019-11-14 Chris Clime
* Merge branch 'FixDarkMode' into 'master' (16e57eb)
2019-11-14 Joan CiberSheep
* Fix text not visible with SuruDark (e207fa3)
2019-11-02 Ege Öz
* Translated using Weblate (Turkish) (9ec8d00)
2019-10-28 enolp
* Translated using Weblate (Asturian) (5ad02ac)
2019-10-27 enolp
* Translated using Weblate (Asturian) (27e20bc)
2019-10-12 Weblate
* Merge branch 'origin/master' into Weblate. (d9a8834)
2019-10-12 Chris Clime
* extend get-click-deps tool with arm64 (c48c11b)
2019-10-12 Weblate
* Merge branch 'origin/master' into Weblate. (fcc1a3f)
2019-10-12 Chris Clime
* correct get_deps.sh (363fa15)
2019-10-12 Weblate
* Merge branch 'origin/master' into Weblate. (a918c22)
2019-10-12 Chris Clime
* adapt clickable.json / get_deps.sh to support armhf and arm64
(c433cfe)
2019-10-12 Weblate
* Merge branch 'origin/master' into Weblate. (51a3b72)
2019-10-12 Chris Clime
* add arm64 libs (9a77b06)
2019-10-12 Weblate
* Merge branch 'origin/master' into Weblate. (a2ed777)
2019-10-12 Chris Clime
* Merge branch 'arm64' into 'master' (4b6b5b8)
2019-10-11 Marius Gripsgard
* Build for arm64 (c4094f9)
2019-10-06 Anne Onyme
* Translated using Weblate (French) (533523c)
2019-10-04 Sami Törmänen
* Translated using Weblate (Finnish) (36f372a)
2019-10-03 Sander
* Translated using Weblate (Dutch) (b13d3b0)
2019-09-15 Chris Clime
* Merge branch 'update-gitlab-ci' into 'master' (380f6e6)
2019-09-09 advocatux
* Translated using Weblate (Spanish) (d17a1a5)
2019-09-09 Brian Douglass
* Update gitlab ci for clickable v6 (39fe5b7)
2019-08-31 Moo
* Translated using Weblate (Lithuanian) (bc222b4)
2019-08-30 Jiri Grönroos
* Translated using Weblate (Finnish) (fc1b6d7)
2019-08-10 Moo
* Translated using Weblate (Lithuanian) (226556d)
2019-08-04 Joan CiberSheep
* Translated using Weblate (Catalan) (b387bad)
2019-07-31 Moo
* Translated using Weblate (Lithuanian) (927d74a)
* Added translation using Weblate (Lithuanian) (3b0f072)
2019-07-15 Yasser Lotfy
* Translated using Weblate (Arabic) (8645c1e)
2019-07-05 Aitzol Berasategi
* Translated using Weblate (Basque) (af98691)
2019-07-02 Moshe Lazar
* Translated using Weblate (Russian) (39d14b9)
2019-06-26 Tom Dom
* Translated using Weblate (Dutch) (a1cca7d)
2019-06-26 Samson
* Translated using Weblate (Amharic) (033ab58)
2019-06-22 Samson
* Translated using Weblate (Amharic) (ad8bd59)
2019-06-02 Ari Börde Kröyer
* Translated using Weblate (Norwegian Bokmål) (ad9bcf9)
2019-05-08 Ivo Xavier
* Translated using Weblate (Portuguese) (95c75d5)
2019-05-08 louies0623
* Translated using Weblate (Chinese (Traditional)) (4fa185a)
* Translated using Weblate (Chinese (Hong Kong)) (4fdc4f1)
2019-05-07 Chris Clime
* Merge branch 'SplashScreen' into 'master' (1ffb624)
2019-05-05 Aurelio Cilia
* Translated using Weblate (Italian) (9ac2891)
2019-05-01 louies0623
* Translated using Weblate (Chinese (Traditional)) (a336774)
2019-04-29 Joan CiberSheep
* Translated using Weblate (Catalan) (6400c68)
2019-05-03 Weblate
* Merge branch 'master' of gitlab.com:/ubports/app-dev/docviewer-app
(5bb4825)
2019-04-27 Jiri Grönroos
* Translated using Weblate (Finnish) (46d56ed)
2019-04-26 Chris Clime
* Merge branch 'update-maintainer' into 'master' (4ffc1ef)
2019-04-25 Vinícius F
* Translated using Weblate (Portuguese (Brazil)) (c8a7b8e)
2019-04-25 Anne Onyme
* Translated using Weblate (French) (cef38bc)
2019-04-25 Brian Douglass
* Updated maintainer to UBports (51ab67c)
2019-04-23 Anne Onyme
* Translated using Weblate (French) (95da4b1)
2019-04-03 Tom Dom
* Translated using Weblate (Dutch) (48abb8a)
2019-04-12 Aashrut
* Added translation using Weblate (Gujarati) (d0da0d1)
2019-04-08 Joan CiberSheep
* Add splash screen (937befd)
2019-03-27 Ettore Atalan
* Translated using Weblate (German) (a8683d0)
2019-03-26 Tom Dom
* Translated using Weblate (Dutch) (0cd3ff6)
2019-03-12 Anne Onyme
* Translated using Weblate (French) (aed19e8)
2019-03-12 Milan Korecký
* Translated using Weblate (Czech) (6ebe8bf)
2019-03-08 Brian Douglass
* Updated gitlab ci to use commit messages for the changelog
(9be9b46)
2019-03-07 Weblate
* Merge branch 'master' of gitlab.com:/ubports/app-dev/docviewer-app
(08a4fd7)
2019-02-09 Heimen Stoffels
* Translated using Weblate (Dutch) (6796383)
2019-02-19 Chris Clime
* Update .gitlab-ci.yml (add publish for tags) (e6ea596) (tag:
v2.2.419)
* Merge branch xenial (83f0796)
* split "dependencies" to "dependencies_build" (curl) and
"dependencies_target" (other dependencies) (5a48680)
* Add .gitlab-ci.yml (e63537b)
2019-02-12 Brian Douglass
* Merge branch 'xenial' into 'master' (7c16431)
2019-02-07 Chris Clime
* "sdk" flag is no longer supported in clickable.json (16f39a4) (tag:
v2.2.414)
* Merge branch 'master' into 'xenial' (8c8a63a)
2019-01-21 louies0623
* Translated using Weblate (Japanese) (258da58)
2019-01-25 Anastopoulos Theocharis
* Translated using Weblate (Greek) (343545e)
2019-01-21 louies0623
* Added translation using Weblate (Korean) (961e9a9)
2019-01-03 Ennio Lavagnini
* Translated using Weblate (Italian) (c26b0ca)
2019-01-01 Jaume Angrill
* Translated using Weblate (Catalan) (4c8fb34)
2018-12-17 Rondy Andersson
* Translated using Weblate (Swedish) (662f7cb)
2018-12-20 M.Sugahara
* Translated using Weblate (Japanese) (e167998)
2018-12-16 Max Libre
* Translated using Weblate (French) (d26302c)
2018-12-19 Hussain Hashem Aljafri
* Translated using Weblate (Arabic) (5c533ce)
2018-11-26 Florian Leeber
* Merge pull request #41 from
ubports-weblate/weblate-ubports-docviewer-app (d4079d0)
2018-11-20 M.Sugahara
* Translated using Weblate (Japanese) (f561b8b)
2018-11-22 Louies
* Translated using Weblate (Chinese (Hong Kong)) (5e0f264)
* Added translation using Weblate (Chinese (Hong Kong)) (94b1bd5)
2018-11-18 Weblate
* Merge branch 'origin/master' into Weblate (aeb87d6)
2018-11-14 M.Sugahara
* Translated using Weblate (Japanese) (e1658d4)
2018-11-16 Milan Korecký
* Translated using Weblate (Czech) (93f83d3)
2018-11-13 Louies
* Translated using Weblate (Chinese (Traditional)) (9fe1cb7)
2018-11-11 Samson
* Translated using Weblate (Amharic) (ae442ab)
2018-11-18 Florian Leeber
* Merge pull request #40 from
ubports-weblate/weblate-ubports-docviewer-app (b208dc7)
2018-11-11 Weblate
* Merge branch 'origin/master' into Weblate (9a4c52e)
2018-11-05 M.Sugahara
* Translated using Weblate (Japanese) (428ccfc)
2018-11-11 Florian Leeber
* Merge pull request #39 from
ubports-weblate/weblate-ubports-docviewer-app (dd43708)
2018-11-08 Aurelio Cilia
* Translated using Weblate (Italian) (d1bc5d2)
2018-11-05 Daniel Frost
* Translated using Weblate (German) (6a2249e)
2018-11-05 Milan Korecký
* Translated using Weblate (Czech) (433acdc)
2018-11-05 Louies
* Translated using Weblate (Chinese (Traditional)) (e9b7e85)
2018-11-04 Weblate
* Merge branch 'origin/master' into Weblate (c9313b2)
2018-11-03 xqqy
* Translated using Weblate (Chinese (Simplified)) (6c38509)
2018-11-04 Florian Leeber
* Merge pull request #38 from
ubports-weblate/weblate-ubports-docviewer-app (919830a)
2018-10-28 advocatux
* Translated using Weblate (Spanish) (1d6ff4b)
2018-10-31 ierihon
* Translated using Weblate (Russian) (74f77e2)
2018-10-28 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (c9c16ce)
2018-10-31 Mike
* Translated using Weblate (Italian) (95eaaf6)
2018-11-02 honigwald
* Translated using Weblate (German) (112d738)
2018-10-31 Anne Onyme
* Translated using Weblate (French) (121f673)
2018-10-29 Louies
* Translated using Weblate (Chinese (Traditional)) (81846df)
2018-10-28 Joan CiberSheep
* Translated using Weblate (Catalan) (75723c2)
2018-10-29 Gianmarco
* Translated using Weblate (Italiano) (642a9db)
2018-10-28 Weblate
* Merge branch 'origin/master' into Weblate (06dbbca)
2018-10-28 Sergio Reyes
* Translated using Weblate (Spanish) (152d6df)
2018-10-28 Ivo Xavier
* Translated using Weblate (Portuguese) (b3fe843)
2018-10-28 Florian Leeber
* Translated using Weblate (German) (9200a48)
2018-10-28 Milan Korecký
* Translated using Weblate (Czech) (7f1c34b)
2018-10-28 Florian Leeber
* Merge pull request #37 from
ubports-weblate/weblate-ubports-docviewer-app (2d901f5)
2018-10-25 P.-H. Lin
* Translated using Weblate (Chinese (Traditional)) (cfcd1cb)
2018-10-22 Louies
* Translated using Weblate (Chinese (Traditional)) (a61271f)
2018-10-21 Florian Leeber
* Merge pull request #36 from
ubports-weblate/weblate-ubports-docviewer-app (2231433)
2018-10-17 M.Sugahara
* Translated using Weblate (Japanese) (c7d02c6)
2018-10-14 Florian Leeber
* Merge pull request #34 from
ubports-weblate/weblate-ubports-docviewer-app (8bde48b)
2018-09-02 Rondy Andersson
* Translated using Weblate (Schwedisch) (f27c3ea)
2018-09-04 ArashiHino
* Translated using Weblate (Japanisch) (b0714ac)
2018-10-01 Ben van Hartingsveldt
* Translated using Weblate (Niederländisch) (3623912)
2018-10-05 Milan Korecký
* Translated using Weblate (Tschechisch) (01e5cfe)
* Translated using Weblate (Czech) (9989d94)
2018-10-01 Ben van Hartingsveldt
* Translated using Weblate (Dutch) (b090dd7)
2018-09-15 Tom Rausner
* Translated using Weblate (Danish) (67b30ad)
2018-09-02 Florian Leeber
* Merge pull request #33 from
ubports-weblate/weblate-ubports-docviewer-app (35b4ee7)
2018-09-02 Weblate
* Merge remote-tracking branch 'origin/master' (e945311)
2018-09-01 ubports-weblate
* Update from Weblate. (#32) (faadce3)
2018-08-19 ArashiHino
* Translated using Weblate (Japanese) (2f17032)
2018-08-31 Simone
* Translated using Weblate (Italian) (b9374db)
2018-08-19 Anne Onyme
* Translated using Weblate (French) (34dd311)
2018-08-26 Øjvind Fritjof Arnfred
* Translated using Weblate (Danish) (dbe3f0a)
2018-08-19 Tom Rausner
* Translated using Weblate (Danish) (e3eca50)
2018-08-20 Florian Leeber
* Merge branch 'xenial' of git@github.com:ubports/docviewer-app.git
into xenial (76015f6)
* POT file update (9d6567b)
* Merge pull request #31 from ubports/xenial_-_colorspacetwist
(53a4bf8)
* Trying to fix #30 (f84ec6e)
2018-08-19 Anne Onyme
* Translated using Weblate (French) (8b6f5a3)
* Translated using Weblate (French) (ec9b3d2)
* Translated using Weblate (French) (413ff7f)
* Translated using Weblate (French) (713f6c4)
* Translated using Weblate (French) (f2b2aad)
2018-08-19 Tom Rausner
* Translated using Weblate (Danish) (09b06ee)
* Translated using Weblate (Danish) (6fbb2ab)
2018-08-19 ubports-weblate
* Update from Weblate. (#29) (95684c5)
2018-08-12 Chris Clime
* Xenial initial compatibility (#27) (4702d22)
2018-08-12 Florian Leeber
* Merge pull request #28 from
ubports-weblate/weblate-ubports-docviewer-app (fb15867)
2018-07-29 Tom Rausner
* Translated using Weblate (Danish) (7196f3a)
2018-07-31 Florian Leeber
* removing whitespace, adding newline. Sigh. (ebcee4e)
2018-07-31 Chris Clime
* same PR for the xenial branch (#25) (7559689)
2018-07-31 Florian Leeber
* Adding whitespace (6f12f83)
* Update changelog for our CI (555d835)
* Syncing with master to enable CI builds (#26) (e2409da)
2018-07-19 Florian Leeber
* Created Jenkinsfile (08a2760)
2018-07-09 ubports-weblate
* Update from Weblate. (#23) (b4cb164)
2018-06-13 Allan Nordhøy
* Spelling: Unknown document type, ellipsis (#21) (5493234)
2018-04-29 ubports-weblate
* Update from Weblate. (#20) (052741e)
2018-03-18 ubports-weblate
* Translated using Weblate (Basque) (#19) (089a547)
2018-02-25 ubports-weblate
* Update from Weblate. (#18) (5560a4f)
2018-02-18 Florian Leeber
* Merge pull request #17 from
ubports-weblate/weblate-ubports-docviewer-app (04d71b8)
2018-02-18 Weblate
* Repair commit (0a46319)
2018-02-08 Florian Leeber
* Merge pull request #16 from
ubports-weblate/weblate-ubports-docviewer-app (4b40f33)
2018-02-08 Weblate
* Merge remote-tracking branch 'origin/master' (9fa038d)
2018-01-18 Noock
* Translated using Weblate (Portuguese (Brazil)) (3ff0d04)
2018-02-05 ubports_arabic
* Translated using Weblate (Arabic) (5869ab6)
2018-01-18 Noock
* Translated using Weblate (Portuguese (Brazil)) (7fdbfd9)
2018-01-07 Florian Leeber
* Merge pull request #15 from
ubports-weblate/weblate-ubports-docviewer-app (c3ff5a4)
2018-01-03 Johannes Ledermüller
* Translated using Weblate (German) (9033c3b)
2017-12-23 Samson
* Translated using Weblate (Amharic) (b210578)
2017-12-03 Florian Leeber
* Merge pull request #14 from
ubports-weblate/weblate-ubports-docviewer-app (db1715f)
2017-12-03 Weblate
* Merge remote-tracking branch 'origin/master' (ec08b51)
2017-11-26 advocatux
* Translated using Weblate (Spanish) (ab5397a)
2017-11-30 Joeke de Graaf
* Translated using Weblate (Dutch) (28ffc24)
2017-11-26 Arda Canbolat
* Translated using Weblate (Turkish) (5a6ac08)
2017-11-26 Florian Leeber
* Merge pull request #13 from
ubports-weblate/weblate-ubports-docviewer-app (6af85f8)
2017-11-26 Weblate
* Merge remote-tracking branch 'origin/master' (204282e)
2017-11-26 Arda Canbolat
* Translated using Weblate (Turkish) (ff5254a)
2017-11-22 Alexey Balmashnov
* Translated using Weblate (Russian) (01459f9)
2017-11-25 Mevlüt Erdem Güven
* Translated using Weblate (Turkish) (3435e31)
2017-11-22 Pablo Foche
* Translated using Weblate (Esperanto) (1cef21d)
2017-11-20 Alexey Balmashnov
* Translated using Weblate (Russian) (a21712a)
2017-11-19 Florian Leeber
* Merge pull request #12 from
ubports-weblate/weblate-ubports-docviewer-app (ad2f24f)
2017-11-19 Weblate
* Merge remote-tracking branch 'origin/master' (a3abeb0)
2017-11-13 Peter Nerlich
* Translated using Weblate (German) (7e9d2b5)
2017-11-15 Henrik Holm
* Translated using Weblate (Danish) (7151d38)
2017-11-12 Florian Leeber
* Merge pull request #11 from
ubports-weblate/weblate-ubports-docviewer-app (8eb3862)
2017-11-12 Weblate
* Merge remote-tracking branch 'origin/master' (76668fb)
2017-11-09 Brînzariu Cristian
* Translated using Weblate (Romanian) (bc639f1)
2017-11-05 Florian Leeber
* Merge pull request #10 from
ubports-weblate/weblate-ubports-docviewer-app (0171254)
2017-11-05 Weblate
* Merge remote-tracking branch 'origin/master' (ca69b3f)
2017-11-04 Brînzariu Cristian
* Translated using Weblate (Romanian) (d2dd7b7)
2017-11-04 Mutse Young
* Translated using Weblate (Chinese (Simplified)) (f21a2a3)
2017-11-01 Terence Sambo
* Translated using Weblate (Dutch) (2166aa8)
2017-10-29 Aitzol Berasategi
* Translated using Weblate (Basque) (2ad8157)
2017-10-29 Florian Leeber
* Merge pull request #9 from
ubports-weblate/weblate-ubports-docviewer-app (14d44e6)
2017-10-29 Weblate
* Merge remote-tracking branch 'origin/master' (d65d8a4)
2017-10-24 Mutse Young
* Translated using Weblate (Chinese (Simplified)) (64d0e87)
2017-10-24 Florian Leeber
* Merge pull request #8 from
ubports-weblate/weblate-ubports-docviewer-app (fff6ddf)
2017-10-22 Weblate
* Merge remote-tracking branch 'origin/master' (550502a)
2017-10-21 Mutse Young
* Translated using Weblate (Chinese (Simplified)) (b27b2d1)
2017-10-15 Ivan Semkin
* Translated using Weblate (Russian) (fac90a5)
2017-10-18 Ivo Xavier
* Translated using Weblate (Portuguese) (5ccd924)
2017-10-10 Daniel Frańczak
* Translated using Weblate (Polish) (7a53a2b)
2017-10-15 Florian Leeber
* Merge pull request #7 from
ubports-weblate/weblate-ubports-docviewer-app (c1fd135)
2017-10-15 Weblate
* Merge remote-tracking branch 'origin/master' (fff5675)
2017-10-10 Daniel Frańczak
* Translated using Weblate (Polish) (555518d)
2017-10-11 Jiri Grönroos
* Translated using Weblate (Finnish) (36b1b27)
2017-10-08 Mutse Young
* Translated using Weblate (Chinese (Simplified)) (b136f62)
2017-10-09 Jean Joubert
* Translated using Weblate (Afrikaans) (8b76228)
2017-10-10 RedXXIII
* Translated using Weblate (French) (3b9f409)
2017-10-08 Florian Leeber
* Merge pull request #6 from
ubports-weblate/weblate-ubports-docviewer-app (a7755a9)
2017-10-08 Weblate
* Merge remote-tracking branch 'origin/master' (919e5de)
2017-10-07 Jean Joubert
* Translated using Weblate (Afrikaans) (ae2ab26)
2017-09-30 Francisco Molinero
* Translated using Weblate (Spanish) (1a8ab88)
2017-09-30 Peter Valachovič
* Translated using Weblate (Slovak) (986f61f)
2017-10-05 Jonasz Potoniec
* Translated using Weblate (Polish) (eca1408)
2017-10-06 Twinkybot
* Translated using Weblate (German) (227d9f5)
2017-10-05 RedXXIII
* Translated using Weblate (French) (21a1d90)
2017-10-01 Henrik Holm
* Translated using Weblate (Danish) (7537e85)
2017-10-02 Milan Korecký
* Translated using Weblate (Czech) (a87bc01)
2017-09-30 Stefano Melchior
* Translated using Weblate (Catalan) (3c0fabb)
2017-10-07 Jean Joubert
* Added translation using Weblate (Afrikaans) (e338a2a)
2017-10-05 Florian Leeber
* Translated using Weblate (German) (01e124b)
2017-10-05 Twinkybot
* Translated using Weblate (German) (cd88327)
2017-10-01 Florian Leeber
* Translated using Weblate (German) (c434fc0)
2017-10-01 Milan Korecký
* Translated using Weblate (Czech) (e0db351)
2017-10-01 Florian Leeber
* Merge pull request #5 from
ubports-weblate/weblate-ubports-docviewer-app (6d39c77)
2017-09-28 Ivo Xavier
* Translated using Weblate (Portuguese) (f175498)
2017-09-27 Daniel Frańczak
* Translated using Weblate (Polish) (52d7e70)
2017-09-28 Stefano Melchior
* Translated using Weblate (Italian) (e344b30)
2017-09-28 Philipp Leibelt
* Translated using Weblate (German) (a19a462)
2017-09-28 Henrik Holm
* Translated using Weblate (Danish) (7336ba1)
2017-08-01 Florian Leeber
* Merge pull request #3 from sverzegnassi/master (d20c36c)
2017-07-27 Stefano Verzegnassi
* [DocviewerUtils] Create destination folder if it doesn't exist
(bdbee8e)
2017-07-20 Stefano Verzegnassi
* adding .gitignore file for real. (25303d4)
* added .gitignore file (117a2c6)
* Fix error missing stdc++ (4703fd1)
* Updated maintainer field in manifest.json (62a8eb2)
* Support for git versioning (b27c4c4)
2017-06-29 Stefano Verzegnassi
* Save ContentHub imported files in a subfolder (45a986b)
2017-04-05 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (aee5dbf)
2017-03-23 Renato Araujo Oliveira Filho
* [snap] Connect with mir-libs content share. (ada80be)
* Use correct mir slot name. (f79fc3d)
* [snap] Connect with mir-libs content share. (6799be8)
2017-02-23 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (34ac3da)
2017-02-15 Renato Araujo Oliveira Filho
* [snap] Added "mir" interface on plug list (3a66e0e)
2017-02-08 Renato Araujo Oliveira Filho
* [snap] Added "mir" interface on plug list (f73e78b)
2016-12-17 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (82628e0)
2016-12-16 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (9972fcb)
2016-12-12 Renato Araujo Oliveira Filho
* Added snap metadata. (fb93da1)
* Fix icon path. (e79657c)
* Added snap metadata. (a5a3cdc)
2016-12-09 Renato Araujo Oliveira Filho
* Create snapcract package. (b30774f)
* Avoid build problems if qmake fail to report the correct QML_DIR.
(b96dddc)
* Filter files packed into the snap. (e84e947)
* Create snapcract package. (3b2c437)
2016-11-30 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a76f8d1)
2016-09-29 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (35414e2)
2016-09-21 Stefano Verzegnassi
* Do not initialize content-hub asynchronously, otherwise a transfer
can not be finalized if the app is not already launched.
This bug likely exists since months, but after the recent
changes in content-hub it seems easier to trigger.
Fixes:
https://bugs.launchpad.net/bugs/1588485. (3b3aff6)
2016-09-13 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (366dd92)
2016-09-12 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (0529e72)
2016-09-07 Tim Peeters
* Workaround for bug 1577277.
Fixes:
https://bugs.launchpad.net/bugs/1577277. (5600f29)
2016-08-31 Tim Peeters
* Workaround for bug 1577277 (90a9850)
2016-08-31 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (02aa61a)
2016-08-29 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (0bc8545)
2016-06-29 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (da2b438)
2016-06-08 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b28f6f9)
2016-06-07 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (f857022)
2016-05-18 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (40c9cb8)
2016-05-17 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (aa4c5e5)
2016-05-15 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b5b3287)
2016-05-09 Stefano Verzegnassi
* Do not init content-hub asynchronously, otherwise a transfer can
not be finalized if the app is not already launched. This
bug likely exists since months, but after the recent
changes in content-hub it seems easier to trigger.
(2b874da)
2016-05-07 Stefano Verzegnassi
* PdfViewer - Presentation mode: use a single-tap gesture (instead of
double tap) to show/hide header.
Fixes:
https://bugs.launchpad.net/bugs/1545142. (46ed38f)
2016-04-28 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (71a88aa)
2016-04-27 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (31dbf02)
2016-04-26 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (849ced2)
2016-04-25 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (989a403)
2016-04-20 Stefano Verzegnassi
* Fixed the keyboard input issues in DocumentsPage, caused by the
migration to the new PageHeader component. In particular:
* OSK visible on app start-up; It was possible to type
chars into the searchField (and then filter the document
entries out) even if the searchFiled was not visible; OSK
still visible after the search header was closed (through
the 'Cancel' button).
Fixes:
https://bugs.launchpad.net/bugs/1566899,
https://bugs.launchpad.net/bugs/1566902. (a3b5218)
2016-04-17 Stefano Verzegnassi
* Fixed wrong alignment of the peer picker in SharePage.
Fixes:
https://bugs.launchpad.net/bugs/1566903. (6a00a11)
2016-04-17 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (77dc774)
2016-04-11 Stefano Verzegnassi
* Properly fix keyboard focus of PageHeader(s) (c4054c4)
2016-04-11 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (d07a380)
2016-04-10 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (f3b4f46)
2016-04-07 Stefano Verzegnassi
* PdfViewer - Presentation mode: use a single-tap gesture (instead of
double tap) to show/hide header (7342169)
2016-04-07 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (e6834ad)
2016-04-06 Stefano Verzegnassi
* Fixed wrong alignment of the peer picker in SharePage. (abe5bd1)
* Fixed the keyboard input issues in DocumentsPage, caused by the
migration to the new PageHeader component. In particular:
* OSK visible on app start-up; It was possible to type
chars into the searchField (and then filter the document
entries out) even if the searchFiled was not visible; OSK
still visible after the search header was closed (through
the 'Cancel' button) (a4913d3)
2016-04-05 Stefano Verzegnassi
* Bumped framework to 15.04.4; Fixed broken night mode (i.e. app
background is still white when the mode is enabled.
Updated changelog. (a81410d)
* Bumped framework to 15.04.4; Fixed broken night mode (i.e. app
background is still white when the mode is enabled.
Updated changelog (d986396)
2016-03-31 Stefano Verzegnassi
* Use PageHeader and ScrollView in documents page (a5da3e2)
* Pdf viewer:; Removed 'search' action (unused); Fixed keyboard
hooks in the 'GoTo' dialog; Fixed presentation mode color
palette; Use ScrollView component . (482e57b)
* Updated copyright; Removed usage of deprecated colors (e.g.
UbuntuColors.midAubergine); Align to the latest clock-app
specs (i.e. don't use purple as accent color); Use the
section divider from the latest calendar-app specs; Don't
use DemiBold in PDF ToC; Fixed font color broken after
UITK theming changes in Silo 50 (OTA 10.
ResizeableSidebar: fixed vertical divider margins.
Fixes:
https://bugs.launchpad.net/bugs/1551259. (da72244)
* WORKAROUND: make the lok-viewer header static (avoid
unpredictable binding); Use new PageHeader and ScrollView
components; UI: Show an empty header when loading
LibreOffice. (a70dbfe)
2016-03-30 Stefano Verzegnassi
* Fixed flickable (c7a3483)
* Declare TextualButtonStyle in a separate document; Updated
Ubuntu.Contents to 1.3 (fc6a123)
* Updated comment (c4a9868)
* [TextView] Switch to UITK 1.3 PageHeader component. (3d1da48)
2016-03-30 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (1e7976a)
2016-03-26 Stefano Verzegnassi
* Updated copyright (f13e8b6)
* Updated copyright (bc0013c)
* Updated copyright (6946df1)
* PdfView: removed 'search' action (unused); PdfView: fixed
keyboard hooks for the 'GoTo' dialog; PdfView: fixed
presentation mode color palette (76afa54)
* DocumentPageSearchHeader: use search header style recently
introduced in unity8-dash; DocumentPagePickModeHeader:
added debug output (925656c)
2016-03-23 Stefano Verzegnassi
* Use PageHeader and ScrollView in details page. (a49b60c)
* emit DocumentModel::dataChanged() Sometimes the UI was not notified
about changes in model entries (e.g. file size still
equals to zero after file has been successfully copied).
Fixes: https://bugs.launchpad.net/bugs/1483218. (e9631b8)
2016-03-23 nskaggs
* Create cache folder during cmake copy. (304cc0e)
2016-03-22 Stefano Verzegnassi
* [pdfView] Use ScrollView component (f3950ff)
2016-03-21 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (52fda1f)
2016-03-20 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a16320e)
2016-03-18 Stefano Verzegnassi
* Fixed ScrollView + lok-viewer keyboard handlers; Workaround:
make the lok-viewer header static (avoid unpredictable
binding) (d6200d9)
2016-03-17 Stefano Verzegnassi
* Use new PageHeader; Use new ScrollView; Show an empty header
when loading LibreOffice (37084d7)
2016-03-16 nskaggs
* Restore AP test shell. (e707326)
2016-03-12 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (c62ccfb)
2016-03-11 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a35c294)
2016-03-11 Stefano Verzegnassi
* Minor code style changes. (a1d9f4a)
* [TextView] Switch to UITK 1.3 PageHeader component (74a8351)
2016-03-10 nskaggs
* use make directory (2e7fe4b)
* create cache dir for depends (7325387)
2016-03-10 Stefano Verzegnassi
* emit DocumentModel::dataChanged() Sometimes the UI was not notified
about changes in model entries (e.g. file size still
equals to zero after file has been successfully copied)
(a6d5193)
* typo (i.e. we were pushing the wrong file through content hub)
(2446444)
* Fixed broken content-hub export (i.e. typo - 'rootItem' renamed
as 'pickModeHeader'); Use
theme.palette.selected.backgroundText color when 'Pick'
button is enabled (cdd00ba)
2016-03-09 Stefano Verzegnassi
* Use a 'Label' instead of the SD card icon. Sure, it's a bit ugly
but it has no alignment issue. In any case, we should
replace the current documents view soon. (483557c)
2016-03-09 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (def4f29)
2016-03-08 nskaggs
* move files, delete old test (526609d)
* flake8 (7a8edfa)
* example test working (d2de0d3)
* remove disabled tests, start restoration (c17503b)
2016-03-06 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (33405ca)
2016-03-04 nskaggs
* add jenkins info and mp readme. (590dde2)
* add jenkins info (406c7ed)
2016-03-04 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (1e7952f)
2016-03-03 Stefano Verzegnassi
* Use PageHeader and ScrollView in documents page; Removed width
limitation of units.gu(80) from documents pag.
Refactoring; Minor UI changes to headers (b5b6c86)
* Minor code style changes (bd11d6c)
* Updated copyright (2608f25)
* Use PageHeader and ScrollView in details page (fd4b217)
* Removed usage of deprecated colors (e.g.
UbuntuColors.midAubergine); Align to the latest clock-app
specs (i.e. don't use purple as accent color); Use the
section divider from the latest calendar-app specs; Don't
use DemiBold in PDF ToC (097ac4c)
* Fixed font color broken after UITK theming changes in Silo 50
(OTA 10); ResizeableSidebar: fixed vertical divider
margins (31c7df6)
2016-03-03 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (9812a76)
2016-03-02 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a6b18cd)
2016-03-01 Stefano Verzegnassi
* [lok-viewer] Fixed ZoomSelector visibility on frieza (BQ M10).
Fixes: https://bugs.launchpad.net/bugs/1551254. (d4b1dd8)
2016-03-01 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (0ee43f7)
2016-02-29 Stefano Verzegnassi
* [lok-viewer] Fixed ZoomSelector visibility on frieza (BQ M10)
(e0c1672)
2016-02-26 Stefano Verzegnassi
* Allow to disable .click dependencies caching through a CMake
option.
Fixes: https://bugs.launchpad.net/bugs/1547059.
(332995e)
2016-02-22 Stefano Verzegnassi
* Allow to disable .click dependencies caching through a CMake option
(1a441fd)
2016-02-22 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (2586375)
2016-02-19 Stefano Verzegnassi
* [PdfView] Disable bottom edge gesture if the current document does
not provide any ToC.
Fixes:
https://bugs.launchpad.net/bugs/1546164. (350eb26)
2016-02-18 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (17546de)
2016-02-16 Stefano Verzegnassi
* [PdfView] Disable bottom edge gesture if the current document does
not provide any ToC (ab48b85)
2016-02-13 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (459d462)
2016-02-12 Stefano Verzegnassi
* Release Ubuntu DocViewer 2.1; Updated changelog. (61da3d2)
* Fixed ContentTransferHint being visible during an export.
Fixes:
https://bugs.launchpad.net/bugs/1544149. (27caf12)
* Restore the browse mode when the content transfer is completed or
aborted (4329fc3)
* Fixed DocumentPagePickModeHeader:; Use UCListItem 1.2+ APIs; Use
content-hub properly (70d3a62)
2016-02-12 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (40f0b4c)
2016-02-11 Stefano Verzegnassi
* * Release Ubuntu DocViewer 2.1; Updated changelog (432692d)
* [PdfPresentation] Disable screen saver during a presentation.
(697acee)
2016-02-11 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b914427)
2016-02-10 Stefano Verzegnassi
* Fixed ContentTransferHint being visible during an export (7bbcc1f)
2016-02-10 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (e9feb7a)
2016-02-08 Stefano Verzegnassi
* sync trunk (90d31bb)
* Handle screen saver from the main qml file (76b9b9f)
2016-02-07 Stefano Verzegnassi
* Re-enable screen saver when the app is not focused (0fde2b5)
* Added keep-display-on policy (44e5537)
2016-02-06 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (d2e65ac)
2016-02-05 Stefano Verzegnassi
* Use QQuickAsyncImageProvider in LOPartsImageProvider class. This is
backported on Ubuntu/Ubuntu Touch since Qt 5.4.1-1ubuntu7.
On any other distro/OS it works only with Qt 5.6 (or
later). (848f45e)
* Removed Jenkins debug (184deb3)
* Fixed LOK viewer going full-screen with a .odp/.ppt(x) document.
Both PDF full-screen presentation mode and LOK viewer were
using a 'isPresentation' property with two different
meaning. My fault, sorry! :/ (3463e91)
* Merged trunk + fixed .pot conflict (d715831)
* [PdfPresentation] Go automatically full-screen. (01cb6d0)
2016-02-05 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a58cae6)
2016-02-04 Stefano Verzegnassi
* LibreOffice viewer:; Show the viewer content at the center of the
canvas (excluded spreadsheets); Fixed some bug in
ScalingPinchArea; Added a ScalingMouseArea component, for
handling the double-tap-to-zoom gesture; Set the zoom
behaviour according to the parameters returned by LOZoom
class; Changed background color for the viewer; Fixed
'rebound' behaviour for the LOK Viewer; Added missing
signal emissions in LOZoom.
Fixes:
https://bugs.launchpad.net/bugs/1501424,
https://bugs.launchpad.net/bugs/1515655,
https://bugs.launchpad.net/bugs/1541582. (c2bc768)
2016-02-04 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (d9f657b)
2016-02-03 Stefano Verzegnassi
* Use the parameters from ZoomSettings for setting the behaviour of
the ScalingPinchArea and the ScalingMouseArea; Added
missing signal emissions in LOZoom (016c112)
* Changed background color for LibreOffice viewer; Fixed 'rebound'
behaviour for LOK Viewer (1070fc7)
* Merged trunk (903f6fa)
* Restored "Start presentation" action in the PDF viewer. After the
merging of the branch with the new bottom-edge component,
PdfViewDefaultHeader.qml document has been removed and the
action hasn't been added to the header replacement.
(aa494d0)
* Restored 'Start presentation' action in the PDF viewer - gone lost
after new bottom-edge branch merging (846344b)
2016-02-03 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (0d21cfc)
2016-02-03 Stefano Verzegnassi
* LibreOffice viewer:; Added a sheet selector; Show an empty state
when the current sheet has no content; Fixed
"currentPart" usage, partially broken after a recent
commit in trunk.
Fixes:
https://bugs.launchpad.net/bugs/1537755,
https://bugs.launchpad.net/bugs/1537756. (072a82b)
* Merged trunk + updated .pot (37f9303)
2016-02-02 Stefano Verzegnassi
* Apply new style for empty state everywhere. (802dafd)
* Merged trunk, updated .pot (2522192)
* Merged trunk, updated .pot (d6c86de)
2016-02-02 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (c06f2a5)
2016-01-31 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (69cf453)
2016-01-30 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (7f51d5e)
2016-01-29 Stefano Verzegnassi
* SGTileItem: keep QImage data so that QSG don't fail on repainting.
(2c8dbbd)
* Use UITK 1.3 BottomEdge instead of old PageWithBottomEdge
component.; Updated framework version to 15.04.3.
Fixes:
https://bugs.launchpad.net/bugs/1535320. (152b6f0)
* [PdfPresentation] Hide mouse cursor when there's no on-going mouse
event. (e68e87b)
* typos (b618e43)
* Merged trunk, fixed conflicts. (8be3ed2)
* Merged trunk, fixed conflicts. (ab94ac8)
2016-01-27 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (79e2004)
2016-01-26 Stefano Verzegnassi
* Debugging Jenkins issue with QQuickAsyncImageProvider (7e38bca)
* SGTileItem: keep QImage data so that QSG don't fail on repainting
(52018a9)
* LibreOffice QML plugin:; Provide zoom settings as grouped
properties; Added a minimum and a maximum value for the
zoom factor; Removed any reference to zoomFactor from
SGTileItem; Expose to QML the values for 'fitToWidth',
'fitToHeight' and 'Automatic' zoom. (100725a)
* Reduce the size of that comment. (0cfd224)
2016-01-25 Stefano Verzegnassi
* Merged trunk. Updated translation template. (f22e2e7)
* Apply new style for empty state everywhere (e8b454a)
* removed log (fc15131)
* Removed documentPartChanged() signal (3bfd503)
* New style for the "blank sheet" empty state (98bb7ed)
* Forgot to completely remove documentPart from LODocument; Show
an EmptyState when an empty/blank sheet is requested
(c07ac76)
2016-01-24 Stefano Verzegnassi
* Restored 'cache:false' so that we don't display a thumbnail from a
different document (a94ea2b)
* Merged trunk. Updated translation template. (9c494e8)
* Moved all the RenderEngine code in LOPartsImageResponse to
LOPartsImageProvider (5cddea1)
2016-01-23 Stefano Verzegnassi
* [PdfPresentatin] Disable screen saver during a presentation
(737a608)
* [PdfPresentation] Go automatically full-screen (69be53d)
* [PdfPresentation] Hide mouse cursor when there's no on-going mouse
event (4020c06)
* Disable spell checking in LibreOffice: (794d562)
2016-01-23 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (58a3657)
2016-01-22 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (1f91dc3)
2016-01-21 Stefano Verzegnassi
* LibreOffice Viewer - LibreOfficeKit QML plugin: - Open spreadsheet
with manual zoom (1.0x factor) - Added "Fit to height" and
"Automatic" zoom behaviours - Added a "zoomModesAvailable"
which returns the zoom modes available for a given
document. - Use UCUnits when converting TWIPs in pixels
(and vice versa) - Minor changes.
Fixes:
https://bugs.launchpad.net/bugs/1513960,
https://bugs.launchpad.net/bugs/1515649,
https://bugs.launchpad.net/bugs/1535264. (22e869b)
* Don't allow a zoomFactor value outside the [minimumZoom,
maximumZoom] interval (668dba7)
2016-01-21 Roman Shchekin
* RenderEngine: thread safety. (64d193b)
2016-01-21 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (9cad970)
2016-01-21 Stefano Verzegnassi
* Removed 'zoomFactor' parameter from SGTileItem (67ec99f)
2016-01-20 Stefano Verzegnassi
* LibreOffice QML plugin:; Provide zoom settings as grouped
properties; Provide minimum and maximum zoom value.
Export to QML values for 'fitToWidth', 'fitToHeight' and
'Automatic' zoom (407bd2d)
* added python3-lxml package as dependency. (3b8132a)
* [loview] Added drop shadow effect to partsview thumbnails.
(e9e1eb1)
2016-01-19 Stefano Verzegnassi
* WORKAROUND: Use a smaller minimumZoom value. On BQ E5, the
'fitToWidth' zoom value is < 0.25. We urge to fix the
TWIPs conversion using UITK UCUnits. (342c2e1)
* Last fixes for ScalingPinchArea; Added a MousePinchArea
component for handling double-tap-to-zoom gestures. Fake
scaling animations are not perfect, but good enough for
giving the impression of a correct scaling during the
100ms they are running. (62def98)
2016-01-19 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (3dedbb0)
2016-01-18 Stefano Verzegnassi
* Center the content using 'topMargin' and 'leftMargin', so
contentWidth and contentHeight are more *predictable*
Fixed some issue in ScalingPinchArea (contentX and
contentY setting + interactivity + returning to legal
bounds) (5c523cf)
2016-01-18 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (6ca68a3)
2016-01-18 Stefano Verzegnassi
* Added UCUnits class from UITK. Forgot to 'bzr add' them in the
previous commit (89414d4)
* Convert TWIPs to pixels (and vice versa) using UCUnits from Ubuntu
UI Toolkit, instead of DPI (a728b19)
2016-01-17 Stefano Verzegnassi
* Merged trunk (2fab7e2)
* pt.2 (7701f4f)
* Merged second part of the fix for RenderEngine (b8825b0)
* take ownership of the task (8bb346f)
* RenderEngine::dequeueTask() missing the owner check (a36cb79)
* Disable spell checking in LibreOffice: (7a67d69)
* Merged lp:~mrqtros/ubuntu-docviewer-app/ubuntu-docviewer-app-re-fix
Roman's fixes for RenderEngine thread safety (484c023)
* Merged trunk (bcea8e0)
2016-01-17 Roman Shchekin
* AbstractRenderTask now can be marked as caller owned. (aba22cb)
* Thread safety. (c61b120)
* Right order of method call. (25c629a)
2016-01-17 Stefano Verzegnassi
* Use a Qt::BlockingQueuedConnection (329d860)
* [loview] Added drop shadow effect to partsview thumbnails (ace9eb6)
2016-01-17 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (90e48cb)
2016-01-16 Roman Shchekin
* Upstream libs caching.
Fixes:
https://bugs.launchpad.net/bugs/1534933. (c79f094)
2016-01-16 Stefano Verzegnassi
* [lok-qml] Moved 'currentPart' property from LODocument to LOView.
(e556f8f)
* Added a spreadsheet selector. Please note that switching to an
empty sheet may completely mess up the zoom factor value,
since the size of the sheet is 0x0 (Required a fix for
that). (39bafd8)
* Merged trunk - updated translation template (fbf3924)
2016-01-16 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b1c1afe)
2016-01-15 Stefano Verzegnassi
* Night shader updated. (be98224)
2016-01-15 Michael Hall
* Add a basic presentation mode to PDF docments.
Fixes:
https://bugs.launchpad.net/bugs/1534761. (1b19712)
2016-01-15 Stefano Verzegnassi
* Disabled current Autopilot tests. Added a dummy test instead.
(2be0054)
* missing CMakeLists.txt file (a79f6db)
* Disabled current Autopilot tests. Added a dummy test instead.
(f768a28)
2016-01-14 Stefano Verzegnassi
* added python3-lxml package as dependency (d39f215)
2016-01-14 Roman Shchekin
* Upstream libs caching. (f0ba670)
2016-01-14 Stefano Verzegnassi
* Suggested fixes from Stefano (a440718)
* PDF presentation mode: * Use PageHeader component * UI design
changes * Fix for Night Mode shader * Fix for
PdfViewDelegate * Use 'slideshow' icon for the 'Play
presentation' action in PdfView (11aeb62)
2016-01-13 Michael Hall
* Fix header content positioning to remove gap on the left (b57d40a)
* Preserve slide aspect ration, and allow double-tap to get out of
presentation mode on touch screens (7e783e4)
* Add presentation mode for PDFs (44dfbe8)
2016-01-13 Stefano Verzegnassi
* Apply BottomEdge workaround as seen in address-book-app (37292dd)
* Looks like header actions order is inverted on dekstop... which is
the bloody right order?! (23aab28)
* Use new PageHeader component in PdfView page and PdfContentsPage
* Use ListItemLayout for PdfView header content; PdfView
header configuration declared in the PdfView.qml document
(d41de3b)
2016-01-12 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (e8f2ea6)
2016-01-08 Stefano Verzegnassi
* Night shader updated (e5beec3)
* Merged lp:ubuntu-docviewer-app and fixed conflicts (dee1cab)
2016-01-08 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (8dde155)
2016-01-07 Stefano Verzegnassi
* DocumentListDelegate: wrap title text anywhere. Fix bug #1523113.
Fixes: https://bugs.launchpad.net/bugs/1523113. (3c940fe)
* updated framework to 15.04.3 (2292ecd)
* [loviewer] PartsView: Ensure that items next to the current item
are always visible.
Fixes:
https://bugs.launchpad.net/bugs/1521386. (8681ced)
* Merge lp:ubuntu-docviewer-app (82db662)
* Merged lp:ubuntu-docviewer-app (ebbb1e9)
* Renamed LODocument::paintThumbnail to paintPart (5aff244)
2016-01-07 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (bc4002c)
2016-01-06 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (c2d24cc)
2016-01-05 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (e97f998)
2016-01-04 Stefano Verzegnassi
* [DetailsPage] Split file name and file path into two separate
fields. Allow multiline subtext.
Fixes:
https://bugs.launchpad.net/bugs/1523106. (47c3006)
2016-01-04 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a9251b5)
2016-01-03 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (7bc2121)
2016-01-02 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (fd38594)
2015-12-31 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (20aa590)
2015-12-30 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (3e54e84)
2015-12-29 Stefano Verzegnassi
* DocumentListDelegate: wrap title text anywhere. Fix bug #1523113.
(904f96b)
* [lok-qml] Display the content at the center of the Flickable, when
it's smaller than the flickable itself. This change does
not affect the Spreadsheet viewer. (8f3aea1)
* Fixing automatic zoom update issue. Also, trying to provide a
better explanation for how updateVisibleRect() works.
(a0b187f)
2015-12-29 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (4d495d9)
2015-12-28 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (1dd052b)
2015-12-27 Stefano Verzegnassi
* Cleaning ZoomSelector code a bit (a336dd4)
* [lok-qml] Use a flag for 'zoomModesAvailable' property (removed the
three booleans previously used). (fe6a222)
* [lok-qml] Changed default zoom behaviour for presentation type
(044fa8d)
* [lok-qml] Added 'adjustToAutomaticZoom()' (869246e)
* [lok-qml] Added 'adjustToFitHeight()' (b1ec8ad)
* [lok-qml] Added checkers for 'fit to height' and 'automatic' zoom
modes availability.; [loviewer] Added controls for modes
above in ZoomSelector. (93ef0cd)
* [lok-qml][loviewer] Do not show 'Fit to width' mode in Zoom
selector when not available (b98f0d3)
* [lok-qml] Preliminar moving of the adjustZoomToWidth() call in
QML to C++; [lok-qml] Open spreadsheet documents with
manual zoom (1.0x factor) (96cf912)
* [DetailsPage] Split file name and file path into two separate
fields. Allow multiline subtext. (4831a9b)
* Added Flickable in DetailsPage. Content can be scrolled when bigger
than the page.
Fixes:
https://bugs.launchpad.net/bugs/1523112. (fc92a20)
* Don't show file extension in the viewer's header.
Fixes:
https://bugs.launchpad.net/bugs/1523886. (22fb286)
* [lok-qml] Fixed warning about document not loaded. Now it properly
informs that the document may be protected by a password.
Fixes: https://bugs.launchpad.net/bugs/1524712. (a0f9d6d)
* Updated AppArmor template. It fixes the deletion of a document
stored on a SD card.
Fixes:
https://bugs.launchpad.net/bugs/1524293. (5e733c3)
2015-12-26 Stefano Verzegnassi
* Added Flickable in DetailsPage. Content can be scrolled when bigger
than the page. (2c24193)
* [lok-qml] Fixed warning about document not loaded. Now it properly
informs that the document may be protected by a password.
(b8e27d1)
* Removed file extension from viewer header (c3c7cb7)
* Updated AppArmor template. It fixes the deletion of a document
stored on a SD card. (8a2ecf4)
2015-12-24 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (941f49b)
2015-12-23 Roman Shchekin
* RenderEngine now become application-wide tool . (32e5581)
2015-12-24 Roman Shchekin
* RenderEngine now become application-wide tool - commit. (b2ef095)
2015-12-23 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (1a8e955)
2015-12-21 Girish Rawat
* Updated and expanded READMEs. (fb5b760)
* Updated READMEs (8f8287e)
2015-12-21 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (42b4869)
2015-12-20 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (e1f03f9)
2015-12-20 Girish Rawat
* Updated and expanded READMEs. (048e7d6)
2015-12-18 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (011e764)
2015-12-17 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (d421a5e)
2015-12-15 Stefano Verzegnassi
* Use UITK 1.3 BottomEdge (480790a)
2015-12-14 Stefano Verzegnassi
* Removed wip comments (a414a79)
* Clean up; Use QSize for rendering thumbnails. (this will be
useful for the full-screen presentation mode) (4e83870)
* Cosmetics (aefa8d0)
* Clean up partsmodel (25b5919)
* pt.2 (08c7c9b)
* [lok-qml] Migration to QQuickAsyncImageProvider - pt.1 (c0103d5)
* [lok-qml] Moved 'currentPart' property from LODocument to LOView.
Still wip. (24bba9f)
2015-12-12 Roman Shchekin
* RenderEngine now become application-wide tool. (89a669d)
2015-12-11 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (f4b2c86)
2015-12-10 Stefano Verzegnassi
* Align 'no document found' empty state design to music-app.
Fixes:
https://bugs.launchpad.net/bugs/1523122. (5d64eec)
* Align 'no document found' empty state design to music-app (d66fc78)
2015-12-09 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (d145422)
2015-12-08 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (40d8dcb)
2015-12-07 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (efe542f)
2015-12-06 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (6aa3aa0)
2015-12-05 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (7185007)
2015-12-04 Stefano Verzegnassi
* Re-bump framework and AppArmor policy version. (8d0b8ca)
* Re-bump to sdk 15.04.1 (b6d22ab)
* Fixed url-dispatcher missing in the click package. (feb8875)
* Remove last reference to (61dac5a)
* Fixed url-dispatcher missing in the click package (164cb46)
2015-12-04 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (6a1eeb1)
2015-12-03 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (94163e7)
2015-12-02 Stefano Verzegnassi
* Backported fix for stage mode being forced on Nexus 10; Fixed
wrong string shown in the splash screen.
Fixes:
https://bugs.launchpad.net/bugs/1479483. (cc1006c)
* Err... it's Wednesday (c4e4092)
* Backported fix for stage mode being forced on Nexus 10; Fixed
wrong string shown in the splash screen (887d665)
* Bump app version to 2.0; Updated changelog. (9be8a6d)
* Updated changelog. Removed all the references to our LibreOffice
QML plugin bugs since it will be released for the first
time. Removed also all the redundant entries. (e7dcbaa)
* Merged 'reboot' branch (72ccc0e)
2015-12-02 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (5247c0e)
2015-12-01 Stefano Verzegnassi
* Fixed translatable strings. (fe78416)
2015-12-01 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (008bff3)
2015-12-01 Stefano Verzegnassi
* Fixed a further string (ae3c93c)
* Fixed translatable strings (02dfab1)
* [loviewer] PartsView: Ensure that items next to the current item
are always visible (3dfc21d)
2015-11-30 Stefano Verzegnassi
* Added splashscreen for loViewer; Moved the async logic that
loads loViewer in another component; Removed
'PanelButton' component - no longer used; Changed the
behaviour of the header in the loViewer: if (textDocument)
hideableHeader = true; Don't use a global 'graphics'
folder. Assets are now placed in the module which uses
them.
Fixes: https://bugs.launchpad.net/bugs/1495079.
(6661ba9)
* Updated app icon. (81187f4)
* Updated app icon (55a38e0)
* Forgot to use 'isPresentation' property in some binding (8e28ebf)
* Removed 'PanelButton' component - no longer used (8be4bcf)
* Added splashscreen for loViewer; Move the async logic in another
component; Don't use a global 'graphics' folder. Assets
are now placed in the module which uses them. (9c9adca)
2015-11-30 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (28cd2e7)
2015-11-29 Roman Shchekin
* Code cleanup - phase 2. (9f921f2)
2015-11-29 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (cb0d7b8)
2015-11-29 Roman Shchekin
* Code cleanup - phase 2. (1dd9e6c)
* Code cleanup - phase 1. (b99599e)
2015-11-28 Roman Shchekin
* Little improvements: * getNextId() used twice for LOPartEntry *
m_document renamed to m_lokDocument (we already have
m_document inside another class) (045afe6)
2015-11-28 Stefano Verzegnassi
* Updated changelog (7835d73)
* Merged 'reboot' (5af729c)
* Use UITK 1.3 ListItemLayout. (f1afe6e)
2015-11-28 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (fa45f38)
2015-11-27 Stefano Verzegnassi
* Switch to Ubuntu Toolkit 1.3; UI updated; Improved support for
zoom on desktop; Updated framework to 14.04.1; Moved
components in the 'upstreamComponents' folder into
'common'; Use the new BottomEdgeHint component in order
to provide mouse/keyb controls for the bottom edge.
Changed Header behaviour to default in the PDF viewe.
Use an horizontal PartsView for switching slides in
portrait, small-width mode, instead of using the
SlideControllerPanel component + BottomEdge.; Removed
some obsolete code.
Fixes:
https://bugs.launchpad.net/bugs/1453403,
https://bugs.launchpad.net/bugs/1508363,
https://bugs.launchpad.net/bugs/1513843. (c5e3f1d)
* [loview] removed double-click-to-(un)zoom. to be added later.
(51b8fe4)
* Merged 'reboot' branch (3323289)
* [textview] Removed file description from title (af7b91e)
* [pdfview] Removed last reference to 'toggleHeaderVisibility'
(752afe4)
2015-11-26 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (1fb6465)
2015-11-25 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (64ba7dc)
2015-11-24 Stefano Verzegnassi
* Changes to the project structure; Provide DocViewer plugins as
separate .deb packages; Added exception for '*.user.*' in
.bzrignore file. (3cde392)
* Updated .pot (8cf3a55)
* Merged 'reboot' - .pot not updated (e9a9f26)
2015-11-24 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (df800e9)
2015-11-23 Stefano Verzegnassi
* Error detection branch has been merged without a 'fix' as per diff
inline comments. Not relevant stuff, just code styling.
(6825fb0)
2015-11-23 Roman Shchekin
* Zoom in LO. (ca36a71)
2015-11-23 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (feee02b)
2015-11-22 Stefano Verzegnassi
* Merged 'reboot' - Fixed conflicts (5a32c31)
* error detection branch has been merged without a 'fix' as per diff
inline comments (6f7633c)
* LibreofficeKit-qml-plugin: * Fix wrong size for last tile in a
row/column * Don't create tiles outside the
visible/buffer grid (i.e. wrong size for m_visibleArea and
m_gridArea).
Fixes:
https://bugs.launchpad.net/bugs/1516239,
https://bugs.launchpad.net/bugs/1516241. (ab065c9)
2015-11-22 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (e5005af)
2015-11-21 Roman Shchekin
* Resolved conflict. (a6f7efd)
* Anchors. (0b74ab2)
* Whoops... (ff19111)
* Code cleanup & ready for merge! (a2a947a)
2015-11-21 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (2a7e280)
2015-11-20 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b7ca1b0)
2015-11-19 Stefano Verzegnassi
* [lok-qml] Fixed broken SHOW_TILE_BORDER mode.
Fixes:
https://bugs.launchpad.net/bugs/1515037. (6e573ff)
* [loviewer] Adding error detection; [loviewer] Removed
updateZoomIfAutomatic() function in LOView, its code was a
bit cryptic; Added a debug option in CMakeLists; added
'*.user.*' filter in .bzrignore file.
Fixes:
https://bugs.launchpad.net/bugs/1514458. (89650a3)
* Disable file locking in LibreOffice.
Fixes:
https://bugs.launchpad.net/bugs/1517074. (dfe3756)
2015-11-19 nskaggs
* Fix internet check for jenkins. (2fedafe)
* modify internet check for jenkins (poll launchpad, not google)
(f1b19ed)
2015-11-19 Roman Shchekin
* Made some things reusable. (6cd32d2)
2015-11-18 Stefano Verzegnassi
* Disable debug flags (639b70a)
2015-11-17 Stefano Verzegnassi
* Disable file locking in LibreOffice (b2f4be8)
2015-11-15 Stefano Verzegnassi
* generateTiles() styling (169a3d4)
* Improved the calculation of visible and buffer areas (028d1fb)
2015-11-14 Roman Shchekin
* First working version. (d561b79)
2015-11-14 Stefano Verzegnassi
* Addressing following issues: * Tiles in the last column/row
have the wrong size (256.0px is hard-coded) * LOView
creates tiles out of the visible/buffer grid (db5d531)
2015-11-13 Stefano Verzegnassi
* Merged prerequisite branch (101cb79)
* component renamed (4c936d5)
* Removed obsolete 'backAction' code from viewers' header (86c1646)
* Changed PDF viewer background (cd6d02d)
* Remove experimental code used in the desktop mode (17cc2c2)
* Provide a more extended description of the error (cb1ca74)
* [lok-qml] Fixed broken SHOW_TILE_BORDER mode (fcb7779)
2015-11-11 Stefano Verzegnassi
* Disable debug build (ae19c76)
* [loviewer] Adding error detection [loviewer] Removed
updateZoomIfAutomatic() function in LOView, was a bit
cryptic (8363792)
2015-11-06 Roman Shchekin
* Code of RenderEngine become more SOLID (still a lot of work to do).
(3fc4570)
2015-11-06 Alan Pope
* Remove unconfined from apparmor profile. Tested on device, and
we're still able to open pdfs and office docs just fine.
(7d55f51)
* No longer need to be unconfined (bf69da0)
2015-11-06 Stefano Verzegnassi
* Automatically fetch dependencies for LibreOffice viewer and put
them inside the .click package. (c5308b2)
2015-11-02 Stefano Verzegnassi
* Oops... better to specify which is the source of the bug (6a3e0d8)
* Fixing comment in the PDF viewer (f2b6962)
* [loView] Removed SlideControllerPanel & bottom edge usage since
were incompatible on phone. Use an horizontal PartsView
instead. (22b96c8)
* Show/hide bottom edge tip of Flickable scrolling (5956742)
2015-11-01 Stefano Verzegnassi
* Use default header behaviour in PdfView (the earlier is broken with
OTA-8) (b975ef4)
* Completed refactor of ZoomSelector:; Moved part of the code of
ZoomSelector in some new components, since we'll probably
reuse them in future (706ac03)
* Restore old .pot again (bdad07e)
* Use BottomEdgeHint to provide desktop controls for the bottom edge
panel (8045c0d)
* Moved 'UpstreamComponents' to 'common' folder (4a9f6d5)
2015-10-31 Roman Shchekin
* Code of RenderEngine become more SOLID (still a lot of work to do).
(275e103)
2015-10-29 Stefano Verzegnassi
* fixes (eada355)
2015-10-28 Stefano Verzegnassi
* Merged prerequisite 'reboot-uitk13' branch (8b2ff55)
* Reverted Autopilot tests fixes - they have been moved in another
branch (757f598)
* Merged
'lp:~verzegnassi-stefano/ubuntu-docviewer-app/reboot-cmake-refactor'
branch; Updated changelog (083412f)
* Restored pot from trunk. It will be updated in a different branch.
(42c0720)
* Fixed url dispatcher not found during debian pkg building (8f03087)
2015-10-27 Stefano Verzegnassi
* Fixed left sidebar anchoring in LoView; Backported ZoomSelector
from uitk1.3-listitemlayout branch (dca1991)
* Forgot to update 'debian/rules' file (5c0997f)
* Removed some bit from LoView's PinchArea, in order to make diff
smaller (1eaad0d)
* Provide DocViewer plugins as separate .deb packages (e935e7f)
* Fixed not found; Moved 'get-click-deps' CMake stuff in the
proper file; Add exception for '*.user.*' in .bzrignore
file (a914aca)
* Merged lp:~verzegnassi-stefano/ubuntu-docviewer-app/get-click-deps
(06e5588)
* Added a comment about PDFView's 'GoToPage' dialog test failing
(552de71)
* Fixed Autopilot 'test_toc' test (103cd44)
* Fixing ZoomSelector pt.1 (ff8aa29)
* Added click dependencies for 'amd64' and 'i386' archs (7822817)
* Merged 'reboot' branch (aca958d)
* Restored +x permission to 'get-click-deps' script (064bdce)
2015-10-26 Stefano Verzegnassi
* Merged
lp:~verzegnassi-stefano/ubuntu-docviewer-app/reboot-resizeable-partsview
(fff4abe)
2015-10-23 Stefano Verzegnassi
* Updated .deb dependency on ubuntu-ui-toolkit (45e6e31)
* Reverted Ubuntu.Content import - version 1.3 is not included in
OTA-7 (1d39c9a)
* Updated to ListItemLayout. Still some TODO/FIXME task. (dc51080)
* Updated framework version in the manifest file (5901188)
* Removed usage of deprecated 'Theme' singleton. Use 'theme' instead.
(35e6a66)
* [UITK13-Labels] Use 'textSize' enum property instead of 'fontSize'
string one (2666cc5)
* Updated imports (439c892)
* Merged 'reboot' branch (40a4349)
2015-10-22 Stefano Verzegnassi
* Fixed comment (de0a01a)
* Added ResizeableSidebar component (b2db4a8)
2015-10-21 Stefano Verzegnassi
* CMake files refactor - part 1 (c991d4b)
2015-10-20 Stefano Verzegnassi
* Switch to Ubuntu.Components 1.2; Minor UI changes; Temporarily
removed GridView from documents browser page; Fixed wrong
default date format (now it is middle-endian format,
default for US English); Limit ListViews width to
units.gu(80) on wide screens.
Fixes:
https://bugs.launchpad.net/bugs/1470897. (89a0bde)
* Updated translation template (b5c5a1d)
* Merged 'reboot' branch (d0965f3)
* Refactored cpp init; Moved command line parser to QML. (5f7ce6f)
* Fixed app launch when running from QtCreator or an installed .deb
package (806a075)
* Added SubtitledListItem (6cc28f7)
* Updated translation template (633dadf)
* Merged 'reboot' branch (a37de9e)
2015-10-19 Stefano Verzegnassi
* Hide viewers head captions in desktop mode (95c3f47)
* New ZoomSelector and first work on pinch-to-zoom gesture (948f657)
* Switch to UITK 1.3; Give more space to lok parts view on wide
screens (ba11fc0)
* Fixed imports of new components from 'reboot' branch; Updated
translation template (14ff0fa)
* Merged 'reboot' branch (66bd567)
2015-10-19 Roman Shchekin
* More OOP in RenderEngine (preparations for migration of PDF plugin
to tile rendering). (6a8293a)
2015-10-19 Stefano Verzegnassi
* Don't fill the whole width in DetailsPage when page's width >
units.gu(80); SortSettingsDialog's 'Close' button color
to green (e183c84)
* Bump app version to 2.0 (59e4e4d)
2015-10-19 Roman Shchekin
* More OOP in RenderEngine. Part 2: bugfixes and cleanup. (11cf669)
2015-10-18 Roman Shchekin
* More OOP in RenderEngine. (05ba455)
2015-10-18 Stefano Verzegnassi
* updated (03ddb57)
2015-10-17 Stefano Verzegnassi
* fix pt.2 (10fd1d0)
* fixes pt.1 (84ee1b5)
* new init (1d820ef)
2015-10-15 Stefano Verzegnassi
* [loview] Resizeable PartsView - bits stolen from UITK1.3's
AdaptivePageLayout (ee66b25)
* update get-click-deps to python3 (dd1f934)
* [loviewer] Moved ZoomSelector in the default header (8b116a2)
* Restored full DeleteFileDialog functionalities (a975117)
2015-10-13 Stefano Verzegnassi
* Rewritten Config::getLibreOfficePath() and
Config::getLibreOfficeProfilePath() (6c64b2c)
* Read/write LibreOffice profile from docviewer's
XDG_CONFIG_HOME/<APP_PKGNAME> location (12c6b83)
* [loviewer] Fixed 'singleShot' property not set for m_updateTimer.
(58709d9)
* [loviewer] Fixed singleShot missing in scheduleVisibleRectUpdate()
(bd08a73)
2015-10-12 Stefano Verzegnassi
* Moved command line parameters and UriHandler stuff to QML (be7c925)
* Moved fullscreen control to QML (366adee)
* [loview] Fixed leak and tiles that stay visible even after their
removal. (01208bb)
* [loviewer] Fixed memory leak while zooming (274cf7f)
2015-10-11 Roman Shchekin
* RenderEngine - impress support. (942b3ce)
* UPD (75760de)
2015-10-11 Stefano Verzegnassi
* Forgot a fix for LOViewGotoDialog header action (6155212)
* Removed unused code in LOViewDefaultHeader (413ae00)
* Updated translation template (69bced3)
* Merged 'reboot' branch (a0ab7b0)
* Minor changes during the MP of the branch (d40ecdb)
2015-10-10 Stefano Verzegnassi
* [loviewer] Improved support for presentation document typ.
[loviewer] Added keyboard shortcuts.; [loviewer] Added an
image provider for slides thumbnails, sync'd with
RenderEngine; [loviewer] Conditional layout for the
presentation view: use a bottom edge or a sidebar to show
the list of slides; [loviewer] Moved zoom controls into a
separate page head; Updated translation template.
(0e5ad55)
* Updated translation template (2d6a3ae)
* Merged 'reboot' branch (0ad2384)
* [loviewer] Implemented zoom:; Added a manual zoom mode; Added an
automatic zoom mode (fit zoom to flickable width); Added
a bottom panel with a zoom selector (which includes a
TextField and an OptionSelector). (6019b55)
* Updated translation template (d7268cd)
* Merged 'reboot' trunk (62f9763)
* Switch to Ubuntu.Components 1.2; Minor UI changes, trying to
match latest design guidelines (DeleteFileDialog is
currently broken, it will be fixed with the following
commits) (21ce5a6)
2015-10-08 Roman Shchekin
* RenderEngine - impress support, part 8 (default image for
thumbnail). (1917e49)
2015-10-06 Roman Shchekin
* RenderEngine - impress support, part 7. Done. (69735a4)
* RenderEngine - impress support, part 6. (b296f12)
* RenderEngine - impress support part 5. (f52b9bb)
* RenderEngine impress support, part 4. (8eb3139)
2015-10-05 Roman Shchekin
* RenderEngine - impress support, part 3. (af6f83f)
* RenderEngine impress support big rework. (2339591)
2015-10-04 Roman Shchekin
* RenderEngine - impress support. (9e45cf4)
2015-10-04 Stefano Verzegnassi
* Fixed typo (e17d4f6)
* Use UTF8 for converting char* to QString (63e6a27)
2015-10-03 Stefano Verzegnassi
* Fixed an issue in root CMakeLists file; Use LD_LIBRARY_PATH to
get a list of possible paths for LibreOffice binaries when
running from a .click package (79be5bc)
2015-10-02 Stefano Verzegnassi
* LibreOffice Viewer: * Changes to UI design of ZoomSelector * Use
a more declarative approach in ZoomSelector * Updated
translation template (553072d)
2015-10-01 Stefano Verzegnassi
* LibreOffice viewer: * Added pinch-to-zoom gesture (not tested) *
Added double-click-to-zoom gesture * Preserve content
position on zoom changes * Fixes for ZoomSelector (broken
after async loading of viewer) (18bed93)
* [loviewer] Use percentage for 'go to' dialog.; [loviewer] Enable
'go to' dialog only for LibreOffice.TextDocument type.
(5294f7f)
* Updated pot (d19d25b)
* Merged 'reboot' branch (d81d39e)
2015-09-26 Stefano Verzegnassi
* Added go-first-part and go-last-part actions; Added part
management functions in DocumentViewer.LibreOffice.Viewer
(6845adc)
2015-09-23 Stefano Verzegnassi
* forgot to fix a typo (d6dcbbd)
* Updated keyboard shortcuts; Fixes to loviewer PartsVie.
Improvements to LibreOffice viewer UI; Sync render engine
and thumbnailers provider (tiles from different parts
are no longer mixed up); Updated translation template
(f83e380)
2015-09-22 Stefano Verzegnassi
* Merged 'reboot' branch (3debbc5)
* Merged 'reboot' branch (454f2e5)
2015-09-21 Stefano Verzegnassi
* [ContentHub] Check if a file has been already imported in the past,
and don't import it if that's the case.
Fixes:
https://bugs.launchpad.net/bugs/1432394. (d019404)
* Fixed class name not properly set after merge (b7a4ebe)
* Merged lp:ubuntu-docviewer-app/reboot (99c9fec)
* Updated translation template. (cea9e51)
* Merged lp:ubuntu-docviewer-app/reboot (128cf36)
* Use QML APIs for Content Hub; Remove toast notifications for
imported documents (open documents automatically).
Fixes:
https://bugs.launchpad.net/bugs/1469422. (8c6974c)
2015-09-19 Stefano Verzegnassi
* Fixes as per MP review (6e605e4)
2015-09-19 Roman Shchekin
* Async lok loading .
Fixes: https://bugs.launchpad.net/bugs/1495069.
(7d47a4f)
2015-09-19 Stefano Verzegnassi
* Renamed DocumentViewerSingleton as DocviewerUtils (3ece211)
2015-09-19 Roman Shchekin
* [LibreOffice-plugin] Get screen DPIs at runtime. (c6f2f2c)
* New method of multithreaded rendering. (326de67)
* Misaccurate copy-paste. (9e3d101)
2015-09-19 Stefano Verzegnassi
* Removed dependency on ContentHub C++ APIs and updated the others
(9703da6)
* Forgotten bits (d4aa6bf)
2015-09-19 Roman Shchekin
* Pot. (5c46358)
* LOView.qml was renamed to LOViewPage.qml (8632b28)
* Fix for
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1495069
(e599839)
* And the last comment... (a2845a9)
* Removed few unused blocks of code/comments. (32930ae)
2015-09-19 Stefano Verzegnassi
* Merged prerequisite branch:
lp:~verzegnassi-stefano/ubuntu-docviewer-app/10-reboot-contenthub-switch-to-qml-apis
(c47124a)
* Updated translation template (25611b9)
* Merged prerequisite branch:
lp:~verzegnassi-stefano/ubuntu-docviewer-app/10-reboot-contenthub-switch-to-qml-apis
(329a0e0)
* Merged reboot branch (ef0f547)
2015-09-18 Stefano Verzegnassi
* [loviewer] Use percentage for 'go to' dialog.; [loviewer] Enable
'go to' dialog only for LibreOffice.TextDocument type
(0d427a1)
2015-09-18 Roman Shchekin
* Fixed broken functionality. (fd57df8)
* Redundant hash removed. (3a97094)
* Old performance with thread safety, almost ready for merge.
(431a3cc)
* Code cleanup. (4f4debe)
* Working version of RenderEngine rendering. (887ffb1)
* SGTileItem prepared for RenderEngine. LOView to go. (ee8b369)
* RenderEngine added. (da082da)
2015-09-17 Stefano Verzegnassi
* Check for null value of getLogicalDotsPerInch() (f5442d4)
2015-09-16 Roman Shchekin
* Smart DPI caching. (e026870)
2015-09-16 Stefano Verzegnassi
* Removed QStorageInfo sources. Build depends on Qt 5.4. (8a6cd5e)
2015-09-16 Roman Shchekin
* Smart caching of DPI. (fe2ec12)
2015-09-16 Stefano Verzegnassi
* Added share option in documentsPage.
Fixes:
https://bugs.launchpad.net/bugs/1494818. (67fb175)
* Use SD card icon from official Suru theme.
Fixes:
https://bugs.launchpad.net/bugs/1476659. (e7d70ab)
* Updated empty state strings in DocumentsPage. (79cdfab)
2015-09-15 Stefano Verzegnassi
* Added keyboard controls (PgUp, PgDown, Up, Down, Left, Right) in
the LOK plugin (see src/app/qml/loView/KeybHelper.js.
Improved support for presentation document typ.
Conditional layout for the presentation view: use a bottom
edge or a sidebar to show the list of slides; Added an
image provider for slides thumbnails; Moved zoom controls
into a separate page head (1252284)
2015-09-14 Stefano Verzegnassi
* Implemented zoom:; Added an automatic zoom mode
(fitZoomToFlickableWidth); Added a bottom panel with a
zoom selector (which includes a TextField and an
OptionSelector); Removed unnecessary files from loView
plugin; Some change in main.cpp so that we can enable QML
Analyzer; Fixes for DEBUG_VERBOSE; Improvements to the
logic that handles automatic zooming (907f249)
2015-09-12 Stefano Verzegnassi
* [ContentHub] Check if a file has been already imported in the past,
and don't import it if that's the case (5ab137e)
2015-09-11 Roman Shchekin
* QtQuick SceneGraph rendering, with multithreading support. Includes
changes from:
lp:~mrqtros/ubuntu-docviewer-app/docviewer-sg-rendering.
(4e3e2b3)
2015-09-11 Stefano Verzegnassi
* Get screen DPIs at runtime (2e2af84)
* Updated translation template (2d87f78)
* Revert a few changes in DocumentViewerSingleton class (1055094)
* Use QML APIs for Content Hub; Remove toast notifications for
imported documents (open documents automatically)
(7752e58)
* Removed forward declaration of TileItem class in LOView (b947fa5)
* Restored DEBUG_SHOW_TILE_BORDER option (e7e63cb)
2015-09-10 Stefano Verzegnassi
* Added TODO task for tiles border (4823e41)
* Fixes as per MP review:
https://code.launchpad.net/~mrqtros/ubuntu-docviewer-app/docviewer-sg-rendering/+merge/270157
(d10e9cc)
2015-09-09 Stefano Verzegnassi
* Merged Roman Shchekin's work on scenegraph rendering (57989c6)
* Removed QStorageInfo sources. Build depends on Qt 5.4 (8b8fb77)
* Added share option in documentsPage (7e3aff5)
* Added reference to SD card support in the documentPage empty state
(8678463)
* Merged trunk - fixed conflict (d185276)
* First attempt to include get-click-deps in docviewer. Some
CMakeLists line comes from popey and its get-click-deps
integration work for filemanager-app. (6958ad5)
2015-09-02 Roman Shchekin
* Multithreaded rendering. (88e8972)
* Bugfixes. (7a99220)
* Preliminary, but already working version. (b8998fa)
* SGTileItem class added. (52e0d9f)
* Cosmetic fixes - check against nullptr and correct naming of
viewer. (15a7f85)
2015-08-30 Stefano Verzegnassi
* Merged trunk (rev. 181) into "reboot" branch. (85f1624)
* Use sdcard icon from suru-icon-theme (0ef420d)
2015-08-26 Stefano Verzegnassi
* Added LibreOfficeKit headers. (d681c6c)
* Added LibreOfficeKit headers (c78fe2e)
2015-08-04 Stefano Verzegnassi
* Merged trunk into reboot branch (2fdd8d1)
2015-08-01 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (5496496)
2015-07-30 Stefano Verzegnassi
* Fixed DocumentsModel's duplicated entries when reading from FAT
file systems.
Fixes:
https://bugs.launchpad.net/bugs/1477713. (db32cdf)
* Fixed duplicated entries in FAT file systems (19a132e)
* Implemented cache buffer (139a094)
2015-07-26 Stefano Verzegnassi
* Implemented cache buffer (6007400)
2015-07-25 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (00e92e4)
2015-07-24 Stefano Verzegnassi
* Simplified the translation for some string in DocumentListDelegate.
Fixes: https://bugs.launchpad.net/bugs/1477502. (a7b0ad4)
* Simplified the translation for some string in DocumentListDelegate
(87583a6)
2015-07-23 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (df01558)
2015-07-23 Stefano Verzegnassi
* [LOK-plugin] Use a QTimer to avoid multiple updates when
contentX/contentY change (eb699ed)
* [lo-plugin] Added saveAs function (98d17e4)
* Improvements in debug output management (0413f25)
2015-07-22 Stefano Verzegnassi
* Improvements in debug output management (9100b31)
* Do not use a pointer for QTimer (6f5a410)
* Added support for all (OpenDocument/OpenXMLFormat/MS)
(text/spreadsheet/presentation) documents in DocViewer's
documentModel and plugin loader. (93b1087)
2015-07-21 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (33a7b3e)
2015-07-20 Roman Shchekin
* Inlining can make code more efficient in such cases. (35f1d14)
2015-07-20 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (7791dba)
2015-07-19 Stefano Verzegnassi
* - Restored swipe gesture in DocumentListDelegate - Added contextual
actions to DocumentGridDelegate - Added a new TileBase
component as base for DocumentGridDelegate.
Fixes:
https://bugs.launchpad.net/bugs/1447995. (043ee85)
2015-07-19 Roman Shchekin
* Inlining can make code more efficient in such cases. (59b410f)
2015-07-19 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (00d5aa1)
2015-07-18 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (05b2131)
2015-07-17 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (9c34b01)
2015-07-17 Stefano Verzegnassi
* Improved code consistency for TileItem class.; Removed the
unnecessary painter->eraseRect() from the paint function
of LOView (19f80c0)
* [lo-plugin] Added saveAs function (db77813)
2015-07-16 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (1614244)
2015-07-14 Stefano Verzegnassi
* Merged all the trunk revisions up to r169 (d24504f)
* Merged trunk - Solve conflict in DocumentGridDelegate (521d161)
* Fixed things as per MP review and simplified actionsOverflowPopover
logic (b5e4caa)
* Use proper English verb... (e7bbccb)
* Updated AUTHORS file. (0203061)
* Add support for all OpenDocument/OpenXMLFormats/MS
text/spreadsheet/presentation documents (a06a2ec)
* [LOK-plugin] Use a QTimer to avoid multiple updates when
contentX/contentY change (90d70d9)
* Updated AUTHORS file (9e76a3b)
* Merged
lp:~ubuntu-docviewer-dev/ubuntu-docviewer-app/lo-tiled-rendering
in order to solve the conflict in LOView class (4e72d21)
* As Roman suggested:; Use const QRect& for TileItem area; Moved
TileItem::requestTexture() after the connection to the
LOView::update() slot (34e6764)
2015-07-13 Roman Shchekin
* Format_RGB32 used instead of Format_ARGB32 (renders ~3 times
faster). I have string feeling that LO toolkit won't
provide tiles with alpha. * Memory leak fixed. * Member
m_office now become static s_office. (a872e11)
2015-07-13 Stefano Verzegnassi
* Properly set sizes inside QtQuick.Layouts. (fa3ffb8)
* Improved code consistency in TileItem class (647dbb4)
2015-07-13 Roman Shchekin
* Format_RGB32 used instead of Format_ARGB32 (renders ~3 times
faster). I have string feeling that LO toolkit won't
provide tiles with alpha. * Memory leak fixed. * Member
m_office now become static s_office. (95efc89)
2015-07-12 Stefano Verzegnassi
* Use C++11 features (27234c0)
* Removed not necessary painter->eraseRect() (ee8c5c1)
2015-07-12 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b280801)
2015-07-11 Roman Shchekin
* Seems that LoDocument uses BGR rather than RGB. Fixed. (acf7c90)
* Seems that LoDocument uses BGR rather than RGB. Fixed. (263037c)
2015-07-11 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (cda8a8d)
2015-07-10 Alan Pope
* Add AUTHORS file. (fec9ace)
2015-07-08 Roman Shchekin
* Multithreading improved. (9a94b61)
2015-07-08 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (267b661)
2015-07-07 Stefano Verzegnassi
* Fixed CMakeLists file in LOK-QML plugin (3511e86)
2015-07-08 Roman Shchekin
* Multithreading improved. (b32030a)
2015-07-06 Alan Pope
* Add AUTHORS file (cd6ad9f)
2015-07-05 Stefano Verzegnassi
* rows and columns in the tile logic were swapped. use the less
ambiguous 'x' and 'y' (d9958f5)
2015-07-04 Stefano Verzegnassi
* Update visibleArea size when the width/height of the
parentFlickable change (c762d4f)
* Dropped deprecated dependencies on Qt5 private imports (48b0076)
* First work on tiled rendering for LibreOfficeKit QML plugin
(f8325c8)
2015-07-03 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a9dd747)
2015-07-01 Stefano Verzegnassi
* Restored translations from trunk (1ed5e10)
* Merged with trunk - Fixed .pot conflict (2b08874)
* - Restored swipe gesture in DocumentListDelegate - Added contextual
actions to DocumentGridDelegate - Added a new TileBase
component as base for DocumentGridDelegate (e9dbdb8)
2015-07-01 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (733b1f7)
2015-06-30 Stefano Verzegnassi
* Extended fix for QtQuick.Layouts where appropriate (d2c1b19)
* Merge 'fix-layouts-with-icons' branch from Michael Zanetti
(0786f57)
2015-06-30 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (15d944f)
2015-06-29 David Planella
* Added information on how to compile the LO viewer support (541adfc)
* Merged from trunk (9233278)
2015-06-29 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (31c5898)
2015-06-28 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (26dda8b)
2015-06-27 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (f7280e3)
2015-06-26 David Planella
* Merged Stefano Verzegnassi's LO viewer prototype (cc39a92)
2015-06-26 Stefano Verzegnassi
* Added document type property to LibreOffice plugin LODocument class
(0d69d1a)
2015-06-26 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (315fb34)
2015-06-25 Bartosz Kosiorek
* Fix missing icon for desktop: #1468418 .
Fixes:
https://bugs.launchpad.net/bugs/1466518. (0b531c9)
2015-06-25 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (daed67d)
2015-06-24 Bartosz Kosiorek
* Fix missing icon for desktop. (ae90d0b)
2015-06-24 Stefano Verzegnassi
* A first (far from being perfect) prototype of the LibreOffice QML
plugin, which reuses the components ofthe Poppler QML
plugin (84225d0)
2015-06-24 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (09ed6ea)
2015-06-23 Stefano Verzegnassi
* Added a search mode for the DocumentPage and a list of sorting
options.
Fixes: https://bugs.launchpad.net/bugs/1450837.
(c6097e4)
2015-06-23 David Planella
* Added sample LibreOffice Toolkit code, by Bjoern Michaelsen
(f313a4c)
2015-06-22 Stefano Verzegnassi
* Position view at beginning when the sortMode value is changed
(670c6d8)
* Fixed badly formatted date-time in the subText of
DocumentListDelegate when a sort rule, different than 'by
date' is used. (f9e83b8)
* Fixed date-time of the subText of the DocumentListDelegate
(dateDiff value changed when we started to use an Enum for
it) (7a91ab7)
* Fixed case sensitivity for alphabetic sort (7e4bf50)
* Updated the title of DocumentPage (b84b2c5)
2015-06-18 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (3fed049)
2015-06-16 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (ac5769f)
2015-06-15 Stefano Verzegnassi
* Re-enable delete action in DocumentListDelegate (2b1512b)
2015-06-14 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (ab691ad)
2015-06-13 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (27615a4)
2015-06-12 Stefano Verzegnassi
* That's a 'sorting settings', there's nothing related to filters...
(8293da5)
* Reset search filter when switching to the pick mode (a.k.a.
content-hub export mode) (a297eff)
* Disable predictive text for document search (3741d6d)
2015-06-10 Stefano Verzegnassi
* Fixed the misspelled 'misspelled' word... (2fe2d3b)
* Added sort options and allow search of available documents
(a77413e)
2015-05-31 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (e7c9c64)
2015-05-22 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (0c746f2)
2015-05-21 Stefano Verzegnassi
* SD Card support. (2000a68)
2015-05-19 Stefano Verzegnassi
* Merged trunk - translations updated (62f4b78)
* Removed debug output (336a21c)
2015-05-19 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (5554d74)
2015-05-18 Stefano Verzegnassi
* - Moved DocumentsModel class in the DocumentViewer module. -
Refactored DocviewerFile class - Refactored DocumentsModel
class - Use SortFilterModel from Ubuntu.Components,
instead of QSortFilterProxyModel - Renamed
com.ubuntu.popplerqmlplugin module in DocumentViewer.PDF -
Renamed com.ubuntu.fileqmlplugin module in DocumentViewer
- Removed FileReader class - Added support for testing
DocumentsModel class through Autopilot.
Fixes:
https://bugs.launchpad.net/bugs/1445011. (b6f619b)
* pot updated (dbf5512)
* Added some output for debug (14e7502)
2015-05-16 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (044e82a)
2015-05-15 carla-sella
* First test for testing Docviewer app TOC.
Fixes:
https://bugs.launchpad.net/bugs/1418652. (bffb370)
2015-05-13 Stefano Verzegnassi
* First prototype for sd-card read support (5dc0585)
2015-05-11 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (182a3c1)
2015-05-10 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (fcdf5fd)
2015-05-08 carla-sella
* Deleted logger.warn. (7accaff)
2015-05-07 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a00006f)
2015-05-06 carla-sella
* Fixed while loop. (a22c9a6)
* Fixed code as Nicholas asked to. (ac98e27)
2015-05-04 carla-sella
* Inserted fixes suggested by Stefano for Bottom Edge and content
items not visible. (7319d24)
2015-05-02 carla-sella
* First try to fix bottome edge issue. (9f1fbcd)
* Added comment on PdfContentPage.qml propery. (ce458e5)
* Fixed regression on test test_go_to_page_pdf_file. (5b9d849)
* Fixed little error. (994b3e1)
* Completed first test for TOC. (a08319d)
2015-05-01 carla-sella
* Still need to fix scrolling. (0aaac00)
* Completed first part of test_go_to_chapters_in_toc. (716a670)
* Implemented clickin on TOC chapter. (5cefdb0)
2015-04-30 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (087182a)
2015-04-29 Stefano Verzegnassi
* Cleaning DocviewerFile class a bit (02d3f51)
* Fixed SortFilterModel not sorting (999fab0)
2015-04-29 carla-sella
* For merging trunk. (597b43b)
* WIP test_pdf_toc (803bee5)
2015-04-29 Stefano Verzegnassi
* Fixed an issue when customDir is set (8d48938)
* - Refactored DocumentModel class - Moved QFileSystemWatcher in an
external class (763210e)
* Sync po/CMakeLists.txt with trunk (5d73281)
* Merge with trunk (c182430)
* Various minor changes to DocumentModel class - pt #2 (651906b)
* Various minor changes to DocumentModel class (db1e871)
* - Added arguments for testing DocumentsModel through Autopilot -
Fixed an issue while trying to open a document previously
loaded (4d96729)
* Move DocumentModel and File classes in an external plugin (d137581)
2015-04-29 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (625582b)
2015-04-28 carla-sella
* For merging trunk. (691ee7a)
2015-04-28 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (87f9584)
2015-04-27 Stefano Verzegnassi
* - Rename a file as 'filename (copy x).ext' (instead of
'filename.x.ext') if a file with the same name already
exists. - Fixed bad renaming of a file that already has
"(copy x)" suffix in its name.
Fixes:
https://bugs.launchpad.net/bugs/1432403,
https://bugs.launchpad.net/bugs/1432408. (8d386d2)
* Fixed files permissions (d95396e)
* Merge with trunk (abe9118)
* Fixed the issue with QFileInfo::baseName() (d6851d1)
* [PDF] Fixed docviewer crash when selecting the last entry of the
ToC.
Fixes: https://bugs.launchpad.net/bugs/1444972.
(4fcf617)
* Fixed autolanding (translations conflict) (84eaaab)
2015-04-26 Stefano Verzegnassi
* [PDF] Fixed an issue while going to the first not visible item in
VerticalView.
Fixes:
https://bugs.launchpad.net/bugs/1444971. (92a02e6)
2015-04-24 carla-sella
* Merged trunk. (7a15c73)
2015-04-23 carla-sella
* Commit for merging trunk. (2f61896)
* Added pdf for test toc. (8f870b7)
* Started new test test_pdf_toc. (fdf9cbe)
2015-04-23 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (57cf923)
2015-04-22 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (666cbf8)
2015-04-21 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (8949917)
2015-04-20 Stefano Verzegnassi
* - Don't add a second suffix to the file name if there's already one
- Reflowed code of ContentCommunicator::handle_import -
Updated comments for ContentCommunicator::handle_import -
Updated translations - Use a localized string to identify
a copied file (93cbb31)
* Format imported document name as 'filename (x).ext' instead of
'filename.x.ext' (771e8f6)
2015-04-20 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (5aeb36b)
2015-04-19 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (02a854d)
2015-04-18 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (886df0b)
2015-04-17 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (114f247)
2015-04-16 Stefano Verzegnassi
* Enabled landscape support.
Fixes:
https://bugs.launchpad.net/bugs/1428721. (1d3b9ec)
* Fix #1444972 - Is today Friday the 17th? (856a14d)
* Fixed stupid off-by-one error (7a93b22)
2015-04-16 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (7ff3428)
2015-04-15 Stefano Verzegnassi
* Fixed wrong copyright editing in revision 124 (6004907)
* Renamed com.ubuntu.popplerqmlplugin module in DocumentViewer.PDF
(d2ba9b9)
* Refactored DocviewerFile class and fixed an issue when setting its
'file' property (630dd41)
* Moved the DocviewerFile class in the DocumentViewer module
(be44f3e)
2015-04-15 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b771e18)
2015-04-14 Stefano Verzegnassi
* Fixed autopilot test (ab913e7)
* Fixing misc typos (6e09724)
* Hide Unity 8 indicators bar when screen orientation is landscape
and screen width < units.gu(51) (7431a04)
2015-04-14 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (7e93ed2)
2015-04-13 Stefano Verzegnassi
* Enabled landscape support (4dd7e7e)
* - Fix #1437622: Show a dialog when an unsupported file is imported
through Content-Hub - Fix #1437626: Show a toast
notification that allows user to open an imported
document.
Fixes: https://bugs.launchpad.net/bugs/1437622,
https://bugs.launchpad.net/bugs/1437626. (a227260)
* Merge with trunk - Updated .pot file (8b650fd)
2015-04-13 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (fd5786f)
2015-04-12 Stefano Verzegnassi
* Open a document in fullscreen mode on devices.
Fixes:
https://bugs.launchpad.net/bugs/1428718. (dc192b1)
* - Fix #1432696: Show a downward chevron as 'back' action in ToC
page - Fix #1435304: Highlight the current page in the
table of contents - Fix: Make page header visible when the
ToC view is expanded.
Fixes:
https://bugs.launchpad.net/bugs/1432696,
https://bugs.launchpad.net/bugs/1435304. (2281915)
* Merge with trunk - solved conflict with fr translation (728d96d)
* Fixed plural forms (c0c78aa)
2015-04-11 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a496ef0)
2015-04-10 Stefano Verzegnassi
* Merge with trunk (bb005d0)
* Fixed wrong text color in PickImported dialog (b48274d)
* Removed 'Needs testing' tags from code (4a61a9b)
* Merge with
lp:~verzegnassi-stefano/ubuntu-docviewer-app/pdf-toc-improvements
and avoid conflicts with earlier changes in
PdfContentsPage (a94b402)
* Added fullscreen support (b7920fa)
2015-04-10 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (2d7b371)
2015-04-09 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (d8ac610)
2015-04-08 Stefano Verzegnassi
* Use a downward chevron in ToC page (bae826a)
* Make pdfPage header visible if ToC page is expanded (c309c5d)
* Highlight the current page in PDF ToC view (9875afc)
2015-04-08 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b473531)
2015-04-08 Stefano Verzegnassi
* Show a notification when a document is imported (dd35c6e)
* Added toast notifications (24ecdcb)
2015-04-07 Stefano Verzegnassi
* Show an error dialog when an imported document is not supported
(2dd10b8)
* Return list of imported document from the import handler (b7b2d92)
* Show/Hide header on tap in PdfView.
Fixes:
https://bugs.launchpad.net/bugs/1419468. (1b10cd6)
* Merge with trunk / Updated pot (742e267)
* Added night mode.
Fixes: https://bugs.launchpad.net/bugs/1432420.
(6a1e7f9)
* Merge with trunk / Update pot (dafb4bd)
2015-04-03 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (4d3fdf1)
2015-04-02 Stefano Verzegnassi
* Fix for string length > 79 chars in autopilot test (03dfa9d)
* Fix autopilot test (0680416)
* Tap to show/hide header in PdfView (37d9131)
2015-04-01 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (4f8836c)
2015-03-27 Stefano Verzegnassi
* Moved the DocviewerFile class in the DocumentViewer module
(dd218ea)
2015-03-27 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (507ec0d)
2015-03-26 Stefano Verzegnassi
* Workaround for multi-core support on ARM SoCs.
Fixes:
https://bugs.launchpad.net/bugs/1432412. (e22292c)
* Err... it actually works on device - Removed wrong comment
(e90d8c4)
* Added night mode (0579d7a)
2015-03-25 Stefano Verzegnassi
* Workaround for bug #1432412 (835a75e)
2015-03-24 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (832fcf3)
2015-03-23 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (3eea439)
2015-03-20 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (cd9e2e1)
2015-03-18 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (83fc444)
2015-03-17 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (d23cbbc)
2015-03-16 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (5808974)
2015-03-14 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a9aa0ac)
2015-03-13 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (18df9c6)
2015-03-12 Stefano Verzegnassi
* Added a TRANSLATORS comment for 'Contents' in PDF view.
Fixes:
https://bugs.launchpad.net/bugs/1431488. (818a70b)
* Added a TRANSLATORS comment for 'Contents' in PDF view (3f2133b)
2015-03-10 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (768ea69)
2015-03-09 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (637ae72)
2015-03-08 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (9ba8fd4)
2015-03-07 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (058dbd4)
2015-03-06 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (9d45b1a)
2015-03-05 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (75f4bdd)
2015-03-04 Stefano Verzegnassi
* [DocumentGridDelegate] Moved file size label on a 3rd line.
Fixes:
https://bugs.launchpad.net/bugs/1428248. (0302c2e)
* Merge with trunk (90ef44a)
* [DocumentGridDelegate] Fixed alignment of text (f33df64)
* [DocumentGridDelegate] Move file size on a 3rd line (b562375)
* Several translation fixes.
Fixes:
https://bugs.launchpad.net/bugs/1428092,
https://bugs.launchpad.net/bugs/1428096. (a643d21)
* Fix #1428248 (f4d98d3)
* Use standard SI prefixes for file size (4dfc443)
* Fix translation issues (5139c9e)
2015-03-04 Richard Somlói
* Make the "Go to page..." string translatable with i18n.tr() and
update the translation template. (0b4bd59)
* Make the "Go to page..." string translatable and update the
translation template (6335910)
2015-03-04 Adolfo Jayme Barrientos
* Grammar: proper use of comparative in translatable string.
Fixes:
https://bugs.launchpad.net/bugs/1427911. (3a8a677)
2015-03-04 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (8b41cd6)
2015-03-03 Adolfo Jayme Barrientos
* Grammar: proper use of comparative in translatable string (3108376)
2015-03-03 Stefano Verzegnassi
* List of changes: - Refactored project structure (too much QML
files in the same folder) - Added full content-hub
support - Uri handler support - In-app browser -
Document Viewer has now rw permissions in HOME/Documents
- Dropped support for Image and Other file type - Use new
splash screen features.
Fixes:
https://bugs.launchpad.net/bugs/1377638,
https://bugs.launchpad.net/bugs/1395111,
https://bugs.launchpad.net/bugs/1398765,
https://bugs.launchpad.net/bugs/1399729,
https://bugs.launchpad.net/bugs/1417113. (6ac23a4)
* Revert 'setOrganizationName' change (f044d95)
* Fixes for the minor issues found in the last review (f624a7c)
* Remove 'debug' policy from apparmor profile (56724c2)
2015-03-02 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (157693c)
2015-03-01 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a45bc20)
2015-02-27 Stefano Verzegnassi
* Fixed revision 89 (0db7778)
* Terribly bad-designed workaround for looking QML files path up in
QStandardPaths::DataLocations (3b91afa)
2015-02-26 Stefano Verzegnassi
* Updated pot again (in order to avoid any possible conflict)
(0ec86ab)
* Merge with trunk (6fdb235)
* Fixed DocumentEmptyState not shown on screen (53c8b66)
* Updated pot (153e12b)
* Fixed zoom performance.
Fixes:
https://bugs.launchpad.net/bugs/1418651. (3db8060)
2015-02-24 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (3f87a83)
2015-02-23 Stefano Verzegnassi
* Removed unused 'Contains' module from AP test (de6698d)
* Updated debian package - bump version to 0.3.0 (a487ac7)
2015-02-20 Stefano Verzegnassi
* Implemented new splash screen features (538b10e)
*
Fixes: - DocumentModel rowCount after addition/deletion of a
document in/from the folder - PdfView releasing page
resources when zooming in/out (b09856a)
2015-02-16 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (4424982)
2015-02-15 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (3992cf8)
2015-02-13 Stefano Verzegnassi
* Basically: - Refactored project structure (too much QML files in
the same folder) - Added full content-hub support - Uri
handler support - In-app browser - Document Viewer has
now rw permissions in /home/stefano/Documents (bcd8496)
2015-02-12 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (5e10a6a)
2015-02-11 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (a629e54)
2015-02-11 Stefano Verzegnassi
* Removed image_test resources (b014e55)
* Drop support for image formats (75e0df7)
2015-02-10 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (7756068)
2015-02-09 Stefano Verzegnassi
* Fix zoom performance (d3c5d58)
2015-02-09 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (930c012)
2015-02-08 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (178289c)
2015-02-07 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (8e72b0f)
2015-02-05 Stefano Verzegnassi
* Added scrollbars in PdfView & fixed a typo in ToC model.
Fixes:
https://bugs.launchpad.net/bugs/1418649. (41e0353)
* Added scrollbar in PdfView & fixed a typo in ToC model (1eeed4f)
* PdfView: Added Table of Content.
Fixes:
https://bugs.launchpad.net/bugs/1398767. (a3904b3)
* Forgot to remove a signal from PdfContentsPage (2cd47d8)
* PdfView bottom edge enabled only when ToC is not empty (4ac9251)
* Fixed some issue when ToC does not exist (96ba2a2)
2015-02-05 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (aae6f8b)
2015-02-04 Stefano Verzegnassi
* Updated app version (bc37f77)
* [PDF] Added ToC model (76baaa0)
* New header style. (0ecc904)
* Enable zoom in PDF view & multithreading support.
Fixes:
https://bugs.launchpad.net/bugs/1399978. (44cd354)
* Fixed last bits of autopilot test (4b9579f)
* Fixed last bits of autopilot test (995a9e1)
* Merged prerequisite branch changes (8ed670a)
* Fixed broken autopilot tests (770fca8)
* Fixed broken debian package building (ef3fa74)
* Merge with prerequisite branch (341cac7)
* Any comma is important, thank you Jenkins for such lesson (43f21f7)
* Merge with trunk - solved conflict in debian/control (00987f6)
2015-02-04 Daniel Holbach
* Essentially just: - fix a typo - bump Standards-Version - and
fix FTBFS (in pbuilder) by removing qmake from build-deps
it's what filemanager does too which has a similar
setup. (c9a750a)
* bring build-deps in line with filemanager, fixes FTBFS (967680f)
* informations → information (822adcb)
* update standards-version (d6cdbd6)
* remove qt5-default build-dep, it's a meta-package and its depends
are already build-depends (00adda3)
2015-02-04 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (15fd5e2)
2015-02-03 Stefano Verzegnassi
* Merge with prerequisite branch - Updated pot - Fixed things asked
in MP comments (54dee3f)
* Merge with trunk - Updated pot (7545ff6)
* Renamed classes in QML Poppler plugin. (a9afa45)
* Pot. (3988f45)
* Merge with trunk (b23d1cf)
* Spring cleaning (013539e)
* Dark background in ImageView.
Fixes:
https://bugs.launchpad.net/bugs/1416176. (4226340)
2015-02-02 Stefano Verzegnassi
* Dark background in ImageView (08840b9)
* Reduce PdfView cachebuffer by half (37f8be1)
2015-01-31 Stefano Verzegnassi
* Revert previous commit, try to fix deb package (91f7afd)
* Fix broken package (b9bc09b)
* PDF image provider index now starts at 0 (f837407)
2015-01-31 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (4cbb7fc)
2015-01-30 Stefano Verzegnassi
* Increment version number (0eea7fa)
* Fixed an error while importing new code in PdfView (36ce7e1)
* Fix an error in PdfViewDelegateHeader (49935a1)
* New header style with ActivityIndicator (05a39d2)
* Use PDF.VerticalView and enable zoom in PDF view (703a79d)
* Add VerticalView class in popplerqmlplugin (but not use it for now)
(e473848)
* Multithread PDF pages provider (79cca19)
* Expose QQuickView object to QML (76ec9b9)
* Updated pot -.-" (344c291)
* Renamed PagesWorkerThread class in PdfThread (popplerqmlplugin)
(c2428cf)
* Renamed PdfPage class in PdfItem (popplerqmlplugin) (eda0179)
* Renamed PageImageProvider class in PdfImageProvider and clean up
the code (popplerqmlplugin (e02b276)
* Clean ImageProvider code (popplerqmlplugin) (501bd8d)
* Code styling in PdfDocument class (popplerqmlplugin) (14e57d6)
* Renamed PdfModel to Document (4d0f57e)
* Reorder CMakeLists files. (784b2f7)
* Fix code style and use UITK features.
Fixes:
https://bugs.launchpad.net/bugs/1416068. (b1f85ea)
* Text view header description. (d4a15d3)
* Fix some error in rev 50. (05e3bc1)
* Trigger Jenkins rebuild (a56b46d)
2015-01-30 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (6ad3c2a)
2015-01-29 Stefano Verzegnassi
* Boring bit that Stefano had to do. (01c2cb3)
* Updated Debian package. (4a0759c)
* [deb-pkg] Added locale (d5bd679)
* Hi all! (ea9e7cd)
* [deb-pkg] Remove unnecessary dependencies (4825dab)
* Fix #1416068 (7bec220)
* JS code styling (8ed9166)
* Refactoring dialogs (8bc2252)
* Just some reordering of CMakeLists files (a8b242c)
* Added license headers where missing (459ed5d)
2015-01-29 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (63d75df)
2015-01-27 Stefano Verzegnassi
* Mime type description in TextView header (cf893e1)
2015-01-27 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (936adf0)
2015-01-26 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (b168d55)
2015-01-25 Launchpad Translations on behalf of ubuntu-docviewer-dev
* Launchpad automatic translations update. (e49e1c7)
2015-01-24 Bartosz Kosiorek
* Introduce translation support for DocViewer.
Fixes:
https://bugs.launchpad.net/bugs/1413673. (9170025)
* Introduce translation support for DocViewer (c06b889)
2015-01-23 Stefano Verzegnassi
* Fix error from last merge: Use TextViewDefaultHeader in TextView
(b1acf2b)
* Fix error from last merge: Remove Scrollbar (already included in
TextArea) (45ee7f5)
2015-01-21 Stefano Verzegnassi
* Added Empty State in Welcome screen.
Fixes:
https://bugs.launchpad.net/bugs/1395065. (0074e33)
* Ellipsize document name and use new header style in all the views.
Fixes: https://bugs.launchpad.net/bugs/1390683. (20541f0)
* Update framework to 'ubuntu-sdk-14.10'.
Fixes:
https://bugs.launchpad.net/bugs/1401718. (6dbfb30)
* Update framework to 'ubuntu-sdk-14.10 (04b8948)
2015-01-16 Stefano Verzegnassi
* Merge with trunk (26512e8)
* Update framework to 'ubuntu-sdk-14.10-qml' (c1b5659)
* Added EmptyState in Welcome screen (9143a01)
2015-01-13 carla-sella
* Autopilot test for ubuntu-docviewer-app.
Fixes:
https://bugs.launchpad.net/bugs/1400877. (aae54f2)
2014-12-16 carla-sella
* Autopilot test for ubuntu-docviewer-app for opening pdf file.
Fixes: https://bugs.launchpad.net/bugs/1400852. (385060d)
2014-12-14 carla-sella
* Added new test: test_go_to_page_pdf_file. (a9ddc4c)
* Refactored open_pdf_file test. (176e1db)
2014-12-11 nskaggs
* Update AP structure.
Fixes:
https://bugs.launchpad.net/bugs/1387029. (88e8a3d)
2014-12-10 nskaggs
* add sampledir (9628160)
* flake8 (5c68ac0)
* simplify docviewer tests (94151d7)
* fix launch and docviewer (9ef66bd)
* flake8 fixes (c1ce972)
* change path check for tests (5598187)
* remove debug (3781f0a)
* merge down (2c6bec3)
* fix launching (98c95e4)
* update home patching (695ea63)
* remerge revamp of AP tests (04b8c4d)
2014-12-08 Stefano Verzegnassi
* Removed deprecated code from TextView.qml and TextView bg color set
to white.
Fixes: https://bugs.launchpad.net/bugs/1399266.
(0cfbdba)
* Fixed document size format.
Fixes:
https://bugs.launchpad.net/bugs/1394723. (f92ad93)
* 'Loading...' is now translatable + fixed a typo (fec8416)
2014-12-05 Stefano Verzegnassi
* Remove deprecated code from TextView - fix #1399266 (405a7ab)
* Use the same code for textPage.head.contents (146997c)
* Use *ViewDefaultHeader also in the image view and the text view
(138df9c)
2014-12-04 Stefano Verzegnassi
* Ellipsize the document name if too long (fd8c509)
* Fix document size format - lp:1394723 (9ccd631)
2014-11-29 Stefano Verzegnassi
* Use ZoomableImage from Unity 8 to show images. (56ec8f8)
2014-11-28 Stefano Verzegnassi
* Added a GoToPage dialog in pdfView.
Fixes:
https://bugs.launchpad.net/bugs/1390684. (f1dbb0e)
2014-11-10 nskaggs
* fix manifest for builds. (dd04e07)
* tweak manifest (601aaab)
2014-11-08 Stefano Verzegnassi
* Restore header actions in imageView (311e016)
2014-11-08 David Planella
* Minor doctype visualization improvements on the welcome screen.
Fixes: https://bugs.launchpad.net/bugs/1390685,
https://bugs.launchpad.net/bugs/1390686. (675c253)
2014-11-08 Stefano Verzegnassi
* Fixed autopilot tests failures (952bf57)
* Use ZoomableImage from Unity8 to show pictures (1a856a8)
2014-11-08 David Planella
* Renamed 'Unknown' to be more user-friendly, reordered doc types
(ff56f22)
2014-11-07 Stefano Verzegnassi
* Added ContentHub support.
Fixes:
https://bugs.launchpad.net/bugs/1387025,
https://bugs.launchpad.net/bugs/1387026. (b072cee)
* Fixed a problem with AppArmor while trying to get mime type for a
file with QProcess and /usr/bin/file. (lp:1387651); Added
creation date property in file-qml-plugin (lp:1387023.
Workaround for an issue in poppler-qml-plugin (PDF pages
were loaded twice); Now 'architecture' field value in
manifest.json.in is set by CMake while building the
project.
Fixes: https://bugs.launchpad.net/bugs/1387023,
https://bugs.launchpad.net/bugs/1387651. (4b7d9c9)
* Added GoToPage dialog (b3acba5)
* tidy pdfView code up (8adec44)
2014-11-04 Stefano Verzegnassi
* Fixed issue with ContentPeerPicker (binding loop for visible
property while importing a file from an external source)
(47ceb48)
2014-11-03 Arto Jalkanen
* Compilation instructions. (ce4a616)
2014-11-03 Stefano Verzegnassi
* It's called head.backAction... (4da72b1)
* Added header backAction in imageView and textView (33d7616)
2014-11-03 Arto Jalkanen
* Fixed launch information. (fe26e36)
2014-11-01 Arto Jalkanen
* Compilation instructions. (0c2514e)
2014-11-01 Stefano Verzegnassi
* Fixed autopilot error: 'Too many blank lines' (56db49d)
2014-10-31 Stefano Verzegnassi
* Updating autopilot tests (8cc298a)
* Set the 'architecture' value in manifest.json while building
project with CMake (af0d7db)
* Fixed manifest.json.in (sometimes QtCreator automatically changes
maintainer field value) (7eb8a2b)
* Added support for ContentHub (bc4d6f9)
* Removed unused import and fixed manifest.json.in (1359f12)
* Workaround for an issue with poppler-qml-plugin (and PDF pages
layout changed) (aca6888)
* Fix bugs #1387651 and #1387023 (5789e90)
2014-10-29 David Planella
* New UI design for plain text viewer. (29762a9)
* Use the new Poppler QML plugin (with asynchronous page loading) in
Pdf view.
Fixes: https://bugs.launchpad.net/bugs/1387021.
(f87aa6e)
* Adds the file plugin to the source tree. (9e2313d)
2014-10-28 David Planella
* Removed leftover file (7c2e5f7)
* Fixed some i18n strings (96d43a7)
* Merged New UI for plain text viewer (a7e7ec3)
* Added additional build dependency (55c261a)
* Changed plugin path to com.ubuntu... (c92edd9)
* Merged branch to add Poppler plugin (16c3d5c)
* Updated ignore file (2a48edd)
* Removed logging (c1341bc)
* Fixed check for binary file on tests (4c9f302)
* Removed unneeded import to make pyflakes happy (42ea2ab)
* Removed unnecessary check for arch dir (d04f8a0)
* Added fixes to correctly load the plugin, thanks to Arto Jalkanen
(3172b2e)
2014-10-25 Arto Jalkanen
* Fixing plugin usage so that application can be started. (41b6bfa)
2014-10-23 David Planella
* Really really fix tests (12debbe)
2014-10-23 Daniel Holbach
* fix location of binary for tests (05e93ec)
2014-10-21 David Planella
* Properly fixed import (691b66c)
* Fixed missing import (be8d947)
2014-10-21 Daniel Holbach
* add missing import (deb8aef)
2014-10-21 David Planella
* Added local pep8 check (4a01d9c)
2014-10-21 Daniel Holbach
* make sure pep8 is run during build (215f3d8)
* fix pep8 issues (a3c8d4c)
2014-10-21 David Planella
* Fixed pep8 issues (fa4fa7f)
2014-10-21 Stefano Verzegnassi
* Fixed dependencies and naming issues, thanks to Daniel Holbach
(7c3c6fd)
2014-10-21 David Planella
* Fixed autopilot tests by adapting name of the binary to latest
changes (a361420)
2014-10-21 Stefano Verzegnassi
* Fixed autopilot tests broken after commit 46 (01dd990)
* New design for TextView (988aa93)
2014-10-21 David Planella
* Fixed dependencies and naming issues, thanks to Daniel Holbach
(9ca0993)
2014-10-21 Daniel Holbach
* add missing depends, run wrap-and-sort (a2b52c8)
2014-10-21 Stefano Verzegnassi
* Fixed typo in autopilot tests (4f17f8b)
* Disabled header actions which are not still implemented (d9af667)
* Fixed typos and added Poppler QML Plugin into trunk (ce1e470)
2014-10-21 Daniel Holbach
* add to Depends (b10f1f9)
* install bits into the right place, rename docviewer and
docviewer-app to ubuntu-docviewer-app (f20dc92)
* replace qt5-default with qtbase5-dev build-dep (49c05f2)
* add qtdeclarative5-dev as build-dep (55de442)
* ran wrap-and-sort (53475da)
2014-10-20 Stefano Verzegnassi
* Including Qml Poppler plugin (500dd6c)
2014-10-20 David Planella
* Merged Autopilot fixes from Stefano Verzegnassi (441d895)
2014-10-20 Stefano Verzegnassi
* Use PageStack to load the right view (and latest App Header)
(cb00508)
* Fix autopilot tests (12732ff)
* Fix file-qml-plugin and resolve relative path using currentDir
(e758b43)
2014-10-08 David Planella
* Merged from trunk, fixed a typo (3315bcf)
* Finished integration of the file plugin into the source tree
(a64c6ba)
* Project can now be opened in Qt Creator, only qt5_use_modules macro
needs to be sorted (411dbd8)
* Fixed all cmake files, reorg of QML files (1559d2c)
* Re-added app sources (0a74fb8)
* Reorganized files to prepare inclusion of the file QML plugin into
the source tree (991f716)
2014-10-06 Akiva Abraham
* Update component imports. (b685322)
* Merged from Trunk (7263f69)
2014-09-28 Fabio Colella
* Adding some install directives (a916dd2)
2014-09-26 Akiva Avraham
* Updated library imports to qtquick-2.3. (ddfa115)
2014-09-26 Fabio Colella
* Initial work to make file-qml-plugin work (8a69039)
2014-09-24 Akiva Avraham
* Changed the details list items with long text contents to
Subtitled, this way they can see the full string.
Fixes:
https://bugs.launchpad.net/bugs/1364248. (b1351a4)
2014-09-24 David Planella
* Some cmake fixes for the app to build from Qt Creator or plain
cmake. (f3c5a04)
* Added revno for Qt Creator builds. For some reason, the cmake
execute_process command does not work to execute 'bzr
revno' (6d354f5)
* More cmake fixes (1e85187)
* Some cmake improvements (5a659ae)
2014-09-21 Akiva Avraham
* Changed the details list items with long text contents to
Subtitled, this way they can see the full string (b95a2ef)
2014-09-20 Akiva Avraham
* Updated library imports to qtquick-2.3 (44c3846)
2014-09-18 Fabio Colella
* Removed qmlproject and added proper CMakeLists to enable the
development with cmake. Also removed the desktop file
which is now created by cmake from a desktop.in.in file.
Fixes: https://bugs.launchpad.net/bugs/1366007,
https://bugs.launchpad.net/bugs/1368310. (574439b)
* Reverted to 53 (fec54be)
* Make the tests follow the python* environment (33dc5c6)
* migrating tests to python3 (56d2328)
* Upgraded to python 3 (40d703f)
2014-09-17 Fabio Colella
* Removing latest changes before the Holbach fix (c06be29)
* Reverted to r47 (e2ecd2b)
* Merged Daniel Holbach fixes for packaging (84abd1e)
* testing (3eb9f50)
2014-09-17 Daniel Holbach
* fix paths for installation (e089dcc)
* fix not-binnmuable-all-depends-any problem for
ubuntu-docviewer-app-autopilot (d32cb93)
* remove duplicate Section definition (c444330)
* ran wrap-and-sort (7657168)
* add for ubuntu-docviewer-app-autopilot (9b52935)
2014-09-16 nskaggs
* revamp ubuntu doc viewer tests (6d20984)
2014-09-16 Fabio Colella
* This way works better, revert 45 (312f4be)
* changed cmake for test (43d585c)
* Needed change to properly install tests (e157466)
* python2 is only python (e10530a)
* Reverting unneded changes (c00b9a8)
* Reverting to python2 (0335129)
2014-09-15 Fabio Colella
* Enabled python3 support for autopilot (d930fff)
2014-09-14 Fabio Colella
* Edited test folder name in root CMakeLists (191590a)
* Edited test/autopilot/CmakeLists.txt to install tests (54b938d)
* Added necessary file docviewer-app.in (864edaa)
* Updated policy to 1.2 (26ea4a5)
* Merged to trunk, updated CMakeLists to use the new icon and added
needed dependancies to debian/control (2f81af3)
* Added the new icon with origami design. (7685218)
2014-09-13 Fabio Colella
* Merge of trunk (8bee9bf)
* Changed desktop file to avoid absolute path for the icon (1b4dc2b)
2014-09-12 Fabio Colella
* Corrected minor difference on the lines of the icon (059288d)
* Updated manifest.json and docviewer.apparmor (519aabc)
* Changed debian/rules to dh_auto_configure -- -DCLICK_MODE=OFF
(89972af)
* Corrected CMakeLists.txt to not use url-disptcher (ef44fe0)
* New icon added (4951537)
* Removed qmlproject and desktop files. The first is no longer needed
and the second is generated by cmake (e39e271)
2014-09-11 Akiva Avraham
* Merged with trunk (4315d7f)
2014-09-11 Andrew Hayzen
* Fix for pep8 issues; Show py files in qtcreator. (673e056)
* Rerun jenkins (47a3f6a)
2014-09-11 Fabio Colella
* Committed the CMakeLists (244e649)
* Added CMakeLists.txt (131f6da)
* Porting to cmake (9ece6a8)
* Porting to cmake (222d919)
2014-09-11 Andrew Hayzen
* rerun jenkins (f6b0cd2)
* Fix for pep8 issues; Show py files in qtcreator (e4924be)
2014-09-02 Akiva Avraham
* upgraded imports to: ubuntu.components 1.1 ubuntu.compontens.xxxx
1.0 (f6f2e5e)
2014-05-21 Alan Pope
* pep8 and pyflakes updates - fix bug 1317198.
Fixes:
https://bugs.launchpad.net/bugs/1317198. (34f21a8)
2014-05-20 Alan Pope
* pep8 and pyflakes cleanup (3d0615d)
2014-05-08 Bartosz Kosiorek
* Added keyboard support, improve opening text files (now all text
files are opening in TextView), add Creation Time row to
Details tab, improve horizontal scalability of the Details
Tab, fix "unknow" typo and localize all remaining texts.
Fixes: https://bugs.launchpad.net/bugs/1292115. (c646560)
* Fix Autopilot Unknown file type test (edd8df9)
* Update autopilot test (6a543c5)
2014-03-13 Bartosz Kosiorek
* Improve Ubuntu-docviewer-app for desktop (9cb55e4)
2013-10-14 Granger Anthony
* First version of zoom feature. (181e14b)
* First version of zoom feature (6857f06)
2013-10-07 Carla Sella
* Integrated emulator. (0c1ec86)
2013-10-05 Francis Ginther
* Moved ubuntu-ui-toolkit-autopilot from a build dependency to a
dependency for the test package. (a305110)
2013-09-30 Carla Sella
* Added another missing comma. (deeff40)
* fixe missing comma. (6bc5eaf)
* Added ubuntu-ui-toolkit-autopilot dependency in debian/control.
(243337b)
2013-09-28 Carla Sella
* Added test open PDF file mimetype. (8ed10f1)
* Added open PDF file type test. (6b4fb44)
* Added open PDF file type test. (48571ee)
2013-09-27 Carla Sella
* Integrated emulator. (961c76d)
* WIP (5549a44)
* WIP Integrating emulator. (e150a3d)
2013-09-26 Granger Anthony
* Put the path of the file to open before the path of
ubuntu-docviewer-app in the .desktop file. (5f4c41a)
* Change order of arguments in .desktop (30b0ff8)
2013-09-26 Sergio Schvezov
* Dropping the wrapper script. (a5d2791)
* Removing the install rule (e3b9181)
2013-09-25 Sergio Schvezov
* Getting rid of wrapper script (bd50c73)
2013-09-25 Granger Anthony
* Add the usage of the new file-qml-plugin. (8dd49ef)
* Add file-qml-plugin in dependances (147ea31)
2013-09-24 Granger Anthony
* Fix ubuntu-docviwer-app sh script (f2d7473)
* Fix autopilot tests (f21a1c9)
* Remove the launcher and all files link to it, update the README,
add the ubuntu-docviewer-app script, add PDF into the
.desktop (4404379)
2013-09-05 Granger Anthony
* Add the usage of the new file-qml-plugin (48bc257)
2013-08-09 Granger Anthony
* Fix to display the last page of a PDF. (ab3bb75)
* Fix the bug that the last page of the pdf can't be seen (f643929)
2013-08-08 Granger Anthony
* Add the support of pdf. (847589e)
* Added qtdeclarative5-poppler-qml-plugin in deps (1531a5b)
2013-08-07 Granger Anthony
* Make Yes/No buttons of the unknow mimetype dialog working.
(fd12fe1)
2013-08-05 Omer Akram
* fixes the failing autopilot tests on touch devices. (4016979)
2013-08-04 Granger Anthony
* Yes/No buttons of the unknow mimetype dialog now work (b42438b)
2013-08-04 Omer Akram
* revert dummy changelog entry (9f75d20)
* fix failing tests on touch devices (72ef659)
2013-08-01 xeranas
* Autopilot test for opening unknown file type. Currently
"unknown.type" is just archived & renamed plaintext.txt
file.
Fixes: https://bugs.launchpad.net/bugs/1188766.
(4f94bfc)
2013-08-01 mhall119
* Updated attribution in debian/copyright. (7e1550b)
2013-07-30 xeranas
* #1188766 autopilot test for unknown types (91c2d0c)
2013-07-24 mhall119
* Add individual contributors to debian/copyright (81108da)
2013-07-19 Granger Anthony
* Starting working on the pdf viewer (42011f3)
2013-07-03 Granger Anthony
* A simple testcase to check if docviewer can open a plain text file.
Fixes: https://bugs.launchpad.net/bugs/1188757,
https://bugs.launchpad.net/bugs/1188758,
https://bugs.launchpad.net/bugs/1188759,
https://bugs.launchpad.net/bugs/1188760. (6f1b306)
* Base for all future autopilot testcases. (ff36f55)
2013-06-30 Granger Anthony
* Add testcases for opening an image and read image meta-data
(b84a8ea)
2013-06-29 Granger Anthony
* Added a testcase to read mimetype of a text file (35ee5b1)
* openFile testcase added (3729665)
2013-06-28 Granger Anthony
* Fix for -testability (d9a1e1e)
2013-06-27 Granger Anthony
* Fix to launch the application with autopilot (6dc3448)
2013-06-13 nskaggs
* first pass at autopilot tests (d3fa849)
2013-06-04 Omer Akram
* initial autopilot skeleton for the document app. (9fa044d)
2013-06-01 Granger Anthony
* Fix for bug #1176592.
Fixes:
https://bugs.launchpad.net/bugs/1176592. (d70eb4a)
2013-05-31 Granger Anthony
* Fix for bug #1176592 (c2f3b28)
2013-05-31 mhall119
* Update to allow opening by XDG. (b37076e)
2013-05-31 Omer Akram
* fix (d28ede3)
* add initial autopilot skeleton and packaging (c69a91b)
2013-05-30 mhall119
* Update to allow opening by XDG (a7ef8c4)
2013-04-28 Granger Anthony
* Fix for the 'utils.js unavailable' error. (72c9cd7)
* Fix 'utils.js unavailable' error (d20ea91)
2013-04-25 Granger Anthony
* Added file type recognition, added dynamic component loading, added
image component . (e88e6eb)
* Changed architecture from all to any in debian/control (dadef87)
* Make images flickable (8d7aada)
* Added file type recognition, added dynamic component loading, added
image component (8964e91)
2013-04-23 Granger Anthony
* This branch fix some bugs that made the launcher did not run.
(bb204e2)
* Fix bad path in .qmlproject (baca48c)
2013-04-22 Granger Anthony
* Fix bad QML file path, fix QML filename, fix bad exec path in
.desktop, fix error when the QML file is not found
(601bb11)
2013-04-22 Francis Ginther
* Version bump. (2978c9b)
2013-04-22 Granger Anthony
* Initial support for opening text files, includes a C++ wrapper for
reading commandline arguments. (fd80243)
2013-04-20 Granger Anthony
* Fix build depends (5e92fe4)
* Fix build depends (800c599)
* (98a8314)
2013-04-19 mhall119
* Fix build depends (dedfa49)
2013-04-20 Granger Anthony
* Added qtchooser in debian/control (8e984cd)
* Fix for debuild errors (f68c6e4)
2013-04-19 Granger Anthony
* Fix debuild errors (a156841)
2013-04-19 Francis Ginther
* Version bump (aed735b)
2013-04-19 Granger Anthony
* Merged from lp:~didrocks/ubuntu-docviewer-app/build-fix (d92e99e)
2013-04-19 Didier Roche
* add a .pro file at the root of the directory so that debhelper
builds with it. Rename the .pro to .pri for the included
qmake file as it's the rule, and change paths (d9ca170)
2013-04-19 Granger Anthony
* Fix conflicts (0fb03d6)
2013-04-18 Olivier Tilloy
* Updates packaging for a better install. (bed371c)
2013-04-18 Granger Anthony
* Updated .bzrignore (965860c)
* Cleaning some files and directories (0623ccf)
* New README (e6ff5c8)
2013-04-17 Granger Anthony
* Added the plain text file viewer and details tab (cc993f3)
2013-04-11 mhall119
* Merge from template branch (7a5700b)
* Add applicationName to MainView (97d2572)
2013-04-11 David Planella
* Merged packaging improvements from
lp:~osomon/ubuntu-phone-commons/appTemplate-packaging-fixes
(205ebc4)
2013-04-08 Olivier Tilloy
* Remove again the fallback dependency on qt-components-ubuntu. It is
really not needed any longer, as the ubuntu-sdk-team
release PPA contains the latest
qtdeclarative5-ubuntu-ui-toolkit-plugin for quantal.
(db98667)
* Set split mode for bzr builddeb plugin (see
http://jameswestby.net/bzr/builddeb/user_manual/split.html).
(2becdd8)
2013-04-05 Olivier Tilloy
* Revert the last change, after all the fallback dependency is still
needed for Quantal desktops. (ad23fd6)
* Remove the fallback dependency on the old UI toolkit package name,
it is not needed any longer. (0478543)
* Move back special dependencies to the beginning of the list, this
seems to be a widely used convention. (c101f0e)
2013-04-04 Olivier Tilloy
* Add bzr ignore rules. (b03e3e6)
* Largely simplified install rules. (03d53b3)
* Removed unused substitution variable. (52af2b7)
* Removed useless section specifier for the binary package. (388cf3f)
* Add a Vcs-Bzr field to the control file. (d242d6c)
* Re-order runtime dependencies. (6fe2447)
* Updated source format to 1.0. (31783ac)
* Removed unused file. (76ffbf2)
* Minor updates to the copyright info. (50c3097)
* Enhanced package description. (f46b871)
* Updated dependency on the Ubuntu UI toolkit package. (422568c)
* Make the package architecture-independent. (2a47428)
* Bump standards version to 3.9.4. (65c2b33)
* Bump debhelper dependency to 9. (c1279c5)
* Updated maintainer field of the control file. (8024452)
2013-02-12 Michael Hall
* Modifications for Document Viewer app (a7dbdef)
* Initial code template (19ebe52)
|