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
|
2018-12-30 15:00:36 +0100 Samuel Gaist (e3332ee)
* Migrate publish susbscribe to QRegularExpression
2018-12-30 14:55:50 +0100 Samuel Gaist (53ac8dc)
* Migrate the service framework to QRegularExpression
2018-12-30 14:44:16 +0100 Samuel Gaist (edf52a1)
* Migrate the QDeviceInfo class to QRegularExpression
2018-01-22 11:47:05 +0200 Jani Heikkinen (66e4567)
* Fix license headers
2017-11-22 07:55:49 +0200 Jani Heikkinen (ca54870)
* Update outdated license headers with correct ones
2017-09-07 13:10:40 +0200 Oliver Wolff (ed87271)
* Fix namespaced simulator build
2017-09-07 13:10:58 +0200 Oliver Wolff (f1f51e4)
* Fix simulator build for Windows
2017-09-07 13:10:14 +0200 Oliver Wolff (9c204e0)
* Move inputinfomanager into generic systeminfo sources
2017-07-13 08:52:38 +0200 Rainer Keller (f364358)
* simulator: Export needed symbols
2017-07-19 09:36:30 +0200 Rainer Keller (7f9178d)
* Disable serviceframework for Boot to Qt
2017-07-13 08:51:08 +0200 Rainer Keller (3df0b2b)
* simulator: Add missing glue code for health and temperature
2017-07-12 09:22:58 +0200 Rainer Keller (cb59f12)
* simulator: Use refactored QtSimulator API
2017-07-11 15:12:44 +0200 Rainer Keller (25e7bdf)
* simulator: Remove DeviceInfo and NetworkInfo support
2017-07-12 09:32:06 +0200 Rainer Keller (1c18b91)
* Compile fix for simulator
2017-07-12 09:32:40 +0200 Rainer Keller (9d3506e)
* Remove unneeded ifdef
2017-07-13 08:53:42 +0200 Rainer Keller (ed14af1)
* simulator: Fix binary protocol bug
2017-07-12 09:22:25 +0200 Rainer Keller (c982757)
* simulator: Fix compile warning
2017-05-09 08:13:33 +0200 Rainer Keller (bd19e66)
* Remove strict compile config
2017-05-08 10:29:01 +0200 Rainer Keller (ec51642)
* Remove strictStrings check from compile flags
2017-03-10 19:03:34 +0100 Marc Mutz (4a859d1)
* Remove uses of QString::null
2017-02-09 10:57:31 +0100 Albert Astals Cid (dceb7c7)
* Don't crash if udev_monitor_new_from_netlink fails
2016-11-15 09:57:39 +0100 Maurice Kalinowski (f46977a)
* msvc: Fix build with less permissive compiler options
2016-11-15 13:19:51 +0100 Maurice Kalinowski (8c3c657)
* mingw: fix build
2016-08-26 06:44:12 +1000 Lorn Potter (ffcf1ff)
* Fix crash on mir based systems
2014-11-29 10:23:57 +1000 Lorn Potter (fcda545)
* Add QInputDeviceInfo
2016-05-25 12:43:00 +0200 Oswald Buddenhagen (434af78)
* fix example install
2016-03-03 10:34:08 +0100 Marc Mutz (236b6b5)
* QServiceManager: don't deref nullptr
2016-03-03 10:28:05 +0100 Marc Mutz (463036a)
* Make more ctors explicit
2016-03-03 10:27:41 +0100 Marc Mutz (065bd53)
* Make public headers compile with -Wzero-as-null-pointer-constant
2016-02-05 08:29:08 +0100 Andreas Holzammer (cc20777)
* Disable build for wince
2016-01-07 15:03:10 +0100 Christian Strømme (d8cc485)
* Fix warning about missing QT_X_NAMESPACE
2016-01-07 14:46:41 +0100 Christian Strømme (34eab67)
* Fix warnings from use of the deprecated c string to QString
conversion.
2016-01-07 14:32:17 +0100 Christian Strømme (fe505ec)
* Fix name mismatch.
2015-11-23 13:58:15 +0100 Christian Strømme (97066fb)
* Add support for disabling/enabling the screen saver on Mir/Ubuntu.
2015-12-18 10:23:44 +0100 Rainer Keller (eefc2a9)
* Add classname entries to qmldir
2015-12-16 13:50:55 +0100 David Schulz (7f343e7)
* Fix build on Windows.
2015-12-17 14:06:34 +0100 David Schulz (75302f7)
* Fix MinGW build.
2015-09-18 08:24:56 -0700 Thiago Macieira (0577ffc)
* Use the new way of disabling strict C++ support
2015-09-18 14:02:40 +0200 Oswald Buddenhagen (75738fd)
* version the LICENSE.*GPL files
2015-07-30 12:49:46 +0200 Simon Hausmann (4e3a7ed)
* Prospective build fix for Visual Studio 2013
2015-07-28 23:07:19 +0200 Samuel Gaist (e92d654)
* Fix publishsubscribe module includes
2015-07-29 11:57:47 +0200 Samuel Gaist (1188dc7)
* Fix qtsystem.pro to avoid build on unsupported platforms
2015-03-23 07:06:02 +1000 Lorn Potter (37b614a)
* Re-order the uniqueDeviceId lookup order
2014-12-11 14:28:15 +0100 Alex Blasche (f0751e6)
* Change Qt bugtracker URL to qt.io
2015-03-26 08:27:43 +0100 Alex Blasche (03f9489)
* Update all license headers
2015-01-08 14:05:16 +0100 Alex Blasche (6707b04)
* Add missing QDataStream include
2014-12-06 14:21:15 +0100 Alejandro Exojo (44f70d9)
* Remove unnecessary \inqmlmodule parameter
2014-11-29 10:12:41 +1000 Lorn Potter (32e6573)
* Re-add BatteryInfo qml
2014-11-18 22:43:12 -0800 Thiago Macieira (3a02163)
* Use QUuid directly on the binary UUID representation
2014-09-25 08:27:29 +1000 Lorn Potter (ee755a7)
* remove QStorageInfo
2014-09-24 16:19:15 +0200 Christoph Keller (4a324f7)
* Fixed runloopThread being uninitialized and causing a crash in
destruction.
2014-09-24 14:31:03 +1000 Lorn Potter (4d4a518)
* Make NetworkInfo work with new linux interface name scheme
2014-08-20 23:22:05 +0200 Robin Burchell (0536522)
* QUPowerDeviceInterface: Fix a memory leak.
2014-08-17 00:33:15 +0200 Samuel Gaist (5f84c03)
* Add missing private headers warning
2014-08-10 11:56:43 -0300 Thiago Macieira (85fb916)
* Remove QStorageInfo in favor of the QtCore replacement
2014-08-10 11:56:34 -0300 Thiago Macieira (2ddded8)
* Add missing #include <QDataStream>
2014-08-03 03:10:06 +0200 Robin Burchell (16125b6)
* Use QDBusReply instead of manipulating the QDBusMessage by hand.
2014-07-24 11:56:04 +0000 Robin Burchell (28dc9a3)
* QUPowerDeviceInterface: Remove getProperty helper
2014-07-24 11:55:56 +0000 Robin Burchell (8d483aa)
* QUPowerDeviceInterface: Make every property request except the
first one asynchronous.
2014-07-24 11:20:25 +0000 Robin Burchell (3443749)
* QUPowerInterface: Do away with use of QDBusInterface.
2014-07-24 11:04:08 +0000 Robin Burchell (b68ca43)
* QUPowerInterface: dead code removal.
2014-06-16 12:02:58 +0200 Robin Burchell (ce369e5)
* Add support for retrieving device info from SSU.
2014-06-20 15:51:33 -0700 Thiago Macieira (1fc57ba)
* Disable strict strings under MSVC for QtSysteminfo
2014-06-10 12:49:18 +0200 Mark Brand (341352b)
* add missing EXPORT decl
2014-05-23 12:04:12 +0200 Mark Brand (2bbccf8)
* fix filename case
2014-03-06 09:24:34 +1000 Lorn Potter (3b3b759)
* prefer os-release for operating system name
2014-03-06 09:21:52 +1000 Lorn Potter (87338cd)
* try harder for unique ID, use wlan mac addy
2014-03-06 09:06:55 +1000 Lorn Potter (948359e)
* get model from hw-release
2014-02-19 12:20:48 -0800 Thiago Macieira (f6281dc)
* Bump module version to 5.4.0
2014-03-05 10:01:08 +0100 Jakub Adam (3f65ffa)
* Allow searching a term in a specific release file
2014-03-05 10:23:40 +0100 Jakub Adam (b0cc72a)
* Strip optional quotation marks from version string
2014-03-05 10:10:04 +0100 Jakub Adam (2a2e7b2)
* Prefer VERSION_ID from /etc/os-release as QDeviceInfo::Os
2014-03-05 10:20:07 +0100 Jakub Adam (637a272)
* Prefer HW adaptation version as QDeviceInfo::Firmware on Sailfish
OS
2014-03-21 06:27:45 +1000 Lorn Potter (20d5eed)
* stop serviceframework and qsysteminfo building on mac
2014-01-27 16:08:21 +0200 Samuli Piippo (aa651c7)
* Fix battery related compilation errors on simulator
2014-01-16 13:28:32 -0500 Travis Allen (f4c7ad0)
* Updated Documentation for QBatteryInfo
2014-01-17 19:44:34 +0100 Oswald Buddenhagen (f73a009)
* whitespace fixes
2014-01-10 12:58:31 -0500 Travis Allen (3cd1e96)
* Renames & Add new properties to QBatteryInfo
2013-12-03 11:01:57 -0800 Thiago Macieira (f632aee)
* Fix build: CWGlobals.h does not exist anymore
2013-12-13 20:43:36 +0100 Robin Burchell (9767d83)
* upower: Return QBatteryInfo::LevelEmpty when the percentage is
lower than 3%.
2013-12-16 16:48:11 +0100 Alex Blasche (0431253)
* Fix qserviceinterfacedescriptor unit test
2013-11-26 13:35:16 -0500 Travis Allen (d6104a9)
* QBatteryInfo Refactorization Step 2
2013-11-25 13:41:41 -0500 Travis Allen (2a4badf)
* Refactor the Linux/upower QBatteryInfo to match the other platforms
2013-11-20 13:37:01 -0500 Travis Allen (15d5f78)
* First steps towards QBatteryInfo Refactorization
2013-10-03 10:43:47 +0100 Iain Lane (64e7d70)
* DriveType: Cope with mmc devices with more than 9 partitions
2013-09-30 14:54:10 +0300 Timo Jyrinki (26c9f7c)
* Do not require signal strength information to return network
status.
2013-10-07 07:30:26 +1000 Lorn Potter (dbad764)
* use resource file on qml example so they can run better
2013-10-04 00:19:33 +0200 Robert Griebl (7f14d89)
* Fix method invocations with both custom and standard param types
2013-09-23 10:25:38 +0300 Samuli Piippo (26ed194)
* Fix simulator compilation
2013-09-22 19:44:53 -0700 Thiago Macieira (c665c13)
* Bump qtsystems version to 5.3.0
2013-09-09 17:04:20 +1000 Lorn Potter (5084080)
* Port bluetooth powered signal from qtmobility
2013-09-09 13:24:50 +1000 Lorn Potter (dbd8acf)
* fix file permissions on images
2013-09-07 05:44:08 +1000 Lorn Potter (1d193dc)
* Add operating system name and board name functions
2013-08-27 10:33:19 +1000 Lorn Potter (47258c5)
* Fix up some of these best guesses.
2013-08-13 10:02:19 +0200 Simon Hausmann (2250aa3)
* Remove unnecessary dependency to qtjsbackend from sync.profile
2013-08-02 09:53:50 +1000 Lorn Potter (e1b6ee9)
* try harder to find unique ID, and validate it against QUUid.
2013-06-04 11:50:20 -0700 Thiago Macieira (db68283)
* Fix warning found by clang: private unused members in a class
2013-07-31 06:17:50 +1000 Lorn Potter (2cb6b74)
* make signals work on mac
2013-07-29 16:51:02 +0200 Friedemann Kleint (0b220b2)
* Disable tests failing on Windows.
2013-07-29 16:38:54 +0200 Friedemann Kleint (46b3203)
* Stabilize qservicemanager_ipc.
2013-07-17 12:43:33 +0200 Martin Smith (f71976f)
* doc: Eliminate even more cases of multiple topic commands
2013-07-03 08:16:05 +0300 Timo Jyrinki (762581e)
* Add license files mandated by (L)GPL and FDL.
2013-07-12 04:48:43 +1000 Lorn Potter (fa61ba4)
* Don't increment batteryMap before inserting.
2013-07-11 13:58:20 +1000 Lorn Potter (5cbc871)
* Add manual sysinfo-tester from mobility
2013-07-11 13:57:06 +1000 Lorn Potter (f51e439)
* Fix compile warnings and build.
2013-07-11 11:25:44 +1000 Lorn Potter (75909f0)
* Fix reading imei with ofono
2013-07-04 12:05:01 +0300 Samuli Piippo (255b678)
* Fix simulator build without ofono
2013-06-25 17:27:18 +1000 Lorn Potter (2450592)
* make x11 dependency a qmake CONFIG opt-out
2013-06-17 18:07:14 +1000 Lorn Potter (484c917)
* make ofono stuff compile
2013-06-23 17:14:53 +1000 Lorn Potter (af4232a)
* Remove device profile, as it is depreciated.
2013-06-23 10:24:34 +1000 Lorn Potter (bfa844c)
* add UPower backend for QBattery
2013-06-23 18:55:23 +1000 Lorn Potter (a1bf12d)
* Remove DisplayInfo
2013-06-24 16:36:28 +1000 Lorn Potter (40d951f)
* remove libsysinfo, as there is not even config test
2013-06-19 16:32:53 +0200 Alex Blasche (5ec2aba)
* Fix all qmake warnings
2013-06-18 13:53:42 +0200 Alex Blasche (7900079)
* Remove JsonDB dependencies (2/2)
2013-06-18 13:26:55 +0200 Alex Blasche (2e2c8a2)
* Remove JsonDB dependencies (1/2)
2013-06-17 10:38:30 +0200 Alex Blasche (aca1ba2)
* The qtsystems dev branch should build against dev of its
dependencies.
2013-06-17 17:41:52 +1000 Lorn Potter (7a25383)
* bump version to 5.2.0
2013-05-28 20:32:05 +0200 Liang Qi (14c790b)
* Update all plugins.qmltypes files
2013-05-28 20:31:40 +0200 Liang Qi (847f3c5)
* Update qmldir files
2013-06-10 17:18:49 +0200 Liang Qi (3fa166b)
* Q_GLOBAL_STATIC's use of noexcept makes QStringLiteral not work
2013-05-09 08:28:37 +1000 Lorn Potter (fb72a05)
* remove proprietary libsysinfo stuff
2013-05-09 07:51:50 +1000 Lorn Potter (e70d494)
* refactor the dir structure
2013-04-08 10:27:08 -0700 Thiago Macieira (701442a)
* Fix interesting warning found in publish-and-subscribe
2013-04-06 13:46:18 -0700 Thiago Macieira (a193c1f)
* Fix warnings found in headers (headersclean)
2013-04-06 13:49:20 -0700 Thiago Macieira (29a1b05)
* Make QServicePackagePrivate::clean non-virtual
2013-02-26 12:56:40 +0100 Oswald Buddenhagen (782aeb0)
* define MODULE_VERSION
2013-02-01 13:07:11 +1000 Aaron McCarthy (5786194)
* Fix invalid use of lambda expressions in noexcept expression.
2012-12-21 11:02:25 +0100 Oswald Buddenhagen (beb5139)
* make use of qtHaveModule()
2013-02-01 13:02:47 +1000 Aaron McCarthy (8a34cdf)
* Remove use of QT_{BEGIN,END}_HEADER macros.
2013-02-01 16:14:16 +0100 Mark Brand (dfbe0f2)
* fix case of include files
2013-01-23 12:29:30 +0100 Rainer Keller (97971e8)
* Replace qml-battery example
2013-01-22 10:15:03 +0100 Oliver Wolff (caaff12)
* Do not use interface as variable or parameter name
2012-12-14 19:39:43 +0100 Oswald Buddenhagen (2dbaae6)
* remove some unnecessary CONFIG additions
2012-12-13 11:07:49 +0100 Oswald Buddenhagen (a958892)
* point dependencies to stable branches
2012-12-05 13:56:10 +0100 Oswald Buddenhagen (cac332c)
* adjust to changed declarative api
2012-12-07 10:57:56 +0100 Christian Stenger (2de0b4e)
* Doc: Replace outdated macro
2012-11-15 21:41:05 +1000 Andrew Stanley-Jones (efbbf7e)
* Change default linux backends when dbus is not present
2012-09-17 20:08:54 +1000 Lincoln Ramsay (daec59a)
* Allow using QRemoteServiceRegister for types other than IPC.
2012-11-07 17:44:59 +0100 Shawn Rutledge (511d739)
* servicefw should not be built as an app bundle on Mac
2012-10-26 16:16:27 +0400 Aleksey Sidorov (47a8dc2)
* MinGW: compile fix from Linux host
2012-08-18 08:39:15 +0300 Xizhi Zhu (343cb72)
* Removed sfwnetreg backend from SystemInfo.
2012-10-17 16:19:29 +0200 mibrunin (620592b)
* Correct QBatteryInfo::currentFlow method for Discharging state on
Linux
2012-10-12 15:06:21 +0200 Friedemann Kleint (3ac719b)
* QtSystems: Fix compiler warnings.
2012-10-12 14:35:44 +0200 Friedemann Kleint (9668258)
* QtSystems: Fix MinGW compilation.
2012-10-15 17:14:54 +0200 Shawn Rutledge (e8c937f)
* deviceinfo test: show screen info too; allow specifying which
screen
2012-09-26 10:33:11 +0900 Tasuku Suzuki (2397fd1)
* make compile with -no-gui
2012-10-11 16:13:00 +0200 Tor Arne Vestbø (a797a46)
* Update docs after modularization of docs
2012-10-09 17:47:59 +0200 Shawn Rutledge (2d1ca84)
* systeminfo: fix the examples to build properly
2012-06-25 17:34:53 +1000 Lorn Potter (4fd21d9)
* add mac backend
2012-07-11 13:50:34 +1000 Lorn Potter (ca61600)
* port remaining windows backend from qtmobility.
2012-09-13 14:52:45 +0200 Kai Koehne (229812f)
* Test: Use qInstallMessageHandler
2012-09-25 12:26:58 +0200 Jerome Pasion (a0372c9)
* HTML template: Updated copyright notice from Nokia to Digia Plc
2012-09-24 09:25:23 +0300 Iikka Eklund (06f5ceb)
* Change copyrights from Nokia to Digia
2012-09-21 14:36:31 +0200 Jerome Pasion (7c31b64)
* Doc: Adding documentation templates from qtbase
2012-09-18 16:33:14 +0200 Kai Koehne (bffd3c4)
* Imports: Add plugins.qmltypes files
2012-09-03 12:13:41 +0200 Oswald Buddenhagen (1729388)
* centralize load(qt_build_config)s in .qmake.conf
2012-08-29 21:40:04 +0200 Thiago Macieira (0c1d6ae)
* Update the git-archive export options
2012-08-16 13:07:39 +0200 Oswald Buddenhagen (f2e1341)
* make use of QT_{,FOR_}PRIVATE to specify private Qt dependencies,
take 2
2012-08-16 18:35:27 +0300 Xizhi Zhu (a28c4c9)
* Removed JSONDB backend from SystemInfo.
2012-08-16 18:22:56 +0300 Xizhi Zhu (98483f9)
* Removed mtlib backend from SystemInfo.
2012-07-13 17:45:58 +0200 Oswald Buddenhagen (c6b3a78)
* make the service be found even in debug_and_release_target configs
2012-08-08 13:52:39 +0200 Oswald Buddenhagen (93ae6e1)
* make use of QT_PRIVATE to specify private Qt dependencies
2012-08-07 19:12:28 +0200 Oswald Buddenhagen (e16977a)
* follow rename of qt_module_config.prf to qt_module.prf
2012-08-01 16:47:33 +0200 Thiago Macieira (a00d590)
* Set the Qt API level to compatibility mode in all tests.
2012-07-28 15:04:47 +0200 Corentin Jabot (9aaf049)
* The qml components are not build if the qtdeclarative module is not
present
2012-07-27 18:41:03 +0200 Jerome Pasion (4d34cc5)
* Doc: Changed \qmlclass to \qmltype and added \instantiates
2012-07-27 14:14:10 +1000 Peter Yard (caa0d5a)
* Add module page. Add getting started info to Overview.
2012-07-17 15:54:29 +1000 Lincoln Ramsay (69dfa80)
* Fix a race condition in the unit test.
2012-07-23 09:52:22 +0200 Stephen Kelly (eec3bea)
* Add the CMake directory created during unit testing to .gitignore.
2012-07-19 14:45:45 +0200 Stephen Kelly (27de593)
* Test that the package configs for QtSystems work.
2012-07-09 19:11:06 +0200 Oswald Buddenhagen (afe9113)
* use centralized qml plugin project handling
2012-07-03 21:42:23 +0200 Oswald Buddenhagen (b88880e)
* use centralized handling of QT_BUILD_PARTS
2012-07-17 11:38:19 +1000 Andrew Stanley-Jones (c797506)
* Fix unit tests, remove race condition
2012-07-04 11:19:56 +1000 Andrew Stanley-Jones (fea5ebd)
* OSX 10.6 doesn't define O_CLOEXEC so don't use it
2012-07-04 10:39:11 +1000 Peter Yard (c2185fc)
* Allow build of submodule docs individually using 'make'.
2012-07-04 07:24:06 +0100 Laszlo Papp (e8b3fe6)
* Fix the cross compilation
2012-07-02 16:58:33 +1000 Andrew Stanley-Jones (11bd8d3)
* Fix select on OSX
2012-07-02 13:41:00 +1000 Andrew Stanley-Jones (4b30b7e)
* Make unix backend compile on Mac
2012-06-27 15:10:05 +1000 Lincoln Ramsay (355d9ce)
* The unit test modifies the PATH.
2012-06-22 11:16:22 +0200 Thiago Macieira (2c3c1e7)
* Update the export macros in qtsystems.git
2012-06-28 10:25:53 +0200 Friedemann Kleint (9e69df9)
* Fix build/ add missing includes for QDataStream.
2012-06-26 16:24:13 +0200 Thiago Macieira (3b69d24)
* Compile qnetworkinfo_linux.cpp under C++11 mode
2012-06-26 16:34:24 +0200 Thiago Macieira (321488c)
* Do not depend on indirect includes: include <QDataStream>
2012-06-26 16:33:57 +0200 Thiago Macieira (40a6196)
* qFree is deprecated, use ::free instead.
2012-06-26 14:45:59 +1000 Lincoln Ramsay (649e972)
* Fix a warning.
2012-06-22 14:14:09 +1000 Lincoln Ramsay (538f4c8)
* fix a warning and a doc
2012-06-26 14:36:26 +1000 Lincoln Ramsay (e1752c4)
* Compile
2012-04-12 12:38:09 +0200 Oswald Buddenhagen (2488f11)
* build system cleanups
2012-02-20 14:37:41 +0100 Oliver Wolff (9a24e2f)
* Remove Q_SYSTEMINFO_EXPORT from simulator's datastream operators
2012-06-25 16:25:33 +1000 Andrew Stanley-Jones (f54ac26)
* Remove left over defines and fix the unix backend
2012-04-05 14:48:24 +0200 Oswald Buddenhagen (a7d15b0)
* switch to new-style configure tests
2012-04-12 11:22:19 +0200 Oswald Buddenhagen (8af2c94)
* use auto-defined QT_BUILD_*_LIB variables
2012-04-12 11:18:52 +0200 Oswald Buddenhagen (04ee1cc)
* auto-generate module pris
2012-06-20 13:56:49 +1000 Andrew Stanley-Jones (7ff64d7)
* Make backend selection easy
2012-06-22 13:10:39 +1000 Andrew Stanley-Jones (8a9f2e3)
* Fix compile error with namespace
2012-06-20 13:59:46 +1000 Andrew Stanley-Jones (f75912b)
* Fix compile error in the unix backend
2012-06-19 16:35:29 +1000 Andrew Stanley-Jones (19a2a62)
* Fix sfwlisten
2012-06-20 13:38:28 +1000 Lincoln Ramsay (761640c)
* Fix compiler warning about order of initialization.
2012-06-20 13:38:00 +1000 Lincoln Ramsay (b8d3077)
* QString(const char*) is deprecated - use QLatin1String()
2012-06-20 13:37:30 +1000 Lincoln Ramsay (e766fd5)
* Fix warnings about declared-but-unused symbols.
2012-06-19 14:10:40 +1000 Andrew Stanley-Jones (a1f8a67)
* Use the localhost interface
2012-04-26 19:32:48 +1000 Alan Alpert (ffc209f)
* Adds new asynchronous friendly types.
2012-06-14 14:06:05 +1000 Alex Wilson (b04b5a3)
* Make certain that qServiceDebugLog can't block; clean up a little
2012-06-08 13:42:24 +1000 Toby Tomkins (37f7c73)
* Fix compile error for expression in template-argument list.
2012-06-06 13:22:21 +1000 Alex Wilson (533dcd9)
* Make sure to create jsondbwatcher on the main thread
2012-05-31 19:05:38 +1000 Andrew Stanley-Jones (f60c1ff)
* Put watcher on the right partiton, fix debug
2012-06-06 13:21:11 +1000 Alex Wilson (6766f23)
* Send device's timestamp with sfw debug messages
2012-06-11 15:57:19 +0200 Lars Knoll (9a4e5ed)
* Compile with gcc 4.4
2012-06-06 22:54:24 +0200 Kent Hansen (febce63)
* Fix compilation of examples when Qt is configured with -no-widgets
2012-06-05 12:14:35 +0200 Steffen Hahn (1c4c2a8)
* Use partitions in QJsonDbWrapper
2012-06-05 16:50:37 +0200 Steffen Hahn (40a4d23)
* Continue support of monitorAllLogicalDrives property
2012-06-05 18:13:14 +0200 Steffen Hahn (fa55ff9)
* Correct wrong type in QNetworkServiceWrapper
2012-06-04 23:07:02 +0200 Corentin Jabot (8f9c0d1)
* replacing signals/slots keyword by the equivalent Q_SIGNALS/Q_SLOTS
2012-06-01 21:23:08 +1000 Andrew Stanley-Jones (081348a)
* Fix the unix backend
2012-05-31 13:50:07 +1000 Andrew Stanley-Jones (d959b89)
* Reconnect if the interface goes away
2012-04-23 21:56:43 -0700 Debao Zhang (054f5b7)
* Using QStringLiteral instead of QLatin1Literal
2012-05-27 16:36:19 +0200 Lars Knoll (e6145ec)
* Remove the last traces of the old plugin system
2012-05-28 15:12:44 +1000 Andrew Stanley-Jones (3bf5cf4)
* Set SFW default partion
2012-05-30 18:05:18 +1000 Alex Wilson (c1cb518)
* Always write via the pending buffer, instead of taking a shortcut
2012-05-30 18:05:48 +1000 Alex Wilson (197ebe7)
* Add extra debugging messages
2012-05-30 18:04:25 +1000 Alex Wilson (4c99d54)
* Disable and re-enable read notifier in readIncoming
2012-05-29 16:33:14 +1000 Alex Wilson (120d92e)
* UDP multicast logging for serviceframework
2012-05-29 14:54:24 +0200 Yang Li (66737cd)
* Fix a socket leak
2012-05-30 11:56:40 +1000 Andrew Stanley-Jones (96a06bf)
* Wakeup the write notifier when buffering data
2012-05-30 11:45:01 +1000 Andrew Stanley-Jones (311ad62)
* Set close on exec
2012-05-29 16:06:03 +1000 Rohan McGovern (b83bec8)
* Set explicit testcase.timeout for slow test
2012-05-29 11:18:02 +1000 Alex Wilson (2b399ed)
* Stop waiting for dead clients
2012-05-25 20:02:29 +1000 Andrew Stanley-Jones (17827e3)
* Making service sockets non-blocking
2012-05-25 18:27:24 +1000 Andrew Stanley-Jones (7aae2c3)
* Ensure jsondb worker runs the main thread
2012-05-25 17:02:11 +1000 Alex Wilson (ecc191f)
* Check thread-local storage for zero before dereferencing
2012-05-25 16:30:34 +1000 Alex Wilson (5fbcd21)
* Remove some more Q_GLOBAL_STATICS
2012-05-22 10:40:13 +1000 Andrew Stanley-Jones (071abb4)
* Improve debug. Add the ability to turn it on/off.
2012-05-22 10:39:14 +1000 Andrew Stanley-Jones (2c97a98)
* Add Unix backend write caching
2012-05-23 15:06:14 +1000 Andrew Stanley-Jones (c493b6a)
* Avoid reace condition on global static destruction
2012-05-25 12:05:07 +1000 Alex Wilson (c442c33)
* Coverity fixes
2012-05-22 10:42:55 +0200 Yang Li (b44eaf3)
* return an empty QString if cell id in NetworkInfo equals to 0
2012-05-22 15:45:08 +0200 Yang Li (020d71c)
* model value in DeviceInfo does not need to contain the manufacturer
value
2012-05-22 07:42:33 +0200 Johann Specht (e6d0b79)
* Added support for JSON DB partitions to P&S
2012-05-23 10:21:24 +1000 Rohan McGovern (8f0703c)
* Removed CONFIG+=parallel_test from suspected parallel-unsafe test
2012-05-14 09:50:56 +1000 Andrew Stanley-Jones (5ece1ee)
* add define to avoid using sigwinch when debug enabled
2012-05-16 17:24:29 +1000 Andrew Stanley-Jones (0e0301d)
* Fix deadlock in jsondb caching, add internal debug
2012-05-15 12:01:55 +1000 Toby Tomkins (ab43371)
* sync.profile: remove dependency on qtscript.
2012-05-09 18:22:08 +0200 Yang Li (e86c956)
* release udev_device resource after processing udev messages
2012-05-09 11:22:28 +0200 Steffen Hahn (2ea0a3c)
* Continue support for monitorCurrentNetworkMode
2012-05-09 11:02:14 +0200 Yang Li (5569a18)
* Place non-changeable properties in front of changeable properties
when setting simulated battery info data
2012-04-19 18:06:31 +1000 Sarah Smith (5c41b49)
* New sfw api to add async service loading
2012-05-11 16:41:18 +1000 Andrew Stanley-Jones (98d88c0)
* Fix error on read, close socket on EOF
2012-05-11 12:17:33 +1000 Andrew Stanley-Jones (ffb6445)
* Fix crash in creating new objects
2012-05-10 17:11:42 +1000 Andrew Stanley-Jones (91fb457)
* Ignore SIGPIPE
2012-05-10 16:06:03 +0200 Kent Hansen (d627fc6)
* Don't use QtDeclarative compat module
2012-05-10 12:51:12 +1000 Andrew Stanley-Jones (2c7a221)
* Fix timeouts and avoid deadlocks
2012-05-10 12:53:48 +1000 Andrew Stanley-Jones (9d4ff3e)
* Fix object cleanup when the service dies
2012-05-10 12:55:23 +1000 Andrew Stanley-Jones (69ff243)
* Add SFW debug into destructors
2012-05-07 16:55:00 +0200 Steffen Hahn (9bdd9d5)
* Correction to qml-wrapper documentation
2012-05-08 00:15:50 -0700 Girish Ramakrishnan (13fe8e6)
* Do not include QtGui/qplatformscreen_qpa.h
2012-04-25 15:10:05 +0200 Kent Hansen (5705ed9)
* Port qtsystems to QMetaMethod-based connectNotify() API
2012-05-04 10:39:35 +0200 Steffen Hahn (1a4d498)
* Correct batteryinfo auto test
2012-05-03 16:55:46 +0200 Thiago Macieira (82037e9)
* Change uses of {to,from}Ascii to {to,from}Latin1
2012-05-04 11:50:13 +1000 Andrew Stanley-Jones (ef6ec3c)
* Add timeout for jsondb
2012-04-24 10:43:55 +0200 Yang Li (39b07fc)
* Use cached interface count value instead of frequently accessing
directories by QDir class.
2012-04-02 10:19:28 +0200 Andrew Stanley-Jones (e45102a)
* Refresh of the jsondb backend
2012-04-18 12:45:52 +1000 Andrew Stanley-Jones (ac4a1e8)
* Add isInterfaceRunning function into QServiceManager
2012-04-30 15:14:12 +0200 Friedemann Kleint (06822bf)
* QtSystems: Fix warnings about deprecated qFree(), qMalloc().
2012-04-28 10:59:27 +1000 Jonathan Liu (994586f)
* Fix QNetworkInfoPrivate compilation on MinGW-w64
2012-04-28 10:14:10 +1000 Jonathan Liu (30f8404)
* Avoid loss of precision casting handle to unsigned long
2012-04-26 11:41:56 +0200 Yang Li (16349c6)
* Remove simulated backend for storageinfo
2012-04-28 11:08:07 +1000 Jonathan Liu (4ce72a0)
* Fix linker libs for MinGW-w64
2012-04-27 15:30:40 +1000 Alex Wilson (58d29d6)
* Call deleteLater() on disconnected Service-type EndPoints
2012-04-27 14:18:41 +1000 Alex Wilson (447c704)
* Clean up another spurious endpoint removal
2012-04-27 12:13:15 +1000 Alex Wilson (e9678d1)
* Clean up termination of UnixEndPoints
2012-04-26 09:02:53 +0200 Steffen Hahn (acdcc6f)
* Ensure unique connections in QML wrappers
2012-04-05 17:30:17 +0200 Steffen Hahn (854d95c)
* Corrections to networkservicewrapper
2012-04-13 12:22:22 +0200 Steffen Hahn (c04e52a)
* Change DeviceProfile API to be asynchronous
2012-04-20 12:04:10 +0200 Yang Li (353e754)
* Read wlan info from '/proc/net/wireless' at once
2012-04-20 14:38:04 +0200 Steffen Hahn (2f9cfca)
* Read uniqueID from file
2012-04-18 11:07:35 +1000 Andrew Stanley-Jones (4b7f687)
* Cleanup after creating the unix socket backend
2012-04-17 14:12:46 +0200 Johann Specht (a03fcc0)
* JsonDbPath constructor takes const QString&
2012-04-12 13:50:40 +0200 Yang Li (c19da31)
* Change function activeLocks() and enabledLocks() to be asynchronous
2012-04-19 18:55:47 +1000 Sarah Smith (2023582)
* Make dialer example work.
2012-04-02 16:55:58 +0200 Yang Li (aeeebf7)
* Do not read vibration setting from JsonDb anymore
2012-04-02 15:32:46 +0200 Yang Li (7b1d873)
* Add backlightStateChanged Signal
2012-04-19 13:34:26 +1000 Andrew Stanley-Jones (e2d6c4d)
* New backend that uses native unix domain sockets
2012-02-21 21:43:27 +0100 Kent Hansen (6725529)
* Adapt to QMetaMethod::signature() renaming
2012-03-07 19:15:29 +0100 Kent Hansen (cc0a371)
* Use QMetaMethod::returnType() to determine return type
2012-03-29 14:39:29 +0200 Jędrzej Nowacki (a0fca56)
* Fix QServiceManager IPC autotest.
2012-04-19 11:53:12 +1000 Andrew Stanley-Jones (ee0202c)
* Fix up unit test, and remove warnings
2012-04-17 14:43:10 +0200 Jan-Arve Saether (7b0429c)
* Servicefw did not print anything to the console on windows.
2012-04-16 18:53:56 +0200 Steffen Hahn (5a10fa0)
* Correct networkStatus for WlanMode
2012-04-04 08:27:46 +0200 Johann Specht (27b9d68)
* QValueSpacePublisher::setValue() returns false if JSON DB rejects
update
2012-04-02 18:06:27 +0200 Yang Li (1a59196)
* add partition parameter
2012-04-02 17:16:44 +1000 Alan Alpert (4230c35)
* Doc fixes
2012-03-30 12:57:20 +0200 Johann Specht (e40b4fe)
* QValueSpacePublisher::setValue() is now synchron
2012-03-29 14:48:35 +0200 Johann Specht (058e4cc)
* Added more unit tests for P&S
2012-03-28 07:44:50 +0200 Johann Specht (6f333ca)
* Added more P&S unit tests, fixed testAPI_PublishSubscribe() test
2012-03-23 18:25:59 +0100 Steffen Hahn (4fea2c9)
* Fix currentMode in simulation
2012-03-26 15:36:15 +0200 Steffen Hahn (2899b14)
* Set monitorAllLogicalDrives to obsoleted
2011-10-20 21:49:15 +0200 Thiago Macieira (4151cd3)
* Add missing #include <unistd.h>
2012-03-23 12:00:11 +0100 Yang Li (41c5d3b)
* Fixed text 'gsm' read from rtcp map to enum GprsDataTechnology
2012-03-22 16:29:15 +0100 Johann Specht (04261b9)
* Fix getNotificationQueryAndActions to create correct query
2012-03-22 10:18:48 -0400 Jamey Hicks (c26257f)
* Fix getNotificationQueryAndActions to pass query by reference.
2012-03-22 14:53:29 +0100 Steffen Hahn (3bb7592)
* Correct bug in chargingState signal
2012-03-20 19:27:11 +0100 Stephen Kelly (deb5502)
* Remove modules from the depends line which are not needed.
2012-03-22 11:04:14 +0100 Steffen Hahn (1cab8a7)
* Minor bugfix
2012-03-21 10:45:07 +0100 Johann Specht (5086993)
* Added missing P&S QML unit test files
2012-03-21 09:13:55 +1000 Lincoln Ramsay (4c7f5e7)
* Document QServiceClientCredentials
2012-03-20 14:33:30 +0100 Johann Specht (664b2aa)
* Fixed P&S QML unit tests
2012-03-16 11:58:57 -0500 Marius Storm-Olsen (6a6a164)
* Compile on Windows
2012-03-19 19:13:38 +0100 Andrew Stanley-Jones (442d624)
* Two small fixes
2012-03-13 16:13:37 +0100 Xizhi Zhu (a08ea12)
* Adapt to new plugin mechanism.
2012-03-16 15:07:59 +0100 Andrew Stanley-Jones (b7f419b)
* Remove unused dependencies
2012-03-15 17:00:25 +0100 Andrew Stanley-Jones (7d098af)
* Allow for short reads in the header
2012-03-14 17:09:51 +0100 Steffen Hahn (3e8bf30)
* Add support for TouchOrKeyboardLock
2012-03-12 14:38:47 +1000 Kalle Juhani Lehtonen (ef0fcfa)
* Replace old test deployment with Qt5 supported deployment
2012-03-13 15:56:44 +0100 Steffen Hahn (34725c6)
* Remove monitor*Locks properties.
2012-03-13 15:29:11 +0100 Steffen Hahn (856ac5e)
* Change to manufacturer
2012-03-13 13:54:23 +0100 Johann Specht (7a609a4)
* Added QML tests for Publish and Subscribe
2012-03-12 17:36:37 +0100 Steffen Hahn (57679ec)
* Minor corrections
2012-03-13 14:15:22 +0100 Steffen Hahn (cd8ff8d)
* Change to model
2012-03-09 11:32:22 +0100 Andrew Stanley-Jones (bbb3f45)
* Fix a socket leak and add a warning
2012-03-09 12:42:11 +0100 Xizhi Zhu (2aa7dbf)
* Beef-up the docs.
2012-03-09 12:22:38 +0100 Xizhi Zhu (045620b)
* Always check if connected to any layers.
2012-03-09 11:09:55 +0100 Xizhi Zhu (cc25313)
* Fixed issues for the initialization of value space manager.
2012-03-12 09:28:00 +0100 Johann Specht (13af71d)
* jsondbcompat replaced with jsondb
2012-03-09 15:18:49 +0100 Xizhi Zhu (2462c53)
* Temporarily disable the unit tests for qvaluespace_jsondb
2012-03-09 14:13:33 +0100 Xizhi Zhu (0020c52)
* P&S JSON DB back-end now uses the new JSON DB client API
2012-03-09 10:49:31 +0100 Xizhi Zhu (2f882ca)
* Fixed typo in the doc.
2012-03-08 11:05:43 +0100 Xizhi Zhu (d97e0a1)
* Remove un-needed / un-used code.
2012-03-08 11:33:38 +0100 Yang Li (70b1ada)
* Fixed the WLAN signal strength.
2012-02-23 11:30:35 +0100 Xizhi Zhu (af225a9)
* Simplify the installation of P&S layers.
2012-03-07 14:10:47 +0100 Xizhi Zhu (d80ebe9)
* Several monitor* is now obsoleted, and to be removed soon.
2012-03-07 11:29:03 +0100 Xizhi Zhu (c6fce65)
* Declarative --> Qml adaptation.
2012-03-05 15:46:29 +0100 Xizhi Zhu (90e787d)
* Remove the monitorAllLogicalDrives property.
2012-02-27 17:06:12 +0100 Yang Li (057c96a)
* Fixed checking for removable drives.
2012-03-07 11:38:22 +0100 Steffen Hahn (0f02ed8)
* Add proper disconnection from udevWrapper
2012-03-06 17:52:59 +0100 Andrew Stanley-Jones (360d7a2)
* Fix error when waiting for data on blocking calls
2012-03-05 09:26:45 +0100 Andrew Stanley-Jones (b1829a0)
* Fix autostart for services
2012-03-02 19:47:45 +0100 Xizhi Zhu (ea97b8e)
* Use QStringLiteral to create strings.
2012-03-02 19:38:59 +0100 Xizhi Zhu (0c2d461)
* Refactor the storage info on Linux.
2012-03-02 19:11:55 +0100 Xizhi Zhu (35b937e)
* Make jsonDbConnection a variable, since it's always used.
2012-02-29 09:52:14 +0100 Xizhi Zhu (688587b)
* Hide interfaceForMode() behind QT_NO_NETWORKINTERFACE.
2012-03-01 19:19:21 +0100 Casper van Donderen (09b08ac)
* Remove the usage of deprecated qdoc macros.
2012-03-02 13:21:18 +0100 Sergio Ahumada (cda4fab)
* Change bugreports.qt.nokia.com -> bugreports.qt-project.org
2012-02-28 17:24:18 +0100 Xizhi Zhu (107f888)
* Add a work-around for QTBUG-24552.
2012-02-28 11:51:07 +0100 Andrew Stanley-Jones (d356955)
* Increase jsondb timeout
2012-02-27 17:07:29 +0100 Denis Dzyubenko (b022371)
* Removed line with a typo from .pro file
2012-02-27 15:48:23 +0100 Denis Dzyubenko (db481ac)
* Ported service framework to new qtjsondb api.
2012-02-08 22:21:27 +0100 Xizhi Zhu (3a0f76a)
* Adapt system info to new JsonDb API.
2012-02-24 14:49:07 +0100 Steffen Hahn (3232717)
* Adjust Feature enum in simulation
2012-02-23 14:12:00 +0100 Steffen Hahn (5f28363)
* Fix signal in storageinfo simulation
2012-02-22 16:53:40 +0100 Steffen Hahn (ae74f7b)
* Correct batteryinfo: Polarity of flow already provided from kernel
2012-02-22 15:02:44 +0100 Yang Li (8b6cfed)
* Fixed drive type value for internal and removable memories.
2012-02-22 13:34:58 +0100 Xizhi Zhu (88e5d58)
* profileType --> currentProfileType.
2012-02-22 13:33:05 +0100 Xizhi Zhu (48bec8d)
* Fixed the Feature enum.
2012-02-22 13:30:39 +0100 Gunnar Sletta (4343911)
* don't rely on qtscript
2012-02-22 11:14:22 +0100 Andrew Stanley-Jones (b75a36d)
* Improve SFW startup of external processes
2012-02-21 15:48:36 +0100 alex (57c94b6)
* Remove private include from public Header in
QServiceClientCredentials
2012-02-21 12:40:23 +0100 Andrew Stanley-Jones (af2d3a7)
* Fix typo, and qwarning issues
2012-02-20 16:45:19 +0100 Andrew Stanley-Jones (70a9b2c)
* Local testing for security
2012-02-13 10:21:32 +0100 Andrew Stanley-Jones (3b72d80)
* Qt5 Service Framework security API
2012-02-20 14:24:19 +0100 Xizhi Zhu (682f2ba)
* Fix build for auto tests.
2012-02-01 15:21:59 +0100 Xizhi Zhu (23a6518)
* No need to copy QAbstractDynamicMetaObject.
2012-01-27 16:32:38 +0100 Xizhi Zhu (6efc7f4)
* Remove the concept of servers for P&S.
2012-02-16 14:50:16 +0100 Steffen Hahn (3d7adc3)
* Correction to networkservice
2012-02-16 10:05:25 +0100 Andrew Stanley-Jones (3347647)
* Jsondb string change
2012-02-16 08:49:07 +0100 Steffen Hahn (eae05ce)
* small corrections to documentation
2012-02-15 15:08:25 +0100 Andrew Stanley-Jones (a79f688)
* Increase jsondb timeouts
2012-02-15 13:59:01 +0100 Xizhi Zhu (cfd97bc)
* Fix typo in p&s .pro.
2012-02-02 08:22:12 +0100 Steffen Hahn (98a4e7c)
* Add wrapper for networkservices
2012-02-15 11:13:03 +1000 Toby Tomkins (4903c9f)
* Add jsondb compatibility module to fix qtsystems qt5 compilation.
2012-02-14 14:10:11 +0100 Steffen Hahn (551596d)
* change to hasFeature
2012-02-13 19:39:35 +0100 Steffen Hahn (78093b8)
* Add batteryStatus
2012-02-09 09:37:34 +0100 Xizhi Zhu (0921fdb)
* Fix build for P&S by using jsondbcompat.
2012-02-13 17:23:08 +0100 Andrew Stanley-Jones (e511802)
* Jsondb name change
2012-02-13 12:39:18 +0100 Yang Li (2b2df78)
* add imei and productname support
2012-02-03 15:53:01 +0100 Steffen Hahn (af8c8ae)
* Add udev event handling to linux' StorageInfo and BatteryInfo
2012-02-07 16:23:01 +0100 Steffen Hahn (8cec20f)
* Add networkinfo simulation backend
2012-02-10 10:24:22 +0100 Andrew Stanley-Jones (a11848a)
* Allow sockets to be created world writeable
2012-02-09 18:45:30 +0100 Andrew Stanley-Jones (614cb22)
* Change service framework auto start code
2012-02-08 17:00:19 +0100 Andrew Stanley-Jones (3ec7a5b)
* Change to make notion sending work
2012-02-03 11:38:23 +0100 Andrew Stanley-Jones (d3ded9c)
* Unit test fixups and cleanup
2012-02-02 08:41:26 +0100 Steffen Hahn (e2f93a7)
* Minor change to documentation
2012-01-31 13:06:05 +0100 Johann Specht (eb5a207)
* Fixed P&S unit tests
2012-01-30 12:24:52 +0100 Andrew Stanley-Jones (a841c58)
* Strip maemo5 ifdefs and code
2012-01-28 15:33:57 +0100 Xizhi Zhu (9872f02)
* Remove Symbian code from SFW.
2012-01-30 12:12:48 +0100 Xizhi Zhu (62ca5d0)
* Use QStringLiteral.
2012-01-26 11:26:43 +0100 Xizhi Zhu (9f679c6)
* Move auto tests to sub folders as per module.
2012-01-30 10:33:04 +0100 Andrew Stanley-Jones (cb03f7d)
* Fixes for starting services via Notions
2012-01-27 09:54:22 +0100 Xizhi Zhu (1b6380e)
* Fixed JsonDb type name.
2012-01-24 15:16:09 +1000 Jason McDonald (375d777)
* Remove "All rights reserved" line from license headers.
2012-01-28 10:53:13 +0100 Xizhi Zhu (6669811)
* Fix one white space issue.
2012-01-24 10:18:03 +0100 Johann Specht (19f8805)
* Some code clean up and optimizations
2012-01-26 11:50:35 +0100 Xizhi Zhu (36ed481)
* Remove QInputDeviceInfo.
2012-01-19 10:39:30 +0100 Steffen Hahn (bdd7716)
* Add fix to linux for thread safety
2012-01-25 17:44:55 +0100 Frederik Gladhorn (ff9b752)
* Fix typo
2012-01-24 13:47:22 +0100 Frederik Gladhorn (d25ab54)
* Fix typos
2012-01-27 13:46:00 +0100 Andrew Stanley-Jones (4f27012)
* Updates for changes in base library
2012-01-25 14:36:37 +0100 alex (9026026)
* Remove last remnants of QServiceSecurity.
2012-01-04 15:14:22 +0100 Friedemann Kleint (2811d70)
* qservicemetadata-test: Use QFINDTESTDATA to locate test data.
2012-01-04 11:56:40 +0100 Friedemann Kleint (3419f54)
* QtServiceManager test: Fix runtime warnings/Windows.
2012-01-27 12:14:12 +0100 Kent Hansen (a067bae)
* Fix breakages due to recent meta-type system changes
2012-01-27 13:21:30 +0100 Andrew Stanley-Jones (5155aba)
* Remove some debug and clear some warning messages
2012-01-25 14:20:09 +1000 Alan Alpert (9db2a08)
* Update include to use QtQuick module
2012-01-23 16:40:56 +0100 Andrew Stanley-Jones (5edc339)
* Decrease timeout value for service startup
2012-01-24 11:05:41 +1000 Rohan McGovern (b24274b)
* Fixed compile.
2012-01-19 17:49:24 +0100 Andrew Stanley-Jones (c028643)
* Fix namespaces and remove GUI from unit tests
2012-01-20 15:21:07 +1000 Jason McDonald (ba48f72)
* Update obsolete contact address.
2012-01-23 09:48:43 +1000 Rohan McGovern (485a91f)
* Fixed compile.
2012-01-17 22:22:34 +0200 Xizhi Zhu (c2d7ed8)
* Add TdscdmaMode to the network mode enumerator.
2011-12-02 13:46:59 +1000 Andrew Stanley-Jones (9b3b969)
* Update to SFW to current mtlib
2012-01-18 10:46:00 +0200 Xizhi Zhu (5aefb2e)
* P&S switched to the new JSON DB client API
2012-01-17 09:17:32 +0100 Steffen Hahn (5d82ca6)
* Change simulation of UDID
2012-01-17 10:49:39 +0100 Andrew Stanley-Jones (f71228d)
* Temporary fix to deal with jsondb changes
2012-01-12 11:43:23 +0200 Tapani Mikola (5db5983)
* Namespace change QtAddOn::JsonDb --> QtJsonDb in sfw
2012-01-11 16:47:28 +0200 Tapani Mikola (53c3b40)
* Fix to connect.
2012-01-11 19:53:48 +0100 Steffen Hahn (f8c7a11)
* Add minor corrections
2012-01-11 17:22:42 +0100 Steffen Hahn (0a5e88d)
* Fixes to documentation
2012-01-10 10:50:15 +0200 Xizhi Zhu (5738bd1)
* Return integers instead of enums for Q_INVOKABLE in QML.
2012-01-10 15:38:42 +1000 Jason McDonald (af053e3)
* Update copyright year in Nokia copyright headers.
2012-01-10 15:09:42 +0100 Steffen Hahn (fa77448)
* Fix simulator connection
2012-01-10 18:04:40 +1000 Rohan McGovern (a06f41d)
* sync.profile: introduce dependency on qtjsbackend
2011-12-12 16:37:40 +1000 Andrew Stanley-Jones (0f15282)
* Fix notifications with jsondb
2012-01-05 17:59:19 +0100 Steffen Hahn (0dd07e1)
* Improve initialization of simulator backend
2012-01-05 16:06:58 +1000 Jason McDonald (42cae99)
* Update copyright year in license headers.
2012-01-04 14:45:48 +0100 Friedemann Kleint (6183a5a)
* Prevent timer flood in qservicemanager_ipc thread test.
2012-01-03 10:11:35 +0100 Steffen Hahn (3856b4b)
* Add storageinfo simulator backend
2012-01-04 14:07:01 +0200 Xizhi Zhu (6ad9a1e)
* Remove support for ContextKit in P&S.
2012-01-04 14:49:22 +0100 Friedemann Kleint (5b6c041)
* Stabilize test qservicemanager_ipc on Windows.
2011-12-22 10:17:16 +0200 Tapani Mikola (7d03682)
* New jsondb notification api into use in pub&sub.
2012-01-04 16:18:46 +1000 Andrew Stanley-Jones (d91e06a)
* Patch for updates to jsondb
2011-12-26 11:51:44 +0200 Xizhi Zhu (59fe031)
* Add InputDeviceInfo element.
2011-12-26 11:22:26 +0200 Xizhi Zhu (b99099f)
* Add the docs for DisplayInfo element.
2011-12-26 11:17:53 +0200 Xizhi Zhu (323191e)
* Clean-up the interface for QDisplayInfo.
2011-12-16 15:59:49 +0100 Steffen Hahn (451c559)
* Add simulator backends for BatteryInfo and DeviceInfo
2011-12-23 12:09:25 +0200 Xizhi Zhu (6b9f9c0)
* Add the doc for QML DeviceProfile element.
2011-12-23 12:08:36 +0200 Xizhi Zhu (ece54a1)
* Add profileTypeChanged() signal and make profileType a property.
2011-12-23 11:54:20 +0200 Xizhi Zhu (762b1ad)
* Improve the ProfileType enum.
2011-12-20 16:50:04 +1000 Jason McDonald (083a3eb)
* Update obsolete documentation URL.
2011-12-22 15:06:43 +1000 Andrew Stanley-Jones (1aaccf7)
* Change method count due to changes in QObject
2011-12-19 13:06:39 +1000 Andrew Stanley-Jones (8de258f)
* Move the event loop into the response object
2011-12-16 11:50:22 +1000 Andrew Stanley-Jones (38f0296)
* Fix bug with event loop being called twice
2011-12-15 15:04:25 +1000 Andrew Stanley-Jones (ee5fcff)
* Move QHash to private member
2011-12-14 13:23:09 +0100 Steffen Hahn (b60996f)
* Add charging state Full
2011-12-14 09:15:29 +0100 Steffen Hahn (171bf14)
* Fixed typo
2011-12-14 09:04:13 +0100 Steffen Hahn (2baccd0)
* Add minor changes
2011-12-13 14:16:23 +0200 Xizhi Zhu (0da83d6)
* Update the docs.
2011-12-13 16:45:17 +1000 alex (af5ac09)
* Add and synchronize brief statements for SFW example overview
2011-12-12 10:47:49 +1000 Andrew Stanley-Jones (d0edf53)
* Patch from QA to clean up autotests
2011-12-09 12:50:58 +0200 Xizhi Zhu (cade967)
* Fix name of required package.
2011-12-09 15:55:40 +1000 Andrew Stanley-Jones (25ec486)
* Fix compile test, and change of name
2011-12-09 11:20:09 +1000 Andrew Stanley-Jones (c46a4d9)
* Change of library name
2011-12-07 07:48:52 +0100 Johann Specht (cd910fd)
* Fixed QTBUG-23008
2011-12-05 09:33:11 +0100 Johann Specht (057744d)
* Fixed QTBUG-23008
2011-12-05 09:52:18 +0100 Steffen Hahn (0824d0c)
* Improvement to screensaver for linux
2011-11-29 14:43:33 +0100 Friedemann Kleint (6bd8d84)
* QtSystems: Fix compiler warnings.
2011-12-01 11:17:09 +0200 Xizhi Zhu (d02025f)
* Improve QML documents for SystemInfo.
2011-12-01 10:33:09 +0200 Xizhi Zhu (8f6f308)
* Fix signals of NetworkInfo.
2011-11-24 11:26:17 +1000 Andrew Stanley-Jones (e4fccea)
* Fix up timer exiting the event loop early
2011-11-30 12:43:41 +0100 Steffen Hahn (891814b)
* Fixes for Linux' NetworkInfo
2011-11-30 10:49:46 +0200 Xizhi Zhu (d1aa78a)
* Fix the usage of QString.
2011-11-29 14:37:06 +0100 Friedemann Kleint (185b65c)
* QtSystemInfo: Fix compilation on Windows.
2011-11-29 14:45:38 +0100 Friedemann Kleint (4db1d50)
* QtSystems: Remove rpath from test profiles.
2011-11-29 11:35:23 +0100 Steffen Hahn (6112be2)
* Fix wrong type
2011-11-28 10:21:56 +0100 Steffen Hahn (c1a8826)
* Add data model and serializations for simulation
2011-11-28 15:19:37 +1000 Andrew Stanley-Jones (b91fe2b)
* Allow SFW localsocket security to be disabled
2011-11-28 15:04:44 +1000 Andrew Stanley-Jones (82490fd)
* Add better error message
2011-11-28 11:53:47 +1000 Andrew Stanley-Jones (97c243f)
* Fix the wayland ifdefs, add a small amount of debug
2011-11-28 11:55:20 +1000 Andrew Stanley-Jones (2566329)
* Fix install typo in the install path
2011-11-28 10:51:14 +1000 Toby Tomkins (b9c8ef2)
* Fixed QtSystems examples namespace compilation.
2011-11-25 11:08:10 +1000 Toby Tomkins (3858d0c)
* Fixed QtSystems namespace compilation.
2011-11-24 14:37:49 +0100 Steffen Hahn (26fbf15)
* Improve display info.
2011-11-24 08:27:10 +0100 Steffen Hahn (fe916f1)
* Fix to Sim feature
2011-11-23 19:16:18 +0100 Steffen Hahn (fe41a51)
* Add private DeviceProfile implementation
2011-11-23 10:05:13 +0100 Johann Specht (3ebd56c)
* Disabled unit tests if JSON DB backend is in use.
2011-11-22 17:47:36 +0100 Steffen Hahn (aaea70f)
* Add support for USB0 sysfs path
2011-11-21 20:57:56 +0200 Xizhi Zhu (0eb7ff3)
* Add doc for ScreenSaver element.
2011-11-21 20:55:32 +0200 Xizhi Zhu (ecf7142)
* Add the missing WRITE for monitor properties.
2011-11-21 20:53:29 +0200 Xizhi Zhu (a061229)
* Add QML wrapper for storage info.
2011-11-20 13:10:19 +0200 Xizhi Zhu (a32cc07)
* Add QML wrapper of DeviceInfo.
2011-11-21 11:36:49 +0200 Xizhi Zhu (76c28c0)
* Fix various doc issues.
2011-11-20 13:12:28 +0200 Xizhi Zhu (80a98ed)
* Remove one un-needed forward declaration.
2011-11-15 10:54:44 +0200 Xizhi Zhu (d0b8961)
* QtSystems doen't depend on QtSvg.
2011-11-18 15:20:00 +1000 Andrew Stanley-Jones (9f5cc1e)
* Add autotest for signal/slot ordering
2011-11-18 15:20:00 +1000 Andrew Stanley-Jones (05d388d)
* Add autotest for signal/slot ordering
2011-11-18 11:47:57 +1000 Andrew Stanley-Jones (31585ca)
* Fix signalling order issues with blocking methods
2011-11-18 11:47:57 +1000 Andrew Stanley-Jones (3db1edd)
* Fix signalling order issues with blocking methods
2011-11-17 11:03:05 +1000 Andrew Stanley-Jones (f3dae96)
* Add error reporting if the database is not running
2011-11-17 11:03:05 +1000 Andrew Stanley-Jones (48d78cc)
* Add error reporting if the database is not running
2011-11-17 16:07:03 +0200 Xizhi Zhu (d55b80a)
* Add qml-deviceinfo example.
2011-11-17 16:07:03 +0200 Xizhi Zhu (2efbe37)
* Add qml-deviceinfo example.
2011-11-17 13:27:41 +0200 Xizhi Zhu (38acb2e)
* Add qml-storageinfo example.
2011-11-17 13:27:41 +0200 Xizhi Zhu (f7547dd)
* Add qml-storageinfo example.
2011-11-16 08:36:13 +0100 Steffen Hahn (bda1053)
* Add backend for locks and positioning
2011-11-17 10:58:23 +1000 Andrew Stanley-Jones (0c4aef5)
* Remove wayland test
2011-11-17 11:00:00 +1000 Andrew Stanley-Jones (194a807)
* Fix up defines for autotests
2011-11-16 13:25:46 +1000 Andrew Stanley-Jones (f7ee887)
* Refactor and fix up the ServiceList dynamic update code
2011-11-17 10:36:55 +1000 Andrew Stanley-Jones (5efdc4a)
* Small fixes for warnings and errors
2011-11-16 10:51:45 +1000 Peter Yard (79d3484)
* Docs: add class links to Sysinfo overview.
2011-11-16 11:11:39 +1000 Rohan McGovern (d2df4d7)
* Don't install tests by default.
2011-09-14 10:37:07 +1000 Peter Yard (bb3a524)
* Add basics docs for SystemInfo.
2011-09-14 10:26:09 +1000 Peter Yard (bed73e6)
* Add Publish-Subscribe docs and examples.
2011-11-14 19:47:31 +0200 Xizhi Zhu (b0a0050)
* Remove extra spaces.
2011-11-14 19:45:57 +0200 Xizhi Zhu (5d1e25a)
* Add the QML wrapper for battery info.
2011-11-14 17:59:54 +1000 Andrew Stanley-Jones (c006db1)
* Add dynamic updates to the ServiceList object
2011-11-07 21:02:23 +0200 Xizhi Zhu (2a51ff0)
* Add QML wrapper for network info.
2011-10-19 14:32:59 +1000 Jason McDonald (8943ea9)
* Remove SkipMode parameter from QSKIP.
2011-11-08 13:32:19 +0100 Steffen Hahn (40b185a)
* Feature Doc: Improve differentiation between Vibration and Haptics.
2011-11-05 08:12:15 +0100 Steffen Hahn (099960f)
* Supplemented device info code for linux
2011-11-02 10:29:08 +0200 Xizhi Zhu (a928afd)
* Refactor the screen saver code for Linux.
2011-11-03 09:19:53 +0200 Xizhi Zhu (2edee60)
* Fix two typos.
2011-11-03 11:20:55 +1000 Andrew Stanley-Jones (0b71a59)
* Allow backwards compatability for now
2011-11-02 17:14:30 +0200 Xizhi Zhu (673a215)
* Fix usage of PKGCONFIG.
2011-11-02 09:47:16 +0200 Xizhi Zhu (1883204)
* Remove un-needed code in Wayland compile test.
2011-10-28 10:40:58 +1000 Peter Yard (f6578e9)
* Fix typos.
2011-10-27 18:27:49 +0200 Lasse Holmstedt (7d0559b)
* Remove copied-over qmetaobjectbuilder and use one from qtbase
2011-11-01 17:22:50 +1000 Andrew Stanley-Jones (0d2271e)
* Change error handeling for dead and disconnected objects
2011-11-01 16:47:26 +0200 Xizhi Zhu (52a2088)
* Fix build tests and dependency checking properly.
2011-11-01 16:27:23 +0200 Xizhi Zhu (db6f747)
* Fix one typo in qtsystem.pro.
2011-11-01 16:06:09 +0200 Xizhi Zhu (2f93a4d)
* Fix build break when JsonDb is available.
2011-10-28 09:35:23 +0300 Xizhi Zhu (5b565cb)
* Fix QML namespace for P&S and SystemInfo.
2011-10-26 16:47:51 +0200 Lasse Holmstedt (6bdd277)
* Fix crashes with service framework object when used in QML
2011-10-21 14:28:18 +0200 Friedemann Kleint (4645820)
* QtSystems: Remove qpa-sections from .profiles.
2011-10-25 10:43:31 +1000 Andrew Stanley-Jones (a832acd)
* Allow submodules to be dislabled at qmake time
2011-10-25 09:33:31 +1000 Andrew Stanley-Jones (937e3a9)
* Fix QtDeclarative rename
2011-10-20 17:20:56 +1000 alex (2259aaf)
* Remove obsolete \since flags.
2011-10-18 16:57:53 +0200 Steffen Hahn (0ccbc8f)
* Changed logic in screensaver jsondb backend
2011-10-19 15:35:10 +1000 Andrew Stanley-Jones (8697d08)
* Fix up deployment
2011-10-19 09:39:46 +1000 Andrew Stanley-Jones (b7b23d0)
* Fixup jsondb forcing options for examples and tests
2011-10-18 12:48:32 +0300 Xizhi Zhu (961499b)
* batteryCount() should not be Q_INVOKABLE.
2011-10-12 11:56:50 +0200 Steffen Hahn (2695a9a)
* Add backend for udid
2011-10-18 10:01:34 +0300 Xizhi Zhu (7f61fd3)
* Use emit instead of Q_EMIT.
2011-10-06 11:11:23 +1000 Andrew Stanley-Jones (1dc1c67)
* Allow forcing of tests and examples
2011-10-13 17:34:05 +1000 Andrew Stanley-Jones (646190c)
* Add size information to the data transfer
2011-10-17 09:10:10 +1000 Andrew Stanley-Jones (3c6b6a3)
* Fix up paths for jsondb
2011-10-14 10:28:49 +1000 Rohan McGovern (727f152)
* Eliminated usage of qttest_p4.prf
2011-10-11 10:31:14 +0200 Friedemann Kleint (3162c99)
* Use QScreen for screen parameters.
2011-10-12 17:39:17 +0200 Steffen Hahn (9050772)
* Corrected imei methods
2011-10-13 14:18:13 +1000 Andrew Stanley-Jones (78ca37e)
* Fixup jsondb include paths
2011-10-13 14:24:17 +1000 Andrew Stanley-Jones (9d66e10)
* Comment out mac issue, probably a real bug
2011-10-03 16:31:55 +1000 Andrew Stanley-Jones (f897476)
* Add QServiceManager_IPC unit test
2011-10-11 14:53:13 +1000 Peter Yard (74632fe)
* Docs: examples docs for Service Framework.
2011-10-10 10:10:57 +0200 Friedemann Kleint (9daf9f1)
* QtSystems: Compile on Windows
2011-10-07 14:55:03 +1000 Andrew Stanley-Jones (073f8e5)
* Change of namespace for Qt5, qml module is now QtServiceFramework
2011-10-07 14:54:28 +1000 Andrew Stanley-Jones (70db61c)
* Fix voipdialerplugin
2011-08-23 17:56:22 +0200 Steffen Hahn (1fe27bf)
* added unittests
2011-10-07 10:37:04 +1000 Rohan McGovern (e3894ee)
* tests: eliminated usage of qttest_p4.prf
2011-09-14 10:35:25 +1000 Peter Yard (18ff485)
* Docs: Add ServiceFramework docs.
2011-10-06 13:08:20 +1000 Andrew Stanley-Jones (a7bcaf5)
* Add more work around code
2011-10-06 10:43:37 +1000 Andrew Stanley-Jones (78ea39b)
* Fix for declarative module
2011-10-05 09:02:41 +0200 Friedemann Kleint (099db6b)
* QtSystems: Fix warnings about QString usage.
2011-10-04 09:08:39 +0200 Steffen Hahn (0c29b1c)
* Added new screensaver backend
2011-09-29 15:31:26 +1000 Andrew Stanley-Jones (c15adeb)
* Add support for better selection with QML Service element
2011-09-28 11:50:04 +0300 Xizhi Zhu (946cae6)
* Check indext before calling QList::at().
2011-09-28 15:06:44 +1000 Andrew Stanley-Jones (1ec02c3)
* Jsondb cleanup, and fix single process kludge
2011-08-29 16:04:05 +0200 Steffen Hahn (4e6cdd2)
* use input*/capabilities to get input devices
2011-09-23 16:01:01 +1000 Andrew Stanley-Jones (6dafb88)
* Add QML error reporting
2011-09-22 10:34:21 +0300 Petri Järvenpää (a17e731)
* Not a proper place for the file, removing it.
2011-09-22 12:48:57 +1000 Andrew Stanley-Jones (83d97a1)
* Fix to forcing jsondb option, missed on line
2011-09-21 16:19:36 +0300 Petri Järvenpää (1df110a)
* Added rpm spec file for CI
2011-09-21 11:49:48 +1000 Andrew Stanley-Jones (eac57c6)
* Small one line bug fixes all over sfw
2011-09-21 15:49:36 +1000 Andrew Stanley-Jones (f9ee275)
* All system to force jsondb
2011-09-15 16:54:47 +0300 Pekka Kauppila (95584c9)
* Disable tst_valuespace_jsondb
2011-09-14 12:58:39 +1000 Andrew Stanley-Jones (3b2218d)
* Move auth code to for 2 clients on 1 service
2011-09-16 10:27:47 +0300 Pekka Kauppila (aadc22c)
* Disabled qdisplayinfo test. The test is unnecessarily failing CI.
2011-09-11 17:37:37 +0300 Xizhi Zhu (3f005c4)
* SystemInfo doesn't depend on QtWidgets.
2011-09-13 13:23:05 +0200 Gunnar Sletta (1d6545f)
* Merge branch 'refactor' of
scm.dev.nokia.troll.no:qt/gunnars-qtsystems
2011-09-09 22:46:41 +0300 Xizhi Zhu (bf991a3)
* Better interface for QDeviceProfile.
2011-09-07 17:19:02 +1000 Jason McDonald (f91de82)
* Fix missing/outdated license headers
2011-09-12 16:40:17 +1000 Andrew Stanley-Jones (dcab82c)
* Add notifications support for jsondb
2011-09-08 14:49:01 +1000 Andrew Stanley-Jones (c66d7de)
* Add interfaces.json file
2011-09-08 13:38:21 +1000 Andrew Stanley-Jones (169056c)
* Update jsondb to work with updates to lower layers
2011-09-05 18:58:06 +0300 Xizhi Zhu (b28c2bd)
* Fix the header files.
2011-08-31 10:41:30 +1000 Andrew Stanley-Jones (1ad74a1)
* Fix name vs ipcaddress in jsondb
2011-09-01 10:09:29 +1000 Rohan McGovern (d3544e8)
* tests: don't unconditionally enable debug mode for tests
2011-08-31 10:35:43 +1000 Andrew Stanley-Jones (dc6a605)
* Add buffer space to the top of the QML example
2011-08-31 10:38:14 +1000 Andrew Stanley-Jones (918a3bf)
* Fix interfaceDefault to return the first entry if there's no
default
2011-08-29 14:48:39 +1000 Andrew Stanley-Jones (6778bed)
* Add more dirs for mt-emu, for sfw auto start in single process
2011-08-24 09:52:22 +0300 Xizhi Zhu (d39aa4b)
* Remove compile test for blkid.
2011-08-24 09:26:08 +0300 Xizhi Zhu (928bfc7)
* Link to D-Bus only when needed.
2011-08-23 15:56:34 +1000 Jason McDonald (a283674)
* Remove obsolete testlib files from .gitignore
2011-08-22 11:07:13 +0300 Xizhi Zhu (8d79a3b)
* Improve device info backend on Win.
2011-08-19 15:12:24 +0200 Steffen Hahn (b80a9be)
* Replaced blkid implementation with /dev/disk/by-uuid
2011-08-19 10:52:01 +1000 Andrew Stanley-Jones (fc67913)
* Change of Packages to a namespace
2011-08-17 15:28:40 +0200 Gunnar Sletta (b0fc3bd)
* compile with refactor branch
2011-08-17 16:53:54 +1000 Andrew Stanley-Jones (3f745fe)
* Added new wayland check
2011-08-17 08:55:44 +0300 Xizhi Zhu (425df59)
* Use QT_CONFIG to check if QtJson is available.
2011-08-17 08:52:16 +0300 Xizhi Zhu (3c714d2)
* Link to D-Bus only when needed.
2011-08-15 15:40:08 +0300 Xizhi Zhu (549bcbe)
* Implement batteryCount on Windows.
2011-08-15 15:38:10 +0300 Xizhi Zhu (a506ff1)
* EstimatedTime is not remainingChargingTime.
2011-08-16 10:05:22 +0300 Xizhi Zhu (f9ce188)
* Add JSONDB back-end for P&S.
2011-08-16 10:20:03 +1000 Andrew Stanley-Jones (8f0ae62)
* Remove gui from servicefw
2011-08-15 15:33:33 +0300 Xizhi Zhu (bb49376)
* Fix several compiling warnings in Windows.
2011-08-12 14:38:54 +1000 Andrew Stanley-Jones (a5a7afe)
* Add support for single process and update jsondb
2011-08-11 11:11:45 +1000 Andrew Stanley-Jones (4fb5adb)
* Add new security framework to SFW
2011-08-10 15:05:52 +1000 Rohan McGovern (b006739)
* Respect $$QT.serviceframework.bins
2011-08-09 14:10:37 +0300 Xizhi Zhu (f4397b6)
* Use lsb_release for OS version and product name.
2011-08-09 12:00:57 +0300 Xizhi Zhu (2001c6a)
* Fix the QML plugin for P&S.
2011-08-08 08:30:28 +1000 Andrew Stanley-Jones (d008366)
* fix gcc 4.6 linux compile with bluetooth support
2011-08-08 12:00:26 +0300 Xizhi Zhu (3e15a87)
* Add imeiCount() interface.
2011-08-05 15:39:12 +1000 Andrew Stanley-Jones (783b41c)
* Add setDefault to servicefw
2011-08-02 13:13:13 +1000 Andrew Stanley-Jones (de1836d)
* Remote QServiceContext and QAbstractSecuritySession
2011-07-29 16:50:22 +1000 Andrew Stanley-Jones (40680c5)
* Update to use SFW notions
2011-07-27 15:58:02 +1000 Michael Goddard (eac58e1)
* Remove old config test structure.
2011-07-26 19:17:42 +1000 Andrew Stanley-Jones (067d6c9)
* Fix install path and example building
2011-07-14 17:44:58 +1000 Andrew Stanley-Jones (aaad3d7)
* Updates for changes in the jsondb api
2011-07-26 11:40:52 +1000 Andrew Stanley-Jones (768fd5a)
* Changes in autogenerated QML wrappers
2011-07-20 09:29:30 +1000 Rohan McGovern (5c11341)
* Make sync.profile safer to evaluate.
2011-07-18 13:07:35 +1000 Rohan McGovern (26fdc2a)
* Fixed compile.
2011-07-14 10:33:13 +0300 Xizhi Zhu (83123b6)
* Fix the namespace for QML plugin.
2011-07-14 14:51:30 +1000 Andrew Stanley-Jones (f9bad11)
* Changes for QML2
2011-07-14 09:34:28 +0300 Xizhi Zhu (e23ce48)
* Fix build break.
2011-07-13 10:57:30 +1000 Andrew Stanley-Jones (e3975f9)
* Add serviceframework examples
2011-07-13 09:23:25 +0300 Xizhi Zhu (ab95bbe)
* Use oFono for 3G network info.
2011-07-13 14:13:23 +1000 alex (e76d5e0)
* Add metaobjectbuilder unit test
2011-07-12 09:11:58 +0300 Xizhi Zhu (40c7aec)
* Fix coding style issues.
2011-07-12 14:02:23 +1000 Andrew Stanley-Jones (f55d3e9)
* Add jsondb support to SFW
2011-07-11 16:17:34 +0300 Xizhi Zhu (2555a87)
* Implement the signals for network info.
2011-07-11 09:46:23 +0300 Xizhi Zhu (2f06d32)
* allLogicalDrives() no longer static.
2011-07-08 14:40:27 +0300 Jyri Tahtela (bab0362)
* Update licenseheader text in source files for qtsystems Qt module
2011-07-07 18:02:55 +1000 Alan Alpert (6210a66)
* Update sync.profile dependencies to new syntax
2011-07-07 13:27:13 +1000 Alex (4759327)
* Revert accidentally committed debug flag for SFW library
2011-07-06 22:52:37 +1000 Qt Continuous Integration System (27f3e54)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-07-06 14:26:45 +0300 Xizhi Zhu (67d2011)
* Merge branch 'use-bluez' into staging-master
2011-07-05 17:07:05 +0300 Xizhi Zhu (1146090)
* Get Bluetooth signal strength using Bluez.
2011-07-05 16:33:35 +0300 Xizhi Zhu (da99e19)
* Get Bluetooth status using Bluez.
2011-07-05 12:54:06 +0300 Xizhi Zhu (1d595d4)
* Get Bluetooth name using Bluez.
2011-07-05 12:38:54 +0300 Xizhi Zhu (90bd3c9)
* Get Bluetooth MAC address using Bluez.
2011-07-05 11:11:35 +0300 Xizhi Zhu (1556a5a)
* Get Bluetooth interface count using Bluez.
2011-07-05 10:57:24 +0300 Xizhi Zhu (a016864)
* Add compile test for Bluez.
2011-07-06 14:26:00 +0300 Xizhi Zhu (f2bf26b)
* Merge branch 'improve-storageinfo' into staging-master
2011-07-04 15:30:04 +0300 Xizhi Zhu (5bbe8d7)
* Use UDISKS to get UUID as a fall-back.
2011-07-04 14:50:49 +0300 Xizhi Zhu (f84deb1)
* Remove InternalFlashDrive.
2011-07-06 14:24:58 +0300 Xizhi Zhu (e3de110)
* Merge branch 'improve-displayinfo' into staging-master
2011-07-04 14:07:59 +0300 Xizhi Zhu (dacccd7)
* Implement the orientationChanged signal.
2011-07-04 13:43:13 +0300 Xizhi Zhu (1f693e3)
* Update docs for orientation.
2011-07-06 14:22:14 +0300 Xizhi Zhu (d6d39f1)
* Merge branch 'improve-deviceinfo' into staging-master
2011-07-04 13:15:04 +0300 Xizhi Zhu (6eb71d8)
* Check /sys/class/video_output/ for video output feature too.
2011-07-04 12:12:03 +0300 Xizhi Zhu (ca0b592)
* Set the buffered thermal state to unknown once the signal is
disconnected.
2011-07-04 12:06:21 +0300 Xizhi Zhu (27671c2)
* If screensaver enabled, we have TouchOrKeyboardLock enabled.
2011-07-04 11:50:16 +0300 Xizhi Zhu (353ece0)
* Add docs for versions and product name on Linux.
2011-07-04 11:37:45 +0300 Xizhi Zhu (64b513d)
* Implement SIM feature checking with oFono.
2011-07-06 20:41:44 +1000 Qt Continuous Integration System (9dc8411)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-07-06 13:12:11 +0300 Xizhi Zhu (38075b0)
* Fix the typo.
2011-07-06 13:11:51 +0300 Xizhi Zhu (e0ef83c)
* Merge branch 'improve-batteryinfo' into staging-master
2011-07-04 11:09:38 +0300 Xizhi Zhu (cbb4d1f)
* Improve tests for QBatteryInfo.
2011-07-04 10:51:38 +0300 Xizhi Zhu (a866b14)
* Remove duplicated code.
2011-07-04 10:39:14 +0300 Xizhi Zhu (0f2f97d)
* Put sysfs path as consts.
2011-07-04 10:32:15 +0300 Xizhi Zhu (92ed7c3)
* Fixes: timer only stops if we don't watch anything.
2011-07-04 10:29:03 +0300 Xizhi Zhu (195ad16)
* UnitUnknown is 0.
2011-07-04 10:28:31 +0300 Xizhi Zhu (da1884f)
* Better naming for private variables.
2011-07-04 10:12:47 +0300 Xizhi Zhu (f628d51)
* Buffer the max capacity of batteries.
2011-07-04 10:06:35 +0300 Xizhi Zhu (8e17b5f)
* Check the watch* booleans before reading.
2011-07-04 10:04:36 +0300 Xizhi Zhu (626f1db)
* Better name for (internal) getters.
2011-07-04 10:01:57 +0300 Xizhi Zhu (1493996)
* Immediately update the buffered values when signal gets connected.
2011-07-04 09:51:28 +0300 Xizhi Zhu (7b1a640)
* Add interface for batterCount().
2011-07-04 09:34:41 +0300 Xizhi Zhu (a71ed78)
* Remove USB_100mACharger and USB_500mACharger.
2011-07-06 11:34:04 +0300 Xizhi Zhu (22befea)
* Merge branch 'improve-sysinfo' into staging-master
2011-06-29 17:17:39 +0300 Xizhi Zhu (2dafbf8)
* Fix compile warnings.
2011-06-29 16:30:55 +0300 Xizhi Zhu (7e8aaba)
* Remove the singleton design for Bluez and oFono.
2011-06-21 18:00:28 +0300 Xizhi Zhu (2b481b7)
* Remove the Connected network state.
2011-06-21 17:07:42 +0300 Xizhi Zhu (1ed5711)
* Use WLAN_MASK and ETHERNET_MASK macros.
2011-06-21 17:04:20 +0300 Xizhi Zhu (3315448)
* Add the networkInterfaceCount() function.
2011-06-21 13:58:01 +0300 Xizhi Zhu (5c331c2)
* QDeviceInfoPrivate for Linux is a QObject.
2011-06-20 15:45:07 +0300 Xizhi Zhu (4a570ab)
* Use BLUEZ for wireless keybord on Linux.
2011-06-20 11:30:30 +0300 Xizhi Zhu (2db66bd)
* Add the implementation for rotation on Linux.
2011-06-20 10:12:12 +0300 Xizhi Zhu (958b003)
* Rename displayOrientation() to orientation().
2011-06-20 09:55:59 +0300 Xizhi Zhu (8e3b28f)
* Use oFono for IMEI on Linux.
2011-06-20 09:39:51 +0300 Xizhi Zhu (c82584e)
* Improve QDeviceInfo on Linux.
2011-06-20 09:36:18 +0300 Xizhi Zhu (5f79c5e)
* Change the return type of device ID to QString.
2011-06-20 09:31:36 +0300 Xizhi Zhu (0b28a17)
* Update the interface for IMEI for multiple modems.
2011-06-20 09:28:55 +0300 Xizhi Zhu (91e9252)
* Add implementation for thermal state on Linux.
2011-06-16 09:56:50 +0300 Xizhi Zhu (77a69c3)
* Add feature checking for NFC.
2011-06-15 14:00:56 +0300 Xizhi Zhu (f6fc4a4)
* Fix the mis-calculation of brightness.
2011-06-15 13:43:16 +0300 Xizhi Zhu (3df444a)
* Rename displayBrightness() to brightness().
2011-07-06 16:08:10 +1000 Qt Continuous Integration System (13e41a4)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-07-06 15:51:34 +1000 Alex (2576b06)
* Skip unit test as the fix is not available yet.
2011-07-05 19:45:40 +1000 Alex (827a8d5)
* fix wrong xml lookup path on Mac
2011-07-05 15:42:55 +1000 Alex (4a0cb92)
* fix trailing whitespace issues (Qt Style)
2011-07-05 15:41:40 +1000 Alex (1459fea)
* add missing servicedeletion test
2011-07-05 14:08:19 +1000 Alex (a6cb134)
* Remove failing testcase (for now) and fix two other test cases
2011-07-04 17:11:06 +1000 Alex (2cdc73a)
* add more debug output for CI system
2011-07-04 15:59:35 +1000 Alex (93b5e7b)
* Add QRemoteServiceRegister unit test for QtSFW
2011-07-04 15:40:00 +1000 Alex (b8f1631)
* add servicedatabase unittest
2011-07-04 15:37:45 +1000 Alex (33c3058)
* remove Symbian SFW databasemanager process
2011-07-04 14:44:51 +1000 Alex (5dabdd7)
* Remove unwanted dependency from QAbstractSecuritySession unit test
2011-07-04 14:27:31 +1000 Alex (e08b16b)
* add more error reporting to assist in fixing of failing test cases
2011-07-01 18:54:30 +1000 Alex (35a8012)
* Remove Qt Mobility references from license headers
2011-07-01 18:40:03 +1000 Alex (046b6a2)
* add first round of SFW unit tests
2011-07-01 15:09:14 +1000 Qt Continuous Integration System (2eb2646)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-07-01 13:52:57 +1000 Alex (26cdb75)
* comply with Qt Coding stlye
2011-07-01 13:44:23 +1000 Qt Continuous Integration System (96b0ef4)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-07-01 13:36:42 +1000 Alex (93d5b2c)
* simplify project file for declarative plug-ins
2011-07-01 13:33:18 +1000 Alex (cf827f5)
* add QML plug-in for ServiceFramework
2011-07-01 13:17:28 +1000 Alex (ffd51eb)
* add servicefw tool
2011-07-01 11:52:10 +1000 Qt Continuous Integration System (78b15ce)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-07-01 11:47:01 +1000 Alex (f7852e6)
* add a bit more convenience for compiletests
2011-06-29 22:14:12 +1000 Qt Continuous Integration System (e7e4354)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-06-29 14:50:57 +0300 Xizhi Zhu (33be1ca)
* Merge branch 'add-compile-tests' into staging-master
2011-06-29 14:50:14 +0300 Xizhi Zhu (6c377fa)
* Fix compile warnings in storage info.
2011-06-29 14:48:19 +0300 Xizhi Zhu (37b5a99)
* Fix stupid spelling error :S
2011-06-29 13:57:02 +0300 Xizhi Zhu (7175998)
* Add compile test for BLKID.
2011-06-29 13:51:48 +0300 Xizhi Zhu (6628c11)
* Add compile test for ContextKit.
2011-06-29 13:45:31 +0300 Xizhi Zhu (5208788)
* Add compile test for GConf.
2011-06-29 16:36:14 +1000 Qt Continuous Integration System (b5534f8)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-06-29 15:41:48 +1000 Alex (94615b9)
* fix the compile test
2011-06-29 15:17:50 +1000 Qt Continuous Integration System (d36de2c)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-06-29 14:23:19 +1000 Alex (6f0a84a)
* add simple config test support for qtsystems module
2011-06-29 11:08:24 +1000 Qt Continuous Integration System (e11ab3b)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-06-29 11:02:22 +1000 Alex (6e67508)
* make it possible to build SFW localsocket backend even on DBUS
systems
2011-06-28 21:34:55 +1000 Qt Continuous Integration System (be46a07)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-06-28 13:03:12 +0300 Xizhi Zhu (4e97a2e)
* Fix copy2build output path for QML plugin.
2011-06-28 19:40:12 +1000 Qt Continuous Integration System (b02b7bc)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-06-28 11:39:12 +0300 Xizhi Zhu (f77b0cf)
* Fix build break on MAC.
2011-06-28 19:03:46 +1000 Alex (3e6b813)
* make compile with Qt namespace and library infix
2011-06-28 11:01:18 +0300 Xizhi Zhu (014c13c)
* Fix the build break on MAC.
2011-06-28 10:42:35 +0300 Xizhi Zhu (1c0b617)
* Put platform-specific configs behind flags.
2011-06-27 17:00:08 +0300 Xizhi Zhu (3188786)
* remove usage of QT_SOURCE_TREE from systems module
2011-06-27 22:38:13 +1000 Qt Continuous Integration System (9c208fa)
* Merge branch 'master' of
git://scm.dev.nokia.troll.no/qt/qtsystems-staging
2011-06-27 15:33:04 +0300 Xizhi Zhu (e7b39a6)
* Fix the test cases in P&S.
2011-06-27 15:29:47 +0300 Xizhi Zhu (91617da)
* Fix build break.
2011-06-27 14:25:55 +0300 Xizhi Zhu (786dddf)
* Do not build GConf layer by default.
2011-06-27 14:19:43 +0300 Xizhi Zhu (a001661)
* Add DEFINES macro for each library.
2011-06-27 12:19:55 +0300 Xizhi Zhu (1f79267)
* Fix build break for Mac.
2011-06-27 09:25:33 +0300 Xizhi Zhu (339ac40)
* Mark the Linux-specific backend behind linux-*.
2011-06-24 10:17:23 +0300 Xizhi Zhu (fbe71c9)
* Set QML version for sysinfo as 5.0
2011-06-20 15:46:00 +0300 Xizhi Zhu (85b8295)
* Update the .gitignore file for serviceframework.
2011-06-20 11:43:34 +0300 Xizhi Zhu (c0b5b3b)
* Rename the module to QtSystems.
2011-06-20 12:01:29 +0300 Xizhi Zhu (66bd4fb)
* Merge branch 'improve-ps'
2011-06-15 13:01:38 +0300 Xizhi Zhu (2a19b5f)
* Add basic tests for P&S.
2011-06-15 10:31:03 +0300 Xizhi Zhu (557e113)
* Align auto tests with Qt5.
2011-06-15 10:05:07 +0300 Xizhi Zhu (3f3adbc)
* Add back-end for Win.
2011-06-15 09:39:19 +0300 Xizhi Zhu (a017c31)
* Add ContextKit backend.
2011-06-15 09:30:31 +0300 Xizhi Zhu (b5c588b)
* Don't export internal classes.
2011-06-20 12:00:28 +0300 Xizhi Zhu (b99fb3b)
* Fix the naming for serviceframework.
2011-06-17 17:48:57 +1000 Alex (e84e3a3)
* Fixup some Qt style issues
2011-06-15 19:14:16 +1000 Alex (0e3be46)
* Add first version of QtServiceFramework library
2011-06-15 15:26:41 +1000 Alex (79ec22e)
* don't build tests if user hasn't asked for them
2011-06-14 16:43:22 +0300 Xizhi Zhu (7761b08)
* Merge branch 'modularize-ps'
2011-06-14 16:30:05 +0300 Xizhi Zhu (f00e11f)
* Fix Qt coding styles.
2011-06-14 14:05:49 +0300 Xizhi Zhu (375a7dd)
* Import QML plugin.
2011-06-14 13:47:20 +0300 Xizhi Zhu (c9ff41c)
* Import P&S.
2011-06-14 13:49:37 +0300 Xizhi Zhu (4a83b19)
* Remove unused header install definitions.
2011-06-13 18:00:48 +0300 Xizhi Zhu (8e984ce)
* Remove the unused src.pri file.
2011-06-13 18:00:11 +0300 Xizhi Zhu (017a858)
* Fix compile warnings.
2011-06-13 16:35:22 +0300 Xizhi Zhu (d1c9b67)
* Merge branch 'align-qt5'
2011-06-13 16:34:29 +0300 Xizhi Zhu (4d2ab10)
* Fix build break.
2011-06-13 16:19:39 +0300 Xizhi Zhu (73eb33e)
* Align the build system with Qt5.
2011-06-13 13:48:44 +0300 Xizhi Zhu (26a37a6)
* Merge branch 'align-qt5'
2011-06-13 13:48:01 +0300 Xizhi Zhu (1bc7008)
* Fix the rpath for auto tests.
2011-06-13 13:07:12 +0300 Xizhi Zhu (23ac69c)
* Fix incorrect mix of private header includes.
2011-06-13 12:59:41 +0300 Xizhi Zhu (4ce58b6)
* Fix the module pri.
2011-06-13 12:55:53 +0300 Xizhi Zhu (1b6821c)
* Update the sync.profile file.
2011-06-13 11:56:18 +0300 Xizhi Zhu (71c6a85)
* Add QTSYSTEMINFO_VERSION macro for QtSystemInfo.
2011-06-13 11:19:57 +0300 Xizhi Zhu (8a59a0a)
* Add .gitignore file.
2011-06-13 10:58:24 +0300 Xizhi Zhu (be22058)
* Merge branch 'import-windows'
2011-06-10 15:10:45 +0300 Xizhi Zhu (0cdb1d5)
* Add stub implementation of QNetworkInfo for Win.
2011-06-10 13:42:35 +0300 Xizhi Zhu (97d7d2f)
* Add implementation for QBatteryInfo on Win.
2011-06-10 13:00:51 +0300 Xizhi Zhu (285175f)
* Add implementation of QStorageInfo for Win.
2011-06-10 10:00:32 +0300 Xizhi Zhu (381f28e)
* Add QDeviceInfo impl for Windows.
2011-06-10 09:42:26 +0300 Xizhi Zhu (283c225)
* Update the impl for screen saver on Win.
2011-06-09 13:43:42 +0300 Xizhi Zhu (7ea96f0)
* Import the implementation of QDisplayInfo for Win.
2011-06-09 10:50:57 +0300 Xizhi Zhu (a68823e)
* Import implementation of QInputDeviceInfo for win.
2011-06-08 16:42:45 +0300 Xizhi Zhu (4dd305a)
* Import implementation for QScreenSaver.
2011-06-08 16:17:11 +0300 Xizhi Zhu (fee838e)
* Fix the build break for Windows.
2011-06-08 16:16:29 +0300 Xizhi Zhu (af3cf77)
* Add configure.bat for Windows.
2011-06-07 12:40:06 +0300 Xizhi Zhu (4fcc17d)
* Merge branch 'improve-buildsystem'
2011-06-07 11:54:25 +0300 Xizhi Zhu (01dcffd)
* Align with Qt 5.
2011-06-07 11:49:41 +0300 Xizhi Zhu (54195d0)
* Add build option for oFono.
2011-06-07 11:39:48 +0300 Xizhi Zhu (704611e)
* Fix warnings.
2011-06-07 11:38:30 +0300 Xizhi Zhu (b93bd93)
* Add option for silent build.
2011-06-07 11:28:34 +0300 Xizhi Zhu (83b6bcf)
* Set the version based on library specific file.
2011-06-07 11:20:24 +0300 Xizhi Zhu (023ba61)
* Merge branch 'import-qmlplugin'
2011-06-06 16:51:38 +0300 Xizhi Zhu (4fb84dd)
* Add all elements.
2011-06-06 16:45:46 +0300 Xizhi Zhu (2f3413a)
* Add basic building block for QML plugin.
2011-06-06 16:31:50 +0300 Xizhi Zhu (a37dbba)
* Merge branch 'improve-buildsystem'
2011-06-06 15:40:10 +0300 Xizhi Zhu (87edc88)
* Generate .prl and .pc files.
2011-06-06 11:53:04 +0300 Xizhi Zhu (f759db1)
* Get headers and libs correctly installed.
2011-06-06 10:41:29 +0300 Xizhi Zhu (63afa96)
* Generate config to .pri.
2011-06-01 16:19:48 +0300 Xizhi Zhu (545bdc6)
* Check the return value after running qmake.
2011-06-01 16:12:01 +0300 Xizhi Zhu (7f5a564)
* Check the availability of qmake and make.
2011-06-01 16:04:15 +0300 Xizhi Zhu (79456f7)
* Enable the user to set qmake he preferrs.
2011-06-01 15:53:55 +0300 Xizhi Zhu (066b4f0)
* Generate header files.
2011-06-01 15:44:50 +0300 Xizhi Zhu (ca01c63)
* Add build option and dep checking for BLKID.
2011-06-01 13:46:05 +0300 Xizhi Zhu (bc69d9b)
* Merge branch 'import-linux'
2011-06-01 13:36:16 +0300 Xizhi Zhu (a02509d)
* Import QInputDeviceInfo.
2011-06-01 10:32:36 +0300 Xizhi Zhu (16005d7)
* Import QDeviceProfile.
2011-05-31 16:55:04 +0300 Xizhi Zhu (2324fd5)
* Add support for multi-interface in QNetworkInfo.
2011-05-31 15:57:22 +0300 Xizhi Zhu (0373a0e)
* Add oFono back-end for QNetworkInfo.
2011-05-31 14:08:40 +0300 Xizhi Zhu (80162ca)
* Fix the disconnectNotify() function.
2011-05-30 10:45:50 +0300 Xizhi Zhu (7c6cc88)
* Fix build break for QNetworkInfo on Ubuntu 10.10.
2011-05-30 10:21:09 +0300 Xizhi Zhu (efa9243)
* Update the docs for model() and productName().
2011-05-27 10:40:05 +0300 Xizhi Zhu (1efbc4e)
* Add signal support for QBatteryInfo.
2011-05-25 15:49:01 +0300 Xizhi Zhu (0459747)
* Add the logicalDriveChanged signal implementation.
2011-05-25 13:34:51 +0300 Xizhi Zhu (cea3af8)
* Remove the convenient function of storage usage.
2011-05-25 13:14:56 +0300 Xizhi Zhu (8cd7193)
* Import QNetworkInfo.
2011-05-24 14:21:04 +0300 Xizhi Zhu (f554876)
* Import QBatteryInfo.
2011-05-22 17:46:18 +0300 Xizhi Zhu (22cb41c)
* Update TODO list.
2011-05-22 17:01:26 +0300 Xizhi Zhu (22df918)
* Import QScreenSaver.
2011-05-22 16:51:51 +0300 Xizhi Zhu (78f3eca)
* Remove unused include files.
2011-05-20 13:39:39 +0300 Xizhi Zhu (f0ca449)
* Import QStorageInfo.
2011-05-19 16:21:02 +0300 Xizhi Zhu (afbc518)
* Add namespace for QDeviceInfoPrivate.
2011-05-19 16:08:16 +0300 Xizhi Zhu (9596a81)
* Import QDisplayInfo.
2011-05-19 12:00:15 +0300 Xizhi Zhu (646e1d5)
* Import the merged version of QDeviceInfo.
2011-05-19 10:11:49 +0300 Xizhi Zhu (a21832e)
* Import the macro definition.
2011-05-19 09:58:51 +0300 Xizhi Zhu (0a42b20)
* Initialize the QtSytemKit repository.
|