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
|
============
Version 44.5
============
- thumbnail: support %m expansion (!175, Zander Brown)
- Update seccomp filters from flatpak-run.c (!184, Michael Catanzaro)
- Fix various memory leaks (!188, !190, !191, Marco Trevisan and !178 Khalid Abu Shawarib)
- Run tests again by default
- Translation updates
============
Version 44.4
============
- Support TryExec for thumbnailers
- Translation updates
============
Version 44.3
============
- Fix CI regression for release upload
============
Version 44.2
============
- Stop using ratio character for time in the wall-clock (!176, Florian Müllner)
- Fix variable initialization (!169, Jonathan Blandford)
- General CI cleanups (!171, Jordan Petridis)
- Only parse XML files as slideshows (!165, Christian Hergert)
- Translation updates
============
Version 44.1
============
- Fix compatibility with muslc (!158, Pablo Correa Gomez)
- Fix GNOME_DESKTOP_IS_THUMBNAIL_FACTORY (!160, Matthijs Velsink)
- Update default Indic input methods (!163, Parag Nemade)
- Use ibus-chewing as the default input source for zh_TW (!164, Kan-Ru Chen)
- Translation updates
============
Version 44.0
============
- Adding a zero
==========
Version 44
==========
- Fix idle monitor watch leak
- Save original thumbnail dimensions in metadata
- Fix Turkish keyboard layout
- Translation updates
===============
Version 44.beta
===============
- Add GnomeWallClock:force-seconds property
- Translation updates
============
Version 43.1
============
- Fix gnome_parse_locale returning NULL for the C locale (!148, godvino)
- Use more sensible default keyboard for es_US (!150, Georges Basile Stavracas Neto)
- Delete failed thumbnail if successfully savings thumbnail (!151, Corey Berla)
- skip territory if no translation available (!152, Alban Browaeys)
- Translation updates
==========
Version 43
==========
- Translation updates
=============
Version 42.rc
=============
- gnome-languages: Simplify XPG language parsing
- Translation updates
=============
Version 43.alpha
=============
- Don't use bubblewrap inside snaps since those are already sandboxed
- Remove gnome-version.xml
- Add GCancellable and GError to the thumbnail API
- Make it possible to disable gobject-introspection generation
- Revert "thumbnails: keep the original file name"
- Include a header defining GNOME_DESKTOP_PLATFORM_VERSION
- Translation updates
=============
Version 42.rc
=============
- Translation updates
===============
Version 42.beta
===============
- Add async methods for thumbnail creation
- thumbnail: Resolve symlinks before exporting them with Flatpak
- Make table:cangjie5 the default input method for zh_HK
- Translation updates
============
Version 42.alpha.1
============
- build: fix soversion in libgnome-desktop-4
============
Version 42.alpha
============
- gnome-languages: fix translation of 3-letter code languages
- Introduce gnome-desktop-4, libgnome-desktop-3.0 is still available with a build flag
- Split libgnome-desktop into three, gnome-desktop, gnome-rr, gnome-bg. -rr and -bg depend on gtk4
- Refactor gnome-gettext-portable.h
- Translation updates
============
Version 41.1
============
- gnome-languages: Avoid passing NULL to newlocale
- Avoid the use of `allow-none` for out parameters
- Translation updates
============
Version 41.0
============
- Translation updates
=============
Version 41.rc
=============
- Some improves in the CI
- Translation updates
===============
Version 41.beta
===============
- xkb: Clear cached layouts when necessary
- Translation updates
================
Version 41.alpha
================
- Stop mounting ld.so.cache on non-glibc systems
- Replace usage of non-portable `uselocale` with locale-dependent functions
- Fix starttime hour parsing in animated background
- xkbinfo: only insert new layouts, skip over duplicate ones
- Translation updates
============
Version 40.0
============
- No changes
=============
Version 40.rc
=============
- bg-slide-show: Always parse date/time integers in base 10
- thumbnail: Fix thumbnailing of CBZ with UTF-8 filenames
- thumbnail: Fix non-working thumbnailer in Flatpak
- Translation updates
===============
Version 40.beta
===============
- xkbinfo: Update iso639Ids but not iso3166Ids correctly in evdev
- Translation updates
================
Version 40.alpha
================
- Add support for x-large and xx-large thumbnail sizes (!99, Bastien Nocera)
- Make it easier to profile thumbnailers (!94, Bastien Nocera)
- thumbnailer: Cache GStreamer's plugin registry (!93, Bastien Nocera)
- Sandbox thumbnailers in Flatpaks (!92, Bastien Nocera)
- Change default input source to anthy for Japanese (#181, Takao Fujiwara)
- xkbinfo: use libxkbregistry to parse the rules files (!79, Peter Hutterer)
- Translation updates
==============
Version 3.38.0
==============
- Translation updates
===============
Version 3.37.92
===============
- Translation updates
===============
Version 3.37.91
===============
- Allow /etc/alternatives in bubblewrap sandbox (#92, Simon McVittie)
- Fix bubblewrap sandbox on s390x (!82, Simon McVittie)
===============
Version 3.37.90
===============
- systemd: Default to garbage collect failed scopes
- systemd: Change naming scheme to conform to systemd convention
- Translation updates
==============
Version 3.37.3
==============
- Don't run locale tests at build time (#159, Simon McVittie)
- Translation updates
===============
Version 3.37.2
===============
- languages: Fix encoding issue when translating locale modifiers (#156)
- thumbnails: keep the orignal file name (#154)
- Translation updates
===============
Version 3.37.1
===============
- rr: add color transform functions
- remove unused direct x11 dependency
===============
Version 3.36.0
===============
- Translation updates
===============
Version 3.35.91
===============
- Translation updates
===============
Version 3.35.90
===============
- Fix crash in idle monitor
==============
Version 3.35.4
==============
- Remove unused API not compatible with wayland
==============
Version 3.35.3
==============
- Add utility function to start a transient systemd scope
- Blacklist seccomp on riscv64 architecture as its not supported yet
- Honor XKB_CONFIG_ROOT environment variable
==============
Version 3.35.2
==============
- Fix time display issue with Japanese translation (Tianhao Chai)
==============
Version 3.35.1
==============
- No changes
==============
Version 3.34.1
==============
- Translation updates
=================
Version 3.34.0
=================
- Translation updates
=================
Version 3.33.92.1
=================
- tests/wall*: Do not fail if some of the locales is missing
===============
Version 3.33.92
===============
- Updated translations
===============
Version 3.33.91
===============
- Updated translations
===============
Version 3.33.90
===============
- Avoid using g_type_class_add_private()
- Updated translations
==============
Version 3.33.4
==============
- Support common_name in ISO 639 (#49, Gunnar Hjalmarsson)
- Display locale @modifiers properly (#50, Gunnar Hjalmarsson)
- Fix detection of builtin display on NVIDIA (Jeremy Soller)
- GnomeBGSlideShow filename property replaced with a file property (Marco Trevisan)
==============
Version 3.33.3
==============
- Translation updates
==============
Version 3.33.2
==============
- thumbnailer: Correctly cleanup stale thumbnailer directories
- Translation updates
==============
Version 3.33.1
==============
- thumbnailer: fix incomplete TIOCSTI filtering (#112)
- gnome-languages: Use uselocale to avoid threadsafety issues (#105)
- Add default keyboard layout for Indonesia
- Translation updates
===============
Version 3.31.91
===============
- Translation updates
===============
Version 3.31.90
===============
- Fix slow thumbnailer due to missing font cache (#90)
- Translation updates
==============
Version 3.31.4
==============
- Fix some thumbnailer sandboxing issues
- Translation updates
==============
Version 3.31.3
==============
- Use LC_TIME for time format string translations
- Fix a use-after-free in the thumbnailer
==============
Version 3.31.2
==============
- Translation updates
===============
Version 3.31.1
===============
- Port buildsystem to meson
- Translation updates
===============
Version 3.30.0
===============
- Translation updates
===============
Version 3.29.92
===============
- Translation updates
===============
Version 3.29.91
===============
- Fix various wall clock regressions
- Fix regressions from intltool removal
- Fix regressions introduced by g_autoptr usage
=================
Version 3.29.90.1
=================
- wall-clock: Tweak the clock format
- Require gio-unix-2.0
===============
Version 3.29.90
===============
- wall-clock: Immediately react to show-weekday changes
==============
Version 3.29.4
==============
- No changes
==============
Version 3.29.3
==============
- Fix memory leak
- Updated translations
==============
Version 3.29.1
==============
- Updated translations
==============
Version 3.28.1
==============
- Updated translations
==============
Version 3.28.0
==============
- No changes
===============
Version 3.27.92
===============
- idle-monitor fixes
- Several fixes for compilation warnings
- Updated translations
===============
Version 3.27.90
===============
- Miscellaneous improvements to the thumbnailer code
- Remove unused gnome_desktop_thumbnail_has_uri()
- Replace GdkColor methods with GdkRGBA methods
===============
Version 3.27.2
===============
- No changes
===============
Version 3.27.1
===============
- Change default Japanish input source to KCC
- wall-clock: respect new clock-show-weekday setting
- Remove some obsolete API's in thumbnailer
- Modernize autotools configuration a bit
- Translations updates
===============
Version 3.26.0
===============
- Translation updates
===============
Version 3.25.92
===============
- Fix multiple bugs in thumbnailing
- Disable gvfs in thumbnailer sandboxes
- Translation updates
=================
Version 3.25.91.1
=================
- Fix multiple bugs in sandboxed thumbnailer handling,
including performance, and left-over files in /tmp
- Fix a memory leak in the display handling code
- Fix a compile-time error on x32
=================
Version 3.25.90.1
=================
- Improve error reporting in thumbnailers
- Fix crashes in thumbnailers (#785963)
===============
Version 3.25.90
===============
- Thumbnailers are now sandboxed (#7744970, #785197)
- Fix a crash in xkb info handling (#785320)
- Translation updates
==============
Version 3.25.4
==============
- Fix uninitialized memory in the thumbnailer (#784915)
- Add default input source for fr_BE
==============
Version 3.25.3
==============
- gnome-bg: Handle exif orientations (#516177)
- Translation upates
==============
Version 3.25.2
==============
- thumbnail: Update documentation
==============
Version 3.25.1
==============
- wallclock: don't update needlessly (#780861)
- wallclock: am/pm is always available now (#780877)
- Translation updates
==============
Version 3.24.0
==============
- No changes
===============
Version 3.23.92
===============
- No changes
===============
Version 3.23.91
===============
- No changes
===============
Version 3.23.90
===============
- Always prefer the backend-provided preview in thumbnails (#738503)
- Use ibus-libzhuyin as default input method for Simplified Chinese (#772674)
- Deprecated gnome_desktop_thumbnail_scale_down_pixbuf (#775991)
==============
Version 3.23.3
==============
- Always use external gdk-pixbuf thumbnailer (#768064)
================
Version 3.23.2
================
- No changes
================
Version 3.23.1
================
- No changes
================
Version 3.22.1
================
- Translation updates
================
Version 3.22.0
================
- No changes
================
Version 3.21.92
================
- Fix a crash on non-udev platforms (#770686)
- Translation updates
================
Version 3.21.90
================
- No changes
================
Version 3.21.4
================
- Use udev's hwdb to query PNP IDs (--disable-udev to disable this)
- Remove dependencies on xrandr and xext
================
Version 3.21.3
================
- Translation updates
================
Version 3.21.2
================
- Add API to know if a GnomeRRMode is interlaced
================
Version 3.21.1
================
- No changes
================
Version 3.20.1
================
- No changes
================
Version 3.20.0
================
- No changes
================
Version 3.19.93
================
- Add a way to get the frequency for a mode as a floating number
================
Version 3.19.92
================
- No changes
================
Version 3.19.91
================
- Reduce log spam in thumbnailing
- Translation updates
================
Version 3.19.90
================
- No changes
================
Version 3.19.4
================
- Capitalize language and territory names
- Add default keyboard layout for Mexico and Guatemala
- Avoid a crash when thumbnailing
- Be more careful when parsing locales
- Translation updates
================
Version 3.19.3
================
- Fix a compiler warning in gnome-rr
================
Version 3.19.2
================
- Translation updates
================
Version 3.19.1
================
- Fix turning off tiled monitors
- Fix thumbnailing of animations
- Translation updates
================
Version 3.18.0
================
- Translation updates
================
Version 3.17.92
================
- Support g_autoptr() for all libgnome-desktop object types
================
Version 3.17.90
================
- Translation updates
================
Version 3.17.4
================
- Remove unused EDID parsing code
- Support underscanning
- Export dpms information
- Add support for tiled monitors
- Translation updates
================
Version 3.17.3
================
- Fix build of installed-tests
- Translation updates
================
Version 3.17.2
================
- Add support for overscan compensation in displays (#748560)
================
Version 3.16.1
================
- No changes
================
Version 3.16.0
================
- Translation updates
================
Version 3.15.92
================
- Translation updates
================
Version 3.15.91
================
- No changes
================
Version 3.15.90
================
- Drop libgsystem dependency (#680326)
- Translation updates
===============
Version 3.15.4
===============
- Modernize gtk-doc use (#742479)
- Fix memory handling in GnomeRR and language code (#742111, #742569)
===============
Version 3.15.3
===============
- Fix mutex handling in thumbnailing code (#740666)
=================
Version 3.15.2.1
=================
- Fix thumbnailing failures due to internal cleanups (#684026)
===============
Version 3.15.2
===============
- Add installed tests (#737140)
- Recognize builtin monitors in Dell machines (#740289)
- Improve thumbnail handling (#684026)
- Translation updates
===============
Version 3.15.1
===============
- languages: Use a more broadly compatible locale codeset suffix (#710412)
- Remove unused code in gtk-reftest (#737123)
- Translation updates
===============
Version 3.14.1
===============
- Translation updates
===============
Version 3.14.0
===============
- Translation updates
================
Version 3.13.92
================
- Fixed the build on systems lacking openat()
- Translation updates
================
Version 3.13.91
================
- gnome-xkb-info: Fix some layouts not being associated to a locale
- Translation updates
================
Version 3.13.90
================
- gnome-rr: Add missing introspection annotations
- Translation updates
===============
Version 3.13.3
===============
- wall-clock: Add ref-tests for clock output
- wall-clock: Always use the ratio character (#726232)
===============
Version 3.13.2
===============
- gnome-rr: Output the EDID vendor/product info as well
- gnome-rr: Add backlight output in debug
- thumbnailer: Try harder to create a failed thumbnail (#728775)
===============
Version 3.13.1
===============
- Fix the build on OpenBSD
- gnome-rr: Improve debug output
===============
Version 3.12.1
===============
- gnome-rr: Actually define output_get_possible_crtcs (#727034)
- gnome-rr: Initialize GnomeRROutputInfo:rotation to GNOME_RR_ROTATION_0 (#727023)
===============
Version 3.12.0
===============
- Version bump for the GNOME 3.12.0 stable release
================
Version 3.11.91
================
- Always set the DPMS mode when requested
- Translation updates
================
Version 3.11.90
================
- gnome-xkb-info: Remove xkbfile dependency (#719942) - API and ABI break
- gnome-xkb-info: Apply main layout locale metadata to variants (#711291)
===============
Version 3.11.5
===============
- wall-clock: Replace ratio with colon on non-UTF-8 locales (#722664)
===============
Version 3.11.4
===============
- more new gnome-rr api
- drop using glibc internal headers
- docs for thumbnailers
- idle monitor fixes
- use newer libgsystem internally
===============
Version 3.11.2
===============
- gnome-rr: Improve debug output
- Translation updates
===============
Version 3.11.1
===============
- Add gnome_rr_output_get_min_backlight_step() API
===============
Version 3.10.1
===============
- gnome-bg: Fix memory leaks (#709271)
- gnome-bg: set error when parsing XML file that's not a slide show (#708877)
- languages: Obtain supported locales from "locale -a" output (#698383)
- thumbnailer: Bail if no pixbuf loader could be created (#709819)
- thumbnailer: Support loading thumbnails from remote locations (#708824)
- Translation updates
===============
Version 3.10.0
===============
- libsystem: Update from master ($708435)
- gnome-rr: refresh when mutter restarts (#708284)
- Translation updates
===============
Version 3.9.92
===============
- IdleMonitor: protect watches from being freed while in flight (#707396)
- thumbnailer: Always print errors from gs_file_read_noatime() (#699252)
- thumbnailer: Correctly check for errors (#699252)
- thumbnailer: Check gdk_pixbuf_loader_close()'s retval (#699252)
- Correct the transposed bits of the red chromacity in the EDID parser
- Translation updates
===============
Version 3.9.91
===============
- gnome-rr: don't assume 'default' means built-in (#706738)
- gnome-rr: Read back new backlight value after changes (#706729)
- idle: Use mutter api instead of direct X clals (#706006)
- Translation updates
===============
Version 3.9.90
===============
- gnome-rr: Add api to get physical size
- gnome-rr: Add async constructor
- gnome-rr: Port to mutter dbus api (#705510)
- xkb: Prevent a crash (#705885)
- Translation updates
==============
Version 3.9.5
==============
- xkb: Ensure strings are UTF-8
- gnome-rr: Fix a crash
- gnome-rr: Be more careful when parsing EDID
- wall-clock: Initialize gettext
- gnome-bg: Objects without a filename are not slideshows
- gnome-xkb-info: Fix memory leaks
- Translation updates
==============
Version 3.9.1
==============
- gnome-xkb-info: Don't store duplicated layouts in locale tables
- idle-monitor: Make per-device monitor fallible
- wall-clock: Move ratio from msg id's to translations
- idle-monitor: Allow multiple watches per alarm
- Translation updates
==============
Version 3.7.90
==============
- Fix introspection generation for Vala
- Fix introspectability of GnomeBg
* GnomeIdleMonitor:
- Break ABI and API to fix reliance of the API on an Xorg bug
- use standard GObject boilerplate
- generate gtk-doc documentation
* GnomeWallClock:
- generate gtk-doc documentation
- add timezone property which can be monitored
- Add conventional gnome_wall_clock_new()
* GnomeXkbInfo:
- generate gtk-doc documentation
- Use the correct methods to get language/country
- Handle duplicated layouts
- Add API to get layouts for language and country
* gnome-languages:
- generate gtk-doc documentation
- Add methods to get language/country from ISO codes
- Add default input sources per locale
* GnomeRR:
- Make GnomeRRConfig use the detected display name
- use standard GObject boilerplate
- Improve gtk-doc documentation
* GnomeBg:
- Split slide show API to be usable from gnome-shell
- Add asynchronous version of slideshow loading
=============
Version 3.7.5
=============
languages: Don't g_warning if there's no locale archive
languages: Extracted from gnome-control-center
languages: Fix a memory leak
xkb-info: Group layouts by country and language
xkb-info: Add a get_layout_info_for_locale method
Translation updates: Norwegian, Slovenian, Polish, Hebrew, Serbian
=============
Version 3.7.4
=============
690703 wallclock: Fix AM/PM detection
691701 GnomeRR: make DPMS take effect immediately
wallclock: return a proper error when idle-counter unavailable
Translation updates: Spanish, Polish, Norwegian bokmål, Arabic,
Greek, Galician, Hebrew, Assamese, Friulian, Bulgarian, Slovenian,
Uyghur
=============
Version 3.7.3
=============
rr-labeler has been moved into gnome-control-center
We use nice Unicode for date formatting now
688227 idle-monitor: Reset the alarm so it can be triggered again
Translation updates: Kannada, Odia, Tamil
=============
Version 3.7.2
=============
Bug fixes:
682224 Fix a memory leak in GnomeIdleMonitor
682224 Support device-specific counters
688189 Fix compiler warnings
687913 Only use 12h mode when am/pm is available
Translation updates: Japanese
=============
Version 3.7.1
=============
Bug fixes:
684814 rr-labeler: Improve drawing of monitor label
684803 gnome-xkb-info: Add public api to get XKB option descriptions
682224 Add GnomeIdleMonitor
686792 Don't use gvfs-copy in autogen.sh
Translation updates: Aragonese, Catalan, Catalan (Valencian), Japanese,
Ukrainian, Uzbek
===============
Version 3.6.0.1
===============
Bug fixes:
684802 gnome-xkb-info: Fix introspection element-type annotations
==============
Version 3.6.0
==============
Bug fixes:
684140 gnome-xkb-info: Fix a memory leak
Translation updates: Arabic, Assamese, Belarusian, Bengali India,
Brazilian Portuguese, British English, Bulgarian, Czech, Danish,
Estonian, Finnish, French, Galician, German, Greek, Gujarati, Hebrew,
Hindi, Hungarian, Indonesian, Italian, Kannada, Korean, Latvian,
Lithuanian, Malayalam, Marathi, Norwegian bokmål, Persian, Portuguese,
Punjabi, Russian, Serbian, Simplified Chinese, Slovenian, Spanish,
Telugu, Thai, Traditional Chinese
==============
Version 3.5.90
==============
Alexander Larsson (1):
Fix crash if default background not found
Colin Walters (5):
gnome-bg: Don't use C99 declarations
Pull in libgsystem, use it to read thumbnails with O_NOATIME
.gitmodules: Was missing from previous commit
Fix up submodule setup
Update libgsystem
Dominique Leuenberger (1):
trivial: Replace FSF address with current one.
Rui Matos (2):
gnome-xkb-info: Parse XKB options
gnome-xkb-info: Use glib's slice allocator for small structures
William Jon McCann (2):
Don't crash if unable to set background
Increase the size of thumbnails to 256
Fixed bugs:
- #680326, thumbnailer should not modify atime of file
- #680354, crashes if unable to create a root surface
- #681897, Outdated FSF address
- #681929, increase default wallpaper thumbnail size to 256
- #682004, gnome-xkb-info: Parse XKB options
- #682252, Crashes if default bg not installed
Translators:
- Ihar Hrachyshka (be)
- Fran Diéguez (gl)
- Dirgita (id)
- A S Alam (pa)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)
Many thanks to all contributors: Mario Blättermann, Alexander Larsson, Tom
Tryfonidis, William Jon McCann, Rui Matos, Fran Diéguez, Dominique
Leuenberger, Ihar Hrachyshka, Colin Walters, Daniel Mustieles, A S Alam,
Dirgita, Bastien Nocera
=============
Version 3.5.5
=============
Aurimas Černius (1):
Updated Lithuanian translation
Colin Walters (1):
Update to new GMutex API
Daniel Mustieles (1):
Updated Spanish translation
Fran Diéguez (1):
Updated Galician translations
Giovanni Campagna (1):
GnomeWallClock: add ignore-date property
Kjartan Maraas (1):
Updated Norwegian bokmål translation
Matej Urbančič (1):
Updated Slovenian translation
Matthias Clasen (1):
Port to new documentation infrastructure
Nilamdyuti Goswami (1):
Assamese translation updated
Piotr Drąg (1):
Updated Polish translation
Sebastien Bacher (1):
gnome-bg: load the default background if the configured one is invalid
Sweta Kothari (1):
Updated gujarati file
Tom Tryfonidis (1):
Updated Greek translation
Yaron Shahrabani (2):
Updated Hebrew translation.
Updated Hebrew translation.
Мирослав Николић (1):
Updated Serbian translation
=============
Version 3.5.4
=============
No news
=============
Version 3.5.3
=============
Andrea Cimitan (1):
gnome-bg: Fix color conversion for solid backgrounds
Bastien Nocera (4):
gnome-rr: Add gnome_rr_output_get_ids_from_edid()
gnome-rr: Document the default DPI setting
pnp-ids: Add test program
pnp-ids: Add loop for speed testing the ID fetching
Christian Hergert (1):
gnome-rr: Draw monitor labels with rounded corners
Matthias Clasen (1):
Post-release version bump
Nilamdyuti Goswami (1):
Assamese translation reviewed
Ray Strode (2):
gnome-bg: force property update when doing new crossfade frame
Revert "Allow rotation if the virtual size has the correct number of pixels"
William Jon McCann (1):
Move thumbnails into XDG_CACHE_HOME
=============
Version 3.5.2
=============
* Add api to parse and describe XML layouts (#676583)
* Make monitor labels translucent and click-through (#675696)
* Fix a crash in background slide-shows when the system clock
is behind (#673551)
* Use "default" as the name for built-in laptop outputs (#949296)
* Add a gnome-rr-debug tool to help with debugging GnomeRR issues
* Translation updates
==============
Version 3.3.92
==============
libgnome-desktop
* GnomeBG:
- Publish the 'representative color' (Ryan Lortie)
- Code cleanups (Ryan Lortie)
* GnomeRR:
- Add definition for next rotation (Bastien Nocera)
- Detect Apple DFP outputs as internal (Richard Hughes)
Translators
* rajesh (hi)
* Seng Sutha (km)
==============
Version 3.3.91
==============
libgnome-desktop
* Add missing linking with -lrt for clock_gettime() (Martin Pitt)
* GnomeRR: Consider Embedded Display Port outputs as the laptop's
built-in display (Seth Forshee)
Translators
* Bahodir Mansurov (uz@cyrillic)
==============
Version 3.3.90
==============
libgnome-desktop
* GnomeBG: Add paranoid check to avoid crash (Gordon Allott)
Translators
* Mattias Põldaru (et)
=============
Version 3.3.5
=============
Misc
* Include exported pkg-config name in GIR (Evan Nemerson)
Translators
* Kjartan Maraas (nb)
=============
Version 3.3.4
=============
libgnome-desktop
* GnomeRR:
- Use GDK to get work area (Bastien Nocera)
- gnome_rr_screen_new() now creates a singleton for the specified
GdkScreen (Federico Mena Quintero)
Translators
* Jovan Naumovski (mk)
=============
Version 3.3.3
=============
No change, just a version bump: it'd be a shame to miss the 3.3.3 release :-)
=============
Version 3.3.2
=============
libgnome-desktop
* GnomeRR:
- Don't refresh the GnomeRRScreen when applying a matched
configuration from a file (Chris Coulson)
=============
Version 3.3.1
=============
libgnome-desktop
* GnomePnpIds: Add object to get the vendor name from PNP IDs
(Bastien Nocera)
* GnomeRR:
- Fix crash in update_brightness_limits (Ray Strode)
- Don't print an error for no backlight (Bastien Nocera)
- Remove deprecated functions (Bastien Nocera)
- When setting the DPMS mode manually, clear the timeouts
(Michael Vogt, Richard Hughes)
- Ignore DPMSSetTimeouts() and DPMSForceLevel() return value
(Alexandre Rostovtsev)
- Other DPMS-related fixes (Richard Hughes)
* GnomeWallClock:
- Remove the date/time source on dispose (Vincent)
- Fix non-Linux fallback code (Colin Walters)
Misc
* Lower xext dependency to 1.1 (Sean Finney)
* Require XRandR 1.3 during compilation (Bastien Nocera)
Translators
* Nilamdyuti Goswami (as)
* Jiro Matsuzawa (ja)
* Hari Krishna (te)
==============
Version 3.1.91
==============
libgnome-desktop
* Add GnomeWallClock (Colin Walters)
Translators
* Jorge González (es)
* Kjartan Maraas (nb)
* Piotr Drąg (pl)
================
Version 3.1.90.1
================
libgnome-desktop
* Link against libm (Frederic Peters)
==============
Version 3.1.90
==============
libgnome-desktop
* Remove GnomeTzMonitor (Bastien Nocera)
=============
Version 3.1.5
=============
libgnome-desktop
* GnomeRR: Fix settings the DPMS mode (Richard Hughes)
=============
Version 3.1.4
=============
libgnome-desktop
* GnomeRR: Add the capability to get and set the DPMS mode of the
screen (Richard Hughes)
Misc
* Fix Cflags path in uninstalled.pc file (Brian Cameron)
* Remove stale startup-notification dependency (Vincent)
* Require xext in configure (Xan Lopez)
Translators
* Tommi Vainikainen (fi)
=============
Version 3.1.3
=============
Note to packagers: while new API was added in this release, the version of the
library is unchanged; this is because we already did a major bump earlier in
3.1.x.
libgnome-desktop
* GnomeRR: Add methods to control the backlight on each output (Richard
Hughes)
Misc
* Modernize build system a bit (Vincent)
Translators
* Yuri Matsuk (be)
* Мирослав Николић (sr)
* Miroslav Nikolić (sr@latin)
* Muhammet Kara (tr)
=============
Version 3.1.2
=============
Note to packagers: this release breaks ABI compatibility in GnomeRR, so the
version of the library was bumped.
libgnome-desktop
* GnomeDesktopThumbnail: Use GOnce for thread safety (Colin Walters)
* GnomeRR: Add a size return value to gnome_rr_output_get_edid_data()
(Richard Hughes)
* GnomeRR: Emit ::output-connected and ::output-disconnected when
screen outputs come and go (Richard Hughes)
Translators
* Daniel Martinez (an)
* Gil Forcada (ca@valencia)
* Kristjan SCHMIDT (eo)
* Мирослав Николић (sr)
* Miroslav Nikolić (sr@latin)
=============
Version 3.1.1
=============
libgnome-desktop
* GnomeRR: Fix crash whden randr is not available (Matthias Clasen)
* GnomeRR: Add ability to show and hide the monitor labels (Robert
Ancell)
Translators
* Daniel Martinez (an)
=============
Version 3.0.1
=============
Translators
* Anousak Souphavanh (lo)
* Enrico Nicoletto (pt_BR)
=============
Version 3.0.0
=============
libgnome-desktop
* GnomeRR: Fix build when randr is not available (Federico Mena
Quintero)
* GnomeRR: Avoid a crash with spice client (Alex Larsson)
Translators
* F Wolff (af)
* Zenat Rahnuma (bn)
* Dr.T.Vasudevan (ta)
* Sahran (ug)
===============
Version 2.91.93
===============
libgnome-desktop
* Revert "Force property update when doing new crossfade
frame" (Cosimo Cecchi)
===============
Version 2.91.92
===============
libgnome-desktop
* Force property update when doing new crossfade frame (Ray Strode)
* Use picture-uri GSettings key (Bastien Nocera)
Misc
* Don't build some RANDR code if RANDR is not available (Federico Mena
Quintero)
Translators
* Rudolfs Mazurs (lv)
* Yuri Myasoedov (ru)
* Amitakhya Phukan (as)
===============
Version 2.91.91
===============
libgnome-desktop
* Introspection build improvement (Benjamin Otte)
Misc
* Bump GTK+ 3 requirement to 3.0 (Carlos Garcia Campos)
Translators
* Luca Ferretti (it)
* Rudolfs (lv)
* Korostil Daniel (uk)
===============
Version 2.91.90
===============
libgnome-desktop
* GnomeRR: Fix refcount issues in GnomeRRLabeler (Bastien Nocera)
* GnomeBG: Fix background cache (Vincent)
* GnomeBG: Better support for one-slide slideshows, for image with
multiple sizes (Vincent)
* GnomeRR: Properly position GnomeRRLabeler labels (Matthias Clasen)
Misc
* Build fix (Vincent)
Translators
* ivarela (ast)
* Runa Bhattacharjee (bn_IN)
* Sweta Kothari (gu)
================
Version 2.91.6.1
================
Misc
* Do not require gconf to build introspection data (Vincent)
Translators
* Khaled Hosny (ar)
* Iñaki Larrañaga Murgoitio (eu)
* Fran Diéguez (gl)
==============
Version 2.91.6
==============
libgnome-desktop
* Prevent gnome-settings-daemon from crashing at startup
==============
Version 2.91.5
==============
libgnome-desktop
* gnome-desktop-utils has been ported to GSettings (#638169)
* GnomeRRScreen, GnomeRRConfig and GnomeOutputInfo have been
turned into a GObjects (#630913) API change!
* The GnomeRR api is introspectable now
* Switch thumbnailers from GConf to key files (#638172)
Translations
German
Swedish
Uyghur
Vietnamese
==============
Version 2.91.4
==============
Note to distributors: gnome-about got removed, and is replaced by a System
Information panel in gnome-control-center.
libgnome-desktop
* Adapt to GTK+ 3 changes (Benjamin Otte)
Misc
* Don't export private symbols in the shared library (Emilio Pozuelo
Monfort)
Translators
* Mattias Põldaru (et)
* Torstein Adolf Winterseth (nn)
* Wei-Lun Chao (zh_HK)
* Wei-Lun Chao (zh_TW)
==============
Version 2.91.3
==============
libgnome-desktop
* Add API to ensure primary display is set in config (William Jon McCann)
* Add cache for resized wallpapers (to help CPU usage on startup) (Didier Roche)
* Remove gconf-2.0 from pkg-config files (Vincent Untz)
==============
Version 2.91.2
==============
libgnome-desktop
* Move include files to libgnome-desktop/ (Giovanni Campagna)
* Fix possible double-free when destroying private windows (Bastien Nocera)
* Fix include path for API docs (Bastien Nocera)
Misc
* Fix translations which do not respect python variable names (Claude Paroz)
Translators
* Gheyret T.Kenji (ug)
==============
Version 2.91.1
==============
libgnome-desktop
* GnomeRR: Make the RR labels honor workarea so they don't
appear over/under panels (William Jon McCann)
* Don't read past the end of a string (#629168) (Federico Mena Quintero)
* GnomeBG: Port to GSettings (Tomas Bzatek)
Misc
* Require gconf in pc file (Benjamin Otte)
Translators
* Carles Ferrando (ca)
* Mahyar Moghimi (fa)
* Kibavuidi Nsiangani (kg)
* Changwoo Ryu (ko)
* Matej Urbančič (sl)
==============
Version 2.91.0
==============
libgnome-desktop
* GnomeRR: Force a refresh of timestamps so other clients won't think
this is a server-generated event (Ray Strode)
* Thumbnail: Look up mimetypes properly (Matthias Clasen)
* GnomeBG: Update for GTK+ 3 changes (Benjamin Otte, Jon McCann)
* GnomeBG: Don't try to use a null format (Ray Strode)
Misc
* Rename --enable-deprecations configure flag to
--enable-deprecation-flags (Vincent)
Translators
* Gil Forcada (ca)
* Petr Kovar (cs)
* Ask Hjorth Larsen (da)
* Takayuki KUSANO (ja)
* Baurzhan Muftakhidinov (kk)
* Žygimantas Beručka (lt)
* Wouter Bolsterlee (nl)
* Piotr Drąg (pl)
* Lucian Adrian Grijincu (ro)
==============
Version 2.90.5
==============
Note to distributors: this release should be the first release of a gtk+ 3
based gnome-desktop that is completely parallel-installable with a gtk+ 2 based
gnome-desktop. You can use the --disable-gnome-about and --disable-desktop-docs
configure flags for this.
libgnome-desktop
* Don't use deprecated Gdk drawing APIs (Benjamin Otte)
* Drop GnomeDesktopItem API (Vincent)
* GnomeBG: Be sure to unreference the file_monitor object during
dispose (Thomas Wood)
gnome-about
* Update man page (Vincent)
Misc
* Use $(datadir)/libgnome-desktop-3.0 for library datadir (Vincent)
* Add --disable-gnome-about configure flag (Vincent)
* Remove old icons installed in /usr/share/pixmaps (Vincent)
* Add --disable-desktop-docs configure flag (Vincent)
* Update information in README and other files (Vincent)
Translators
* Daniel Martinez (an)
* Alexander Shopov (bg)
* Michael Kotsarinis (el)
* Bruce Cowan (en_GB)
* Claude Paroz (fr)
* Sense Hofstede (fy)
* Fran Diéguez (gl)
* Gabor Kelemen (hu)
* Dirgita (id)
* Shankar Prasad (kn)
* Manoj Kumar Giri (or)
* A S Alam (pa)
* Duarte Loreto (pt)
* Jonh Wendell (pt_BR)
* Yuri Myasoedov (ru)
* Милош Поповић (sr)
* Miloš Popović (sr@latin)
* Sahran (ug)
* vicwjb (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
==============
Version 2.90.4
==============
Misc
* Don't requires gdk-pixbuf-3.0 (Matthias Clasen)
Translators
* Kristjan SCHMIDT (eo)
* Kjartan Maraas (nb)
==============
Version 2.90.1
==============
libgnome-desktop
* Fix parallel installation of the developer documentation
==============
Version 2.90.0
==============
libgnome-desktop
* Port to GTK+ 3.0, should be parallel installable with
the GTK 2.x version, bar gnome-about
==============
Version 2.31.2
==============
libgnome-desktop
* GnomeRR: Improve errors from the CRTC assignment process
(Federico Mena Quintero)
* GnomeBG: Fix a case of width-for-height confusion that could lead to
huge memory consumption on multi-monitor systems (Matthias Clasen)
Translators
* Gil Forcada (ca)
* Gil Forcada (ca@valencia)
* Thomas Thurman (en@shaw)
* Jorge González (es)
* Mattias Põldaru (et)
* Fran Diéguez (gl)
* Narine Martirosyan (hy)
* Shankar Prasad (kn)
* Anita Reitere (lv)
* Sandeep Shedmake (mr)
* Ahmed Noor Kader Mustajir Md Eusoff (ms)
* Kjartan Maraas (nb)
* Manoj Kumar Giri (or)
* Marcel Telka (sk)
* Matej Urbančič (sl)
* Theppitak Karoonboonyanan (th)
==============
Version 2.30.0
==============
libgnome-desktop
* GnomeRR: Fix build failure with GTK 2.19+ (Rob Taylor)
* GnomeRR: Fix build with -DGSEAL_ENABLE (Vincent)
* GnomeBG: Fix crash in gradient handling code (Matthias Clasen)
* GnomeRR: Ignore errors when setting the monitor size fails (Matthias
Clasen)
Misc
* Really fix build without randr (Vincent)
Translators
* Israt Jahan (bn)
* Denis (br)
* Gil Forcada (ca)
* Reşat SABIQ (crh)
* Petr Kovar (cs)
* Ask Hjorth Larsen (da)
* Bakaoukas Nikolaos (el)
* Tommi Vainikainen (fi)
* Milo Casagrande (it)
* Hideki Yamane (Debian-JP) (ja)
* Badral (mn)
* Wouter Bolsterlee (nl)
* A S Alam (pa)
* Piotr Drąg (pl)
* Duarte Loreto (pt)
* Adi Roiban (ro)
* Marcel Telka (sk)
* Горан Ракић (sr)
* Goran Rakić (sr@latin)
* Dr,T,Vasudevan (ta)
* Maxim Dziumanenko (uk)
===============
Version 2.29.92
===============
libgnome-desktop
* GnomeRR: Add new API gnome_rr_output_get_connector_type() and
gnome_rr_output_is_laptop() (Federico Mena Quintero, Matthias Clasen)
* GnomeRR: fix leak (Federico Mean Quintero)
* GnomeRR: build fix (Vincent)
* GnomeBG: Drop pixbuf cache before switching slides (Matthias Clasen)
Misc
* Make xrandr an optional dependency (Federico Mean Quintero)
* Add main category to gnome-about desktop file (Vincent)
Translators
* Alexander Shopov (bg)
* Mario Blättermann (de)
* Bruce Cowan (en_GB)
* Jorge González (es)
* Ivar Smolin (et)
* Iñaki Larrañaga Murgoitio (eu)
* Claude Paroz (fr)
* Antón Méixome (gl)
* Gabor Kelemen (hu)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Kjartan Maraas (nb)
* Torstein Adolf Winterseth (nn)
* Piotr Drąg (pl)
* Antonio Fernandes C. Neto (pt_BR)
* Yuri Kozlov (ru)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 2.29.91
===============
libgnome-desktop
* GnomeBG: Fix a memory leak (Matthias Clasen)
* GnomeBG: Add a picture option to make the background span monitors
(Matthias Clasen)
* GnomeDesktopItem: Improve error string (Vincent)
* Add translator comments (Vincent)
Translators
* Khaled Hosny (ar)
* Fran Diéguez (gl)
* Matej Urbančič (sl)
===============
Version 2.29.90
===============
Translators
* Μάριος Ζηντίλης (el)
* Anousak Souphavanh (lo)
* Umarzuki bin Mochlis Moktar (ms)
* Torstein Adolf Winterseth (nn)
==============
Version 2.29.6
==============
Translators
* Sadia Afroz (bn)
* Erdal Ronahi (ku)
==============
Version 2.29.5
==============
libgnome-desktop
* Bump library soname since ABI was broken in 2.29.4 (Vincent)
==============
Version 2.29.4
==============
libgnome-desktop
* Per-monitor background support (William Jon McCann)
* Memory leak fixes (William Jon McCann)
Translators
* Simplified Chinese (Tao Wei)
==============
Version 2.29.3
==============
Misc
* Build improvement (Pascal Terjan)
==============
Version 2.29.2
==============
libgnome-desktop
* GnomeRR: Allow rotation if the virtual size has the correct number of
pixels (Federico Mena Quintero)
* GnomeRR: Add gamma API (David Airlie)
Translators
* Thomas Thurman (en@shaw)
* Nils-Christoph Fiedler (nds)
==============
Version 2.28.1
==============
Translators
* Reşat SABIQ (crh)
* Yaron Shahrabani (he)
* Sveinn í Felli (is)
* Leonid Kanter (ru)
==============
Version 2.28.0
==============
Translators
* Amitakhya Phukan (as)
* Denis Arnaud (br)
* Gil Forcada (ca)
* Petr Kovar (cs)
* Per Kongstad (da)
* Philip Withnall (en_GB)
* Tommi Vainikainen (fi)
* Rajesh Ranjan (hi)
* Takayuki KUSANO (ja)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Rajesh Ranjan (mai)
* Peter Ani (ml)
* Sandeep Shedmake (mr)
* Nils-Christoph Fiedler (nds)
* A S Alam (pa)
* Adi Roiban (ro)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Krishna Babu K (te)
* Maxim Dziumanenko (uk)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 2.27.92
===============
Translators
* Khaled Hosny (ar)
* Runa Bhattacharjee (bn_IN)
* Iñaki Larrañaga Murgoitio (eu)
* Claude Paroz (fr)
* Gabor Kelemen (hu)
* Tomasz Dominikowski (pl)
* Duarte Loreto (pt)
* Djavan Fagundes (pt_BR)
* Горан Ракић (sr)
* Goran Rakić (sr@latin)
* Baris Cicek (tr)
===============
Version 2.27.91
===============
libgnome-desktop
* GnomeRR: add support for primary monitor (Matthias Clasen)
* GnomeRR: in clone mode, don't label each output (Federico Mena
Quintero)
* GnomeBG: add gnome_bg_changes_with_time() API (Matthias Clasen)
* GnomeBG: gnome_bg_create_frame_thumbnail() API (Matthias Clasen)
* Build fixes.
gnome-about
* Remove deprecated Encoding key from desktop file (Frédéric Péters)
Translators
* Khaled Hosny (ar)
* Alexander Shopov (bg)
* Mario Blättermann (de)
* Jorge González (es)
* Ivar Smolin (et)
* Seán de Búrca (ga)
* Antón Méixome (gl)
* Sweta Kothari (gu)
* Luca Ferretti (it)
* Kjartan Maraas (nb)
* Nils-Christoph Fiedler (nds)
* Manoj Kumar Giri (or)
* Daniel Nylander (sv)
* I. Felix (ta)
* Theppitak Karoonboonyanan (th)
==============
Version 2.27.5
==============
libgnome-desktop
* Thumbnail: Fix thumbnailer thread-safety (Dan Winship)
* GnomeRR: Get monitor vendor name from pnp.ids (Matthias Clasen)
gnome-about
* Remove libgnome usage (Frédéric Péters)
Misc
* Use silent-rules with automake 1.11 (Vincent)
* Add --with-pnp-ids-path to let distributors specify an alternative
pnp.ids file to the one shipped with gnome-desktop (Vincent)
Translators
* Aron Xu (zh_CN)
==============
Version 2.27.4
==============
libgnome-desktop
* Adapt to RANDR 1.3's name for the EDID property (Adam Jackson)
Doc Translations
* Joan Duran (ca)
==============
Version 2.27.3
==============
libgnome-desktop
* GnomeRR: Only select for RRScreenChangeNotifyMask, not for the more
detailed RANDR 1.2 events (Federico Mena Quintero)
* GnomeRR: Don't ask for RANDR events if the caller doesn't specify a
callback (Federico Mena Quintero)
* GnomeRR: Add _with_time() versions to the GnomeRR and GnomeRRConfig
functions that change the RANDR configuration (Federico Mena
Quintero)
* GnomeRR: Add gnome_rr_screen_get_timestamps() to query the XRR
timestamps (Federico Mena Quintero)
* GnomeRR: Don't force a reprobe of the RANDR outputs on every RANDR
event (Federico Mena Quintero)
* GnomeRR: First update screen resources, then update the screen size
range (Federico Mena Quintero)
* GnomeRR: Add debug dialog to show the RANDR timestamps (Federico Mena
Quintero)
Translators
* Anousak Souphavanh (lo)
* Ivar Smolin (et)
==============
Version 2.26.2
==============
libgnome-desktop
* Thumbnail: Preload /gnome/desktop/thumbnails in thumbnail factory for
performance (Alexander Larsson)
* GnomeRR: Fill out ScreenInfo structs sufficiently without reprobing
(Matthias Clasen)
* GnomeRR: Fix display name heuristics to result less in 'Unknown'
(Matthias Clasen)
* Thumbnail: Code improvements (Felix Riemann)
* GnomeRR: Don't append a newline to monitor vendor names (Federico
Mena Quintero)
* GnomeRR: Make GnomeRRLabeler's labels explicitly black (Federico Mena
Quintero)
Misc
* Build system changes following git migration (Vincent)
* Various tiny build system fixes (Vincent)
* Remove gnome-feedback doc files that were unused anyway (Vincent)
* Use shave to improve build log readability (Vincent)
Translators
* Ivar Smolin (et)
* Jordi Mallach (ca@valencia)
* Maxim Dziumanenko (uk)
==============
Version 2.26.1
==============
libgnome-desktop
* GnomeBG: handle X errors when the root properties point to something
wrong when getting the root pixmap (Alexander Larsson)
* GnomeRR: use XRRGetScreenResourcesCurrent() from RANDR 1.3 when
possible, when we only need to fetch the current RANDR status
(Alberto Milone, Federico Mena Quintero)
gnome-about
* Make parsing of gnome-version.xml more tolerant against missing
fields (Vincent)
Misc
* Add a --disable-date-in-gnome-version configure option to remove the
build date from gnome-version.xml (Vincent)
* Remove unused --with-kde-datadir configure option (Vincent)
Doc Translations
* Kostas Papadimas (el)
Translators
* Djihed Afifi (ar)
* Ivar Smolin (et)
* Shankar Prasad (kn)
* Kjartan Maraas (nb)
* Nickolay V. Shmyrev (ru)
* Горан Ракић (sr)
==============
Version 2.26.0
==============
libgnome-desktop
* GnomeRR: rab the X server while tweaking the RANDR configuration.
(Federico Mena Quintero)
Misc
* Remove scrollkeeper check, since it belongs to gnome-doc-utils
(Vincent)
Translators
* Amitakhya Phukan (as)
* Runa Bhattacharjee (bn_IN)
* Petr Kovar (cs)
* Christian Kirbach (de)
* Kostas Papadimas (el)
* Suso Baleato (gl)
* Rajesh Ranjan (hi)
* Sandeep Shedmake (mr)
* I. Felix (ta)
* Krishna Babu K (te)
* Baris Cicek (tr)
===============
Version 2.25.92
===============
libgnome-desktop
* GnomeBG: Allow apps to ignore a pending change so they can avoid
updating their background twice (Alexander Larsson)
* GnomeBG: Blow all expensive caches if we're not gonna update the
background again in one minute (Alexander Larsson)
* GnomeBG: Do slightly less steps in slide transitions to avoid using
to much resources on things that are not visible (Alexander Larsson)
* GnomeBG: Remove outstanding transitions on finalize (Alexander
Larsson)
* GnomeRR: Use g_new0() instead of calloc() for consistency (Federico
Mena Quintero)
* GnomeRR: Fix leak (Federico Mena Quintero)
* GnomeRR: Code cleanup (Federico Mena Quintero)
* GnomeRR: Revert the change to use XRRGetScreenResourcesCurrent(),
it's not needed anymore and it broke the "Detect Monitors" button
(Matthias Clasen)
* General: Make sure that the translation system is initiliazed so that
translations can be used (Vincent)
Doc Translations
* Joan Duran (ca)
Translators
* Ihar Hrachyshka (be@latin)
* Reşat SABIQ (crh)
* David Lodge (en_GB)
* Luca Ferretti (it)
* Praveen Arimbrathodiyil (ml)
* Manoj Kumar Giri (or)
* Duarte Loreto (pt)
* Adi Roiban (ro)
===============
Version 2.25.91
===============
Doc Translations
* Inaki Larranaga Murgoitio (eu)
Translators
* Xuacu (ast)
* Alexander Shopov (bg)
* Per Kongstad (da)
* Dawa pemo (dz)
* Simos Xenitellis (el)
* Jorge González (es)
* Iñaki Larrañaga Murgoitio (eu)
* Farzaneh Sarafraz (fa)
* Sweta Kothari (gu)
* Rajesh Ranjan (hi)
* Takeshi AIHANA (ja)
* Vladimer Sichinava ვლადიმერ სიჭინავა (ka)
* Raivis Dejus (lv)
* Jovan Naumovski (mk)
* Wouter Bolsterlee (nl)
* Tomasz Dominikowski (pl)
* Adi Roiban (ro)
* Steve Murphy (rw)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Nurali Abdurahmonov (uz)
* Clytie Siddall (vi)
* 甘露(Gan Lu) (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 2.25.90
===============
libgnome-desktop
* GnomeRR: Create a backup file of the configuration when saving
(Federico Mena Quintero)
* GnomeRR: Add public API to get to $(XDG_CONFIG_HOME)/monitors.xml and
a backup of that file (Federico Mena Quintero)
* GnomeRR: Add gnome_rr_config_apply_from_filename() (Federico Mena
Quintero)
* GnomeRR: Deprecate gnome_rr_config_apply_stored() (Federico Mena
Quintero)
Translators
* Jordi Mallach (ca)
* Ilkka Tuohela (fi)
* Gabor Kelemen (hu)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Raivis Dejus (lv)
* Manoj Kumar Giri (or)
==============
Version 2.25.5
==============
libgnome-desktop
* GnomeBG: use gdk_color_equal() instead of custom function (Vincent)
* GnomeRR: use XRRGetScreenResourcesCurrent instead of
XRRGetScreenResources when available (xrandr 1.3) because it's
cheaper (Alberto Milone)
* GnomeBG: emit "transitioned" signal instead of "changed" signal for
new frames in a slideshow background (Ray Strode)
* GnomeBG: reorganize code a bit (Ray Strode)
* GnomeBG: add fading API to support fading between two backgrounds
(Ray Strode)
Translators
* saudat mohammed (ha)
* Onye, Sylvester (ig)
* Djavan Fagundes (pt_BR)
* Nurali Abdurahmonov (uz@cyrillic)
* Nurali Abdurahmonov (uz)
* Sunday Ayo Fajuyitan (yo)
==============
Version 2.25.4
==============
Translators
* Jorge González (es)
* Claude Paroz (fr)
* Gil Osher (he)
* 甘露(Gan Lu) (zh_CN)
==============
Version 2.25.3
==============
Note to distributors: the API break is in GnomeRR.
libgnome-desktop
* GnomeRR: plug leaks (Matthias Clasen)
* GnomeRR: add API-breaking error reporting API (Federico Mena
Quintero)
* GnomeBG: fix potential crash with some empty slideshow (Vincent)
* Build fixes (Vincent)
Translators
* Gil Osher (he)
* Luca Ferretti (it)
* Kjartan Maraas (nb)
==============
Version 2.25.2
==============
libgnome-desktop
* GnomeDesktopThumbnail: reenable check for preview::icon (Vincent)
* GnomeRR: add Lenovo display name (Søren Sandmann)
* GnomeBG: plug a leak (Cosimo Cecchi)
* GnomeDesktopThumbnail: fix potential crash when a temporary file
cannot be created (Vincent)
Misc
* Require glib 2.19.1 (Vincent)
* Update a bit API documentation (Vincent)
* Require GTK+ 2.14.0 (Vincent)
Translators
* Jorge González (es)
* Daniel Nylander (sv)
================
Version 2.25.1.1
================
Quick release to not depend on an unreleased glib.
libgnome-desktop
* GnomeDesktopThumbnail: disable check for preview::icon, since it's
not available in glib 2.18 (Vincent)
Misc
* Require glib 2.18 instead of 2.19 (Vincent)
==============
Version 2.25.1
==============
Note: this release breaks API and ABI, so we can stop depending on libgnome.
We also lose backwards compatibility for GNOME 1 and KDE 2 icons in desktop
files in GnomeDesktopItem (GKeyFile doesn't support this anyway).
libgnome-desktop
* Remove all libgnome usage (Alex Larsson)
* GnomeDesktopThumbnail: new, copied from libgnome* (Alex Larsson)
* Add gnome_desktop_prepend_terminal_to_vector(), copied from libgnome
(Alex Larsson)
* Remove GnomeDItemEdit and GnomeHint objects (Alex Larsson)
* GnomeRR: new API to support fn-F7 (Søren Sandmann)
* GnomeBG: use foreign_new_for_screen() instead of _foreign_new()
(Roland Dreier)
* GnomeDesktopThumbnail: Check for preview::icon for fast backend-side
thumbnails (David Zeuthen)
Misc
* Remove dependencies on libxml and libgnome*
* Require glib 2.19
Doc Translations
* Gabor Kelemen (hu)
Translators
* Astur (ast)
* Margulan Moldabekov (kk)
==============
Version 2.24.0
==============
libgnome-desktop
* GnomeRR: don't try and set the screen size if turning off any of the
CRTC's failed (Søren Sandmann)
* GnomeDesktopItem: compute the length of the string passed to
gnome_desktop_item_new_from_string if the len is not specified
(Federico Mena Quintero)
Translators
* F Wolff (af)
* Djihed Afifi (ar)
* Kenneth Nielsen (da)
* Dawa pemo (dz)
* Rajesh Ranjan (hi)
* Gabor Kelemen (hu)
* Gintautas Miliauskas (lt)
* Sandeep Shedmake (mr)
* Dan Damian (ro)
* Zhovner Pavel (ru)
* Laurent Dhima (sq)
* Горан Ракић (sr)
* I. Felix (ta)
* Baris Cicek (tr)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 2.23.92
===============
libgnome-desktop
* GnomeRR: fix compilation on Solaris (Vincent)
Misc
* Fix compilation with old Xorg with no pkg-config files (Vincent)
Translators
* Alexander Shopov (bg)
* Jordi Mallach (ca)
* David Lodge (en_GB)
* Robert Sedak (hr)
* Changwoo Ryu (ko)
* Clytie Siddall (vi)
* Funda Wang (zh_CN)
===============
Version 2.23.91
===============
libgnome-desktop
* Fix leak (Matthias Clasen)
* GnomeRR: allow E-EDID blocks (Adam Jackson)
Misc
* Fix compilation with old Xorg with no pkg-config files (Vincent)
Translators
* Andre Klapper (de)
* Iñaki Larrañaga Murgoitio (eu)
* Robert-André Mauchin (fr)
* Sangeeta Kumari (mai)
* Thierry Randrianiriana (mg)
* Praveen Arimbrathodiyil (ml)
* Manoj Kumar Giri (or)
* Tomasz Dominikowski (pl)
===============
Version 2.23.90
===============
libgnome-desktop
* Implement support for randr monitor labeling (Federico Mena Quintero)
* Ensure it build with GTK_DISABLE_SINGLE_INCLUDES (Felix Riemann)
Translators
* Khaled Hosny (ar)
* Runa Bhattacharjee (bn_IN)
* Petr Kovar (cs)
* Ivar Smolin (et)
* Ilkka Tuohela (fi)
* Gil Osher (he)
* Jovan Naumovski (mk)
* Djavan Fagundes (pt_BR)
* Duarte Loreto (pt)
* Theppitak Karoonboonyanan (th)
==============
Version 2.23.6
==============
libgnome-desktop
* Fix build with gcc 2.x (Jens Granseuer)
* GnomeBG: fix handling of empty filenames (Søren Sandmann)
* GnomeBG: word around non-atomic gconf for emitting changed signals
only once (Søren Sandmann)
Translators
* Khaled Hosny (ar)
* Sweta Kothari (gu)
* Luca Ferretti (it)
* Takeshi AIHANA (ja)
* Wouter Bolsterlee (nl)
* Fabrício Godoy (pt_BR)
==============
Version 2.23.5
==============
New API to handle randr configuration has been added.
libgnome-desktop
* New GnomeRR* API (Søren Sandmann & others)
* Stop using deprecated GTK+ macros (Christian Persch)
* GnomeBG: fix compilation with gcc 2.x (Jens Granseuer)
* GnomeBG: only emit the "changed" signal if the settings have actually
changed (Jens Granseuer)
* GnomeBG: code cleanups (Jens Granseuer)
Misc
* Require intltool 0.40.0 (Vincent)
Doc Translations
* Philipp Kerling (de)
* Timo Jyrinki (fi)
Translators
* Jorge González (es)
* Ignacio Casal Quinteiro (gl)
* Gil Osher (he)
* Kjartan Maraas (nb)
* Yannig Marchegay (Kokoyaya) (oc)
* Zabeeh Khan (ps)
* Daniel Nylander (sv)
==============
Version 2.23.4
==============
Misc
* Require intltool 0.40.0 (Vincent)
Translators
* Khaled Hosny (ar)
==============
Version 2.23.3
==============
libgnome-desktop
* GnomeBG: Fix some logic errors wrt to caching of slideshows that may
cause nautilus crashes (Matthias Clasen)
* GnomeBG: Support multi-resolution backgrounds (Matthias Clasen)
* GnomeBG: Falls back to the default image if the user's background
doesn't exist (Ray Strode)
* GnomeBG: Prevent loops caused by setting URI (Søren Sandmann)
* GnomeBG: Fix leak (Kjartan Maraas)
* GnomeBG: Get rid of URIs and only use paths (Søren Sandmann)
* GnomeBG: Make sure tiles are at least 24 pixels wide (Søren Sandmann)
* GnomeBG: Some tweaks to the tile scaling heuristic (Søren Sandmann)
* GnomeBG: Small fixes (Søren Sandmann)
* GnomeBG: Add getters for the various properties (Søren Sandmann)
* GnomeBG: Monitor the image file (Søren Sandmann)
Translators
* Khaled Hosny (ar)
* Sweta Kothari (gu)
==============
Version 2.23.2
==============
libgnome-desktop
* Do not force the top-left corner of the image to fit in
the screen, so that zoomed image appears to be zoomed from the center
of the screen (Jens Granseuer)
* Add gnome_bg_load_from_preferences(), so applications don't have to
rely on libbackground (William Jon McCann)
gnome-about
* Don't skip the last description from gnome-version.xml (Matt Keenan)
* Convert the strftime() output to UTF-8 (Takao Fujiwara)
Misc
* Fix build from svn when gvfs-copy fails (Vincent)
==============
Version 2.23.1
==============
Translators
* Yavor Doganov (bg)
==============
Version 2.22.1
==============
libgnome-desktop
* Fix compiler warnings (Kjartan Maraas)
* Handle start time in the future correctly in GnomeBG
(Matthias Clasen)
Translators
* Alexander Nyakhaychyk (be)
* Simos Xenitellis (el)
* Massimo Furlani (fur)
* Vladimer Sichinava ვლადიმერ სიჭინავა (ka)
* Gintautas Miliauskas (lt)
* Åsmund Skjæveland (nn)
* Marcel Telka (sk)
==============
Version 2.22.0
==============
Translators
* Khaled Hosny (ar)
* Runa Bhattacharjee (bn_IN)
* Kenneth Nielsen (da)
* Simos Xenitellis (el)
* David Lodge (en_GB)
* Jorge González (es)
* Gabor Kelemen (hu)
* Sandeep Shedmake (mr)
* Marcel Telka (sk)
* Laurent Dhima (sq)
* Maxim Dziumanenko (uk)
===============
Version 2.21.92
===============
libgnome-desktop
* Fix crash in GnomeBG (Joe Marcus Clarke)
* Fix GnomeBG gio port (Sebastien Bacher)
gnome-about
* Fix translator comment not available in po files (Vincent)
* Fix TypeError crasher in a print statement (Vincent)
Misc
* Use gvfs-copy instead of gnomevfs-copy in autogen.sh (Vincent)
Doc Translations
* Changwoo Ryu (ko)
Translators
* Sílvia Miranda (ca)
* Pauli Virtanen (fi)
* Robert-André-Mauchin (fr)
* Ignacio Casal Quinteiro (gl)
* Gil Osher (he)
* Luca Ferretti (it)
* Changwoo Ryu (ko)
* Nabin Gautam (ne)
* Tino Meinen (nl)
* Jonh Wendell (pt_BR)
* Woodman Tuen (zh_HK)
* Woodman Tuen (zh_TW)
===============
Version 2.21.91
===============
libgnome-desktop
* Fix invalid read (Vincent)
* Fix compilation issue caused by some headers (Vincent)
* Port to gio (Vincent)
* Fix crash in GnomeBG when file is empty (Vincent)
gnome-about
* Add back a --version option (Vincent)
Misc
* Require gio, and get rid of gnome-vfs (Vincent)
Translators
* Khaled Hosny (ar)
* Andre Klapper (de)
* Massimo Furlani (fur)
* Takeshi AIHANA (ja)
* Shankar Prasad (kn)
* Wouter Bolsterlee (nl)
* Tomasz Dominikowski (pl)
* Duarte Loreto (pt)
* Theppitak Karoonboonyanan (th)
* Woodman Tuen (zh_HK)
* Woodman Tuen (zh_TW)
===============
Version 2.21.90
===============
libgnome-desktop
* Add GNOME_DESKTOP_USE_UNSTABLE_API API guard for GnomeBg
(Søren Sandmann)
Misc
* Fix test for gnomevfs-copy in autogen.sh (Jonathon Jongsma)
Translators
* Khaled Hosny (ar)
* Petr Kovar (cs)
* Hendrik Richter (de)
* Luca Ferretti (it)
* Gintautas Miliauskas (lt)
* Arangel Angov (mk)
==============
Version 2.21.5
==============
gnome-about
* Don't keep the window centered (Guillaume Seguin)
* Fix problem when the color of the logo is wrong when changing theme
(Guillaume Seguin)
* Cleanups (Guillaume Seguin)
* Slow down a bit the animation for the description so people can
actually read it (Guillaume Seguin)
Misc
* Add check for X11 libraries (Vincent)
Translators
* Iñaki Larrañaga Murgoitio (eu)
* Seán de Búrca (ga)
* Thierry Randrianiriana (mg)
* Ani Peter (ml)
* Yannig Marchegay (Kokoyaya) (oc)
* Hugo Doria (pt_BR)
* Clytie Siddall (vi)
==============
Version 2.21.4
==============
libgnome-desktop
* New GnomeBG API (Søren Sandmann)
Doc Translations
* Kalman Kemenczy (hu)
Translators
* Ihar Hrachyshka (be@latin)
* Jorge González (es)
* Ivar Smolin (et)
* Ignacio Casal Quinteiro (gl)
* Ani Peter (ml)
* Kjartan Maraas (nb)
* Zhovner Pavel (ru)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
==============
Version 2.21.2
==============
gnome-about
* Rewritten in python. It is at last accessible. And it looks a bit
better now. (Guillaume Seguin and Vincent for some small bits)
Misc
* The libgnomecanvas dependency has been removed.
Translators
* Anas Husseini (ar)
* Ihar Hrachyshka (be@latin)
==============
Version 2.20.1
==============
libgnome-desktop
* Fix leak (Glynn Foster, Dan Mick)
gnome-about
* Fix timestamp of the file containing the list of the Foundation
members (Vincent)
* Make sure this file is never empty (Vincent)
Translators
* Alexander Shopov (bg)
* Jorge Gonzalez (es)
* Ignacio Casal Quinteiro (gl)
* Artur Flinta (pl)
==============
Version 2.20.0
==============
gnome-about
* Display the list of Foundation members too (Vincent)
Misc
* Remove gnome-vfs dependency for gnome-about (Vincent)
* Remove spec file (Vincent)
Translators
* Anas Husseini (ar)
* Khandakar Mujahidul Islam (bn)
* Jordi Mallach (ca)
* Peter Bach (da)
* Gabor Kelemen (hu)
* Shankar Prasad (kn)
* Gintautas Miliauskas (lt)
* Arangel Angov (mk)
* Горан Ракић (sr)
* Maxim Dziumanenko (uk)
===============
Version 2.19.92
===============
Translators
* Adam Weinberger (en_CA)
* Stéphane Raimbault (fr)
* Takeshi AIHANA (ja)
* Arangel Angov (mk)
* Og Maciel (pt_BR)
* Duarte Loreto (pt)
===============
Version 2.19.90
===============
Translators
* Ani Peter (ml)
* Inaki Larranaga Murgoitio (eu)
* Yair Hershkovitz (he)
==============
Version 2.19.6
==============
Doc Translations
* Claude Paroz (fr)
* Daniel Nylander (sv)
Translators
* Runa Bhattacharjee (bn_IN)
* Hendrik Richter (de)
* Ilkka Tuohela (fi)
* Ankit Patel (gu)
* Luca Ferretti (it)
* Eunju Kim (ko)
* Ani Peter (ml)
* Wouter Bolsterlee (nl)
* Dr.T.Vasudevan (ta)
* Nurali Abdurahmonov (uz@cyrillic)
==============
Version 2.19.5
==============
gnome-about
* Move the contributors list to a data file (Vincent)
* Implement downloading list of foundation members from api.gnome.org
(but does nothing for now since the api.gnome.org page is not up)
(Vincent)
libgnome-desktop
* Use gtk_widget_set_tooltip_text() (Vincent)
Misc
* Improve docbook version of LGPL (Vincent)
* Build fix (Kjartan Maraas)
* Add gnome-vfs dependency for gnome-about (Vincent)
Doc Translations
* Jorge Gonzalez (es)
* Clytie Siddall (vi)
Translators
* Takeshi AIHANA (ja)
* Danishka Navin (si)
* Y.Kiran Chandra (te)
* Nurali Abdurahmonov (uz)
* Clytie Siddall (vi)
==============
Version 2.19.4
==============
gnome-about
* Use g_timeout_add_seconds() when possible (Vincent)
libgnome-desktop
* Use g_timeout_add_seconds() when possible (Vincent)
* Migrate to new tooltip API
Misc
* Require glib 2.13.0 (Vincent)
* Require gtk+ 2.11.3 (Vincent)
Translators
* Pema Geyleg (dz)
================
Version 2.19.3.1
================
Misc
* Forgot to bump GNOME version number in 2.19.3.
==============
Version 2.19.3
==============
Misc
* Tango-ify some icons (Frédéric Bellaiche)
Doc
* Update FSF address (Priit Laes)
Doc Translations
* Claude Paroz (fr)
* Daniel Nylander (sv)
* Jorge Gonzalez (es)
Translators
* David Lodge (en_GB)
* Jorge González (es)
* Ivar Smolin (et)
* Kjartan Maraas (nb)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
==============
Version 2.19.2
==============
gnome-about
* Add names of new contributors! (Vincent)
Doc Translations
* Changwoo Ryu (ko)
Translators
* Ihar Hrachyshka (be@latin)
* Jorge González (es)
* Yannig MARCHEGAY (Kokoyaya) (oc)
==============
Version 2.18.1
==============
gnome-about
* Add names of 14 contributors! (Vincent)
libgnome-desktop
* Fix undefined reference in deprecated code (Kjartan Maraas)
Doc Translations
* Djihed Afifi (ar)
* Silvia Miranda (ca)
Translators
* norbu (dz)
* Jorge González (es)
* Iñaki Larrañaga Murgoitio (eu)
* Ignacio Casal Quinteiro (gl)
* Erdal Ronahi (ku)
* Raivis Dejus (lv)
==============
Version 2.18.0
==============
gnome-about
* Add names of 180 contributors! (Vincent)
* Remove invalid category in .desktop file (Christian Kirbach)
libgnome-desktop
* Add missing license headers in some files (Vincent)
Doc Translations
* Maxim Dziumanenko (uk)
Translators
* Ihar Hrachyshka (be@latin)
* Vladimir Petkov (bg)
* Gareth Bowker (cy)
* Simos Xenitellis (el)
* Ilkka Tuohela (fi)
* Stéphane Raimbault (fr)
* Ankit Patel (gu)
* Gil Osher (he)
* Samuel Jon Gunnarsson (is)
* Luca Ferretti (it)
* Gintautas Miliauskas (lt)
* Thierry Randrianiriana (mg)
* Jovan Naumovski (mk)
* Duarte Loreto (pt)
* Leonid Kanter (ru)
* Marcel Telka (sk)
* Elian Myftiu (sq)
* Горан Ракић (sr)
* Felix (ta)
* Baris Cicek (tr)
* Pham Thanh Long (vi)
===============
Version 2.17.92
===============
libgnome-desktop
* Fix crash when launching a .desktop file (Padraig O'Briain)
Misc
* Fix build (Vincent)
* Distribute MAINTAINERS (Kjartan Maraas)
Translators
* Vladimir Petkov (bg)
* Peter Bach (da)
* Gabor Kelemen (hu)
* Takeshi AIHANA (ja)
* Artur Flinta (pl)
* Og Maciel (pt_BR)
* Duarte Loreto (pt)
* Maxim Dziumanenko (uk)
* Clytie Siddall (vi)
* Funda Wang (zh_CN)
* Woodman Tuen (zh_HK)
* Woodman Tuen (zh_TW)
===============
Version 2.17.91
===============
Doc Translations
* David Lodge (en_GB)
Translators
* Friedel Wolff (af)
* Ihar Hrachyshka (be)
* Jordi Mallach (ca)
* Hendrik Richter (de)
* Ilkka Tuohela (fi)
* Stéphane Raimbault (fr)
* Young-Ho Cha (ko)
* Wouter Bolsterlee (nl)
===============
Version 2.17.90
===============
Translators
* Khaled Hosny (ar)
* Kjartan Maraas (nb)
* Andre Noel (pt_BR)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
==============
Version 2.17.5
==============
gnome-about
* Add a --gnome-version to ouput version information on the terminal
(Vincent)
* Fix compiler warnings (Christian Persch)
* Do not call deprecated functions (Christian Persch)
libgnome-desktop
* Make it possible to let caller handle reaping child process when
launching a desktop file (Tom Tromey)
* Remove old useless test (Vincent)
* Deprecate GnomeDItemEdit and GnomeHint (Vincent)
* Fix compiler warnings (Christian Persch)
* Do not call deprecated functions (Christian Persch)
Misc
* Fix gtk-doc build (Vincent)
* Remove useless icons from repository (Vincent)
* Build fix (Paolo Borelli)
* Build improvements (Christian Persch)
Doc
* Remove gnome-feedback (moved to gnome-user-docs) (Shaun McCance)
* Build fixes (Shaun McCance)
Doc Translations
* Christophe Bliard (fr)
* Daniel Nylander (sv)
* Francisco Javier F. Serrador (es)
Translators
* Mohamed Magdy (ar)
* Jakub Friedl (cs)
* David Lodge (en_GB)
* Francisco Javier F. Serrador (es)
* Ivar Smolin (et)
* Gil Osher (he)
* Raivis Dejus (lv)
* Arangel Angov (mk)
* Kjartan Maraas (nb)
* Matic Žgur (sl)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Clytie Siddall (vi)
==============
Version 2.17.2
==============
Misc
* Use GNOME logo for GNOME about .desktop file (Sébastien Bacher)
Translators
* Khaled Hosny (ar)
* Guillaume SAVATON (eo)
==============
Version 2.16.1
==============
Translators
* Djihed Afifi (ar)
* David Lodge (en_GB)
* Rajesh Ranjan (hi)
* Luca Ferretti (it)
* Åsmund Skjæveland (nn)
==============
Version 2.16.0
==============
Doc Translations
* Christophe Bliard (fr)
* Daniel Nylander (sv)
Translators
* Runa Bhattacharjee (bn_IN)
* Hendrik Richter (de)
* Ivar Smolin (et)
* Rajesh Ranjan (hi)
* Gabor Kelemen (hu)
* Gintautas Miliauskas (lt)
* Raivis Dejus (lv)
* Rahul Bhalerao (mr)
* Leonardo Ferreira Fontenelle (pt_BR)
* Duarte Loreto (pt)
* Leonid Kanter (ru)
* Matic Žgur (sl)
* Felix (ta)
===============
Version 2.15.92
===============
Misc
* Remove gnome-workspace icon (now included in gnome-panel) (Vincent)
Doc Translations
* Jonathan Ernst, Emmanuel Andry, Christophe Bliard (fr)
* Daniel Nylander (sv)
Translators
* Ivar Smolin (et)
* Gabor Kelemen (hu)
* Artur Flinta (pl)
* Maxim Dziumanenko (uk)
* Funda Wang (zh_CN)
===============
Version 2.15.91
===============
Fixes
* Use a useful icon theme in gnome_desktop_item_find_icon() when no
icon theme is passed as argument so we get results (Vincent)
Doc
* Start migrating documentation to gnome-user-docs (Joachim Noreiko)
Doc Translations
* Francisco Javier F. Serrador (es)
Translators
* Runa Bhattacharjee (bn_IN)
* Iñaki Larrañaga Murgoitio (eu)
* Christophe Merlet (RedFox) (fr)
* Arangel Angov (mk)
* Ani Peter (ml)
* Marcel Telka (sk)
===============
Version 2.15.90
===============
Translators
* Vladimir "Kaladan" Petkov (bg)
* Francisco Javier F. Serrador (es)
* Christophe Merlet (RedFox) (fr)
* Daniel Nylander (sv)
==============
Version 2.15.4
==============
Fixes
* Set GNOME_PARAM_APP_DATADIR in test application (Christian Persch)
* Save some memory in gnome-about (Priit Laes)
Doc
* Update example of application not hosted in GNOME Bugzilla
(Joachim Noreiko)
Doc Translations
* Daniel Nylander (sv)
* Salihov Timur (ru)
Translators
* Taneem Ahmed (bn_IN)
* Jakub Friedl (cs)
* Mindu Dorji (dz)
* Priit Laes (et)
* Iñaki Larrañaga Murgoitio (eu)
* Ilkka Tuohela (fi)
* Christophe Merlet (RedFox) (fr)
* Takeshi AIHANA (ja)
* Young-Ho Cha (ko)
* Rahul Bhalerao (mr)
* Kjartan Maraas (nb)
* Simos Xenitellis (ne)
* Hariram Pansari (or)
* Theppitak Karoonboonyanan (th)
* Zack Ajmal (ur)
* Pablo Saratxaga (wa)
* Abel Cheung (zh_HK)
==============
Version 2.15.2
==============
Misc
* Require intltool 0.35.0
Doc Translations
* Francisco Javier F. Serrador (es)
Translators
* Francisco Javier F. Serrador (es)
* Hariram Pansari (or)
==============
Version 2.15.1
==============
Fixes
* Make URI canonical before using them (Vincent)
* Remember the added locales in GnomeDitemEdit (Vincent)
* Sort locales list in GnomeDitemEdit (Vincent)
* Make sure that there is a Name/Comment/etc. for C locale when
generating a .desktop file (Vincent)
* Use gdk_x11_display_get_user_time() to get the launch time (Vincent)
* Don't crash when launching a desktop file without specifying a screen
(Vincent)
* Try to locate files in the app prefix and not in the system prefix
for gnome-about (Christian Persch)
* Put back workaround that fixes uglyness in gnome-about (Vincent)
Misc
* Generate API documentation (Vincent)
* Add GTK to the categories of gnome-about.desktop (Vincent)
* Require GTK+ >= 2.8.0 (Vincent)
* Use po/LINGUAS and require newer intltool (Brian Pepple)
Documentation
* Replace entities with UTF-8 (Shaun McCance)
* Updated URLs and emails in the gnome-feedback document
(Joachim Noreiko)
Doc Translations
* Francisco Javier F. Serrador (es)
* Maxim Dziumanenko (uk)
Translators
* Oublieuse (br)
* Jordi Mallach (ca)
* Gareth Bowker (cy)
* Pema Geyleg (dz)
* Kostas Papadimas (el)
* Francisco Javier F. Serrador (es)
* Ivar Smolin (et)
* Ilkka Tuohela (fi)
* Ignacio Casal Quinteiro (gl)
* Ankit Patel (gu)
* Thierry Randrianiriana (mg)
* Tino Meinen (nl)
* Kjartan Maraas (no)
* Clytie Siddall (vi)
==============
Version 2.14.0
==============
Fixes
* Don't use a GtkEntry function on a GnomeFileEntry (Vincent)
Translators
* Ales Nyakhaychyk (be)
* Jérémy Le Floc'h (br)
* Petr Tomeš (cs)
* Martin Willemoes Hansen (da)
* Raivis Dejus (lv)
* Åsmund Skjæveland (nn)
===============
Version 2.13.92
===============
Misc
* Report the correct version number in gnome-about --version
(Glynn Foster)
Documentation
* Added a description for gnome-feedback (Brent Smith)
Doc Translations
* Luca Ferretti (it)
Translators
* Jakub Friedl (cs)
* Farzaneh Sarafraz (fa)
* Vladimer SIchinava (ka)
* Raivis Dejus (lv)
* Licio Fernando Nascimento da Fonseca (pt_BR)
===============
Version 2.13.91
===============
Doc Translations
* Francisco Javier F. Serrador (es)
===============
Version 2.13.90
===============
Fixes
* Fix crash when no icon file can be found for the .desktop file
(Vincent)
Doc Translations
* Christophe Bliard (fr)
Translators
* Luca Ferretti (it)
===============
Version 2.13.4
===============
Misc
* Fix .desktop file (Vincent Untz)
===============
Version 2.13.3
===============
Misc
* Fix warnings (Kjartan Maraas)
===============
Version 2.13.2
===============
Misc
* Fix build on Darwin (Mark)
Translators
* Erdal Ronahi (ku)
* Timur Jamakeev (ky)
===============
Version 2.13.1
===============
Misc
* Remove scrollkeeper hack (Vincent)
Translators
* Tino Meinen (nl)
* Christian Rose (sv)
* Clytie Siddall (vi)
===============
Version 2.12.0
===============
Translators
* Vladimir "Kaladan" Petkov (bg)
* Jordi Mallach (ca)
* Gareth Bowker (cy)
* Hendrik Richter (de)
* Francisco Javier F. Serrador (es)
* Christophe Merlet (RedFox) (fr)
* Gabor Kelemen (hu)
* Norayr Chilingaryan (hy)
* Takeshi AIHANA (ja)
* Young-Ho Cha (ko)
* Erdal Ronahi (ku)
* Žygimantas Beručka (lt)
* Leonid Kanter (ru)
* Elian Myftiu (sq)
* Данило Шеган (sr)
===============
Version 2.11.92
===============
Docs Translations
* Tommi Vainikainen (fi)
Translators
* Ankit Patel (gu)
* Gabor Kelemen (hu)
* Mohammad DAMT (id)
* Kjartan Maraas (nb, no)
* Gnome PL Team (pl)
* Evandro Fernandes Giovanini (pt_BR)
* Duarte Loreto (pt)
* Dan Damian (ro)
* Marcel Telka (sk)
* Prajasakti Localisation Team (te)
* Gheyret T.Kenji (ug)
* Maxim Dziumanenko (uk)
* Wang Jian (zh_CN)
* Abel Cheung (zh_TW)
===============
Version 2.11.90
===============
Misc
* Use gnome-doc-utils for building the help docs (Vincent Untz)
* Use GtkIconTheme for gnome_icon_theme_(find|get)_icon (Christian Persch, Mark)
* Use trademarked GNOME logo in gnome-about (Luca Cavalli)
Translators
* Miloslav Trmac (cs)
* Adam Weinberger (en_CA)
* Francisco Javier F. Serrador (es)
* Ivar Smolin (et)
* Ilkka Tuohela (fi)
* Kjartan Maraas (nb, no)
* Tino Meinen (nl)
* Paisa Seeluangsawat (th)
* Clytie Siddall (vi)
==============
Version 2.11.5
==============
Misc
* Fix leak (Kjartan Maraas)
Translators
* Данило Шеган (sr)
==============
Version 2.11.4
==============
Misc
* Fix leak (Kjartan Maraas)
Translators
* Martin Willemoes Hansen (da)
* "Francisco Javier F. Serrador" (es)
* Marcel Telka (sk)
* Abel Cheung (zh_TW)
==============
Version 2.11.3
==============
Translators
* Ales Nyakhaychyk (be)
* Adam Weinberger (en_CA)
* Francisco Javier F. Serrador (es)
* Ivar Smolin (et)
* Iñaki Larrañaga (eu)
* Lilit Azizbekyan (hy)
* Takeshi AIHANA (ja)
* Kjartan Maraas (nb)
* Kjartan Maraas (no)
* Elian Myftiu (sq)
* Paisa Seeluangsawat (th)
==============
Version 2.11.1
==============
Misc
* Add gnome_desktop_item_new_from_basename() API (Dennis Cranston)
* Fix i18n inialization in GnomeDesktopItem (Frederic Crozat)
Translators
* Vladimir \"Kaladan\" Petkov (bg)
* Miloslav Trmac (cs)
* Iñaki Larrañaga (eu)
* Ankit Patel (gu)
* Tino Meinen (nl)
==============
Version 2.10.1
==============
Misc
* Re-start credits in gnome-about when finished (praveen, Mark)
* Initialize i18n in gnome-ditem-edit (Young-Ho Cha)
* Use g_get_language_names() instead of gnome_i18n_get_language_list (Ryan Lortie)
Translators
* Adam Weinberger (en_CA)
* Steve Murphy (rw)
==============
Version 2.10.0
==============
Translators
* Gabor Kelemen (hu)
* Luca Ferretti (it)
* Žygimantas Beručka (lt)
* Dan Damian (ro)
* Leonid Kanter (ru)
* Данило Шеган (sr)
* Canonical Ltd (xh)
* Abel Cheung (zh_TW)
==============
Version 2.9.92
==============
Misc
* Remove icons that are in gnome-icon-theme
Translators
* Vladimir "Kaladan" Petkov (bg)
* Martin Willemoes Hansen (da)
* Christophe Merlet (RedFox) (fr)
* Ankit Patel (gu)
* Changwoo Ryu (ko)
* Kjartan Maraas (nb)
* Kjartan Maraas (no)
* Gnome PL Team (pl)
* Evandro Fernandes Giovanini (pt_BR)
* Paisa Seeluangsawat (th)
* Baris Cicek (tr)
* Maxim Dziumanenko (uk)
* Canonical Ltd (xh)
==============
Version 2.9.91
==============
libgnome-desktop
* New gnome_desktop_item_set_launch_time() API (Elijah Newren, Mark)
Translators
* Jordi Mallach (ca)
* Nikos Charonitakis (el)
* David Lodge (en_GB)
* Ivar Smolin (et)
* Pauli Virtanen (fi)
* Gil Osher (he)
* Žygimantas Beručka (lt)
* Duarte Loreto (pt)
* Elian Myftiu (sq)
================
Version 2.9.90.1
================
Misc
* update LT_VERSION
* update GNOME version
==============
Version 2.9.90
==============
Translators
* Vladimir "Kaladan" Petkov (bg)
* Telsa Gwynne (cy)
* Frank Arnold (de)
* Francisco Javier F. Serrador (es)
* Priit Laes (et)
* Takeshi AIHANA (ja)
* Tino Meinen (nl)
* Åsmund Skjæveland (nn)
* Marcel Telka (sk)
* Elian Myftiu (sq)
* Christian Rose (sv)
=============
Version 2.9.4
=============
Misc
* Add .desktop file for gnome-about (Vincent Untz)
* Fix compiler warning (Kjartan)
* distcheck fixing (Mark)
libgnome-desktop
* Don't append invalid URIs to command line when launching (Vijaykumar Patwari)
Translators
* Miloslav Trmac (cs)
* Adam Weinberger (en_CA)
* Žygimantas Beručka (lt)
* Kjartan Maraas (nb)
* Kjartan Maraas (no)
* Christian Rose (sv)
=============
Version 2.9.3
=============
Translators
* Zuza Software Foundation (nso)
* Zuza Software Foundation (zu)
=============
Version 2.9.2
=============
Misc
* move some icons in gnome-applets & gnome-icon-theme (David Madeley, Mark)
* move data files for the menus to gnome-menus (Mark)
* don't use some deprecated functions (Vincent)
Translators
* Meelad Zakaria (fa)
* Zuza Software Foundation (nso)
=============
Version 2.8.1
=============
Fixes
* Make %k in .desktop files work again (Brian Ryner)
* Use automake 1.7 (James Henstridge)
* New icons (Jakub Steiner, James Ogley)
Translators
* Wang Jian (zh_CN)
=============
Version 2.8.0
=============
Translators
* Mətin Əmirov (az)
* Amila Akagić (bs)
* Adam Weinberger (en_CA)
* Jesús Bravo Álvarez (gl)
* Gabor Kelemen (hu)
* Takeshi AIHANA (ja)
* Mişu Moldovan (ro)
==============
Version 2.7.92
==============
Fixes
* Change link in gnome-about from gnomedesktop.org to news.gnome.org (Alan Horkan)
Translators
* Kemal Sanjta (bs)
* Jordi Mallach (ca)
* Pauli Virtanen (fi)
* Kjartan Maraas (nb)
* Elian Myftiu (sq)
* Maxim Dziumanenko (uk)
==============
Version 2.7.91
==============
Fixes
* Fix memory leak (Mark)
* Fix crash with some .desktop files (Vincent Untz)
* Fix compilation without startup-notification (Mariano Suárez-Alvarez)
==============
Version 2.7.90
==============
Fixes
* Randomize the order of the credits in gnome-about (Matthew Garrett)
* Fix end of list corruption in gnome-about (Matthew Garrett)
Translators
* Elian Myftiu (sq)
* Abayomi Mobolaji Onibudo (yo)
=============
Version 2.7.4
=============
Fixes
* Use the correct X timestamp with startup-notification (Elijah Newren, Mark)
* Remove egg_spawn usage from libgnome-desktop (Mark)
* Fix DTD validation errors in omf files (Frederic Crozat, Mariano Suárez-Alvarez)
Translators
* Peter "Peshka" Slavov (bg)
* Pawan Chitrakar (ne)
* Laurent Dhima (sq)
=============
Version 2.7.3
=============
Translators
* Suman Raj Tiwari (ne)
* Elian Myftiu (sq)
=============
Version 2.7.1
=============
Fixes
* Make the languages list in .desktop editor use GTK_SHADOW_IN (Jorn Baayen)
Help Docs
* Basque documentation translations (Pablo Saratxaga)
Translators
* Žygimantas Beručka (lt)
* Gurban Mühemmet Tewekgeli (tk)
=============
Version 2.6.1
=============
Translators
* Hizkuntza Politikarako Sailburuordetza (eu)
* Guntupalli Karunaka (gu)
* Laszlo Dvornik (hu)
* Mohammad DAMT (id)
* John C Barstow (mi)
* Tino Meinen (nl)
* Kjartan Maraas (no)
* Baris Cicek (tr)
===============
Version 2.6.0.1
===============
Fixes
* Fix some memory corruption in gnome-about (Kjartan)
* Dist the .directory.in files instead of the .directory files (Glynn)
Translators
* Zuza Software Foundation (af)
=============
Version 2.6.0
=============
Translators
* Gareth Owen (en_GB)
==============
Version 2.5.92
==============
Translations
* Sayed Jaffer Al-Mosawi (ar)
* Peter \"Peshka\" Slavov (bg)
* Alexander Winston (en_CA)
* Elian Myftiu (sq)
* Danilo Segan (sr)
* Gurban Mohemmet Tewekgeli (tk)
* Maxim Dziumanenko (uk)
==============
Version 2.5.91
==============
libgnome-desktop
* Fix issue where dragging a file from an nfs mounted dir onto
a launcher wouldn't work (Mark)
* Make the launcher editor use GtkFileChooser (Brian Skahan)
Misc
* Don't depend on strptime (Mark)
* Check for scrollkeeper in configure (Mark)
* Fixup OMF files to validate with latest scrollkeeper (Mark)
Translations
* Laszlo Dvornik (hu)
* Luca Ferretti (it)
* Amanpreet Singh Alam (pa)
* Duarte Loreto (pt)
* Elian Myftiu (sq)
* Dinesh Nadarajah (ta)
* Paisa Seeluangsawat (th)
==============
Version 2.5.90
==============
Misc
* Allow build against an uninstalled build (Laszlo Peter)
=============
Version 2.5.5
=============
Misc
* Use the new applications icon for the Applications menu (Mark)
=============
Version 2.5.4
=============
About Dialog
* Set intro text as non-editable (Fernando Herrera)
* Plug some leaks (Kjartan Maraas)
libgnome-desktop
* Include correct i18n header to fix warnings (The Written Word)
Misc
* Use the common docs build system (Malcolm Tredinnick)
* Small configure.in cleanup (Tomasz Kłoczko)
* Fix underquoted AM_PATH_ESD issue (Alexander Winston)
* Don't included generated .desktop files in tarball (Mark)
* Distcheck fix (Mark)
Translators
* Christophe Merlet (RedFox) (fr)
* Kjartan Maraas (no)
* Miloslav Trmac (cs)
=============
Version 2.5.3
=============
About Dialog
* Update the "Contact" link (Alex Duggan)
Misc
* FDL/GPL/LGPL docs updates (Eric Baudais)
Translators
* Dmitry G. Mastrukov (ru)
=============
Version 2.5.2
=============
libgnome-desktop
* Handle g_filename_from_utf8() failure (Dennis Cranston)
Translators
* Danilo Segan (sr)
* Kjartan Maraas (no)
* Kostas Papadimas (el)
=============
Version 2.5.1
=============
libgnome-desktop
* Remove unnecessary accessibility code (Padraig)
* Use the correct mnemonic widget for the command entry (Padraig)
Misc
* Add a --enable-deprecations build flag (Mark)
Translators
Abel Cheung (zh_TW)
G Karunakar (hi)
Jordi Mallach (ca)
Ole Laursen (da)
Sanlig Badral (mn)
===============
Version 2.4.1.1
===============
libgnome-desktop
* Make the localte keystring matching with the desktop entry
specification by not removing the modifier from the
localestring before matching (Danilo Segan)
=============
Version 2.4.1
=============
Misc
* Mark a missing string for translation (Hidetoshi Tajima)
* Fix build issue with install location of icons (George)
* Use GRandom instead of srandom() and random() (George)
Translators
Alessio Frusciante (it)
Andras Timar (hu)
Åsmund Skjæveland (nn, no)
Francisco Javier F. Serrador (es)
Francis Tyers (br)
Gil 'Dolfin' Osher (he)
Görkem Çetin (tr)
Jitendra Shah (mr)
Priit Laes (et)
Yuriy Syrota (uk)
Žygimantas Beručka (lt)
=============
Version 2.4.0
=============
gnome-about
* Fix off by one error with the build date (Young-Ho Cha)
Translators
Arangel Angov (mk)
G Karunakar (hi)
Gnome PL Team (pl)
Joël Brich (eo)
Mugurel Tudor (ro)
Pablo Saratxaga (wa)
Stanislav Visnovsky (sk)
Takeshi AIHANA (ja)
Trinh Minh Thanh (vi)
==============
Version 2.3.90
==============
Translators
Alessio Frusciante (it)
Dafydd Harries (cy)
Francisco Javier F. Serrador (es)
Samuel Jon Gunnarsson (is)
Takeshi AIHANA (ja)
Taneem Ahmed (bn)
Tino Meinen (nl)
=============
Version 2.3.7
=============
Translators
Ales Nyakhaychyk (be)
Changwoo Ryu (ko)
Christophe Merlet (RedFox) (fr)
Dmitry G. Mastrukov (ru)
Duarte Loreto (pt)
Francisco Javier F. Serrador (es)
Gnome PL Team (pl)
Görkem Çetin (tr)
Jordi Mallach (ca)
Kjartan Maraas (no)
Mətin Əmirov (az)
Nikos Charonitakis (el)
Paisa Seeluangsawat (th)
Pauli Virtanen (fi)
Samuel Jon Gunnarsson (is)
Suman Raj Tiwari (ne)
Tino Meinen (nl)
Tõivo Leedjärv (et)
===============
Version 2.3.6.1
===============
gnome-about
+ Clean up introductory text (Luis Villa)
Translators
Ales Nyakhaychyk (be)
Christian Neumair (de)
Christian Rose (sv)
Dafydd Harries (cy)
Danilo Segan (sr)
Duarte Loreto (pt)
Evandro Fernandes Giovanini (pt_BR)
G Karunakar (hi)
Gnome PL Team (pl)
Hasbullah Bin Pit (ms)
Laurent Dhima (sq)
Miloslav Trmac (cs)
Mətin Əmirov (az)
Ole Laursen (da)
Takeshi AIHANA (ja)
Tino Meinen (nl)
Wang Jian (zh_CN)
=============
Version 2.3.6
=============
gnome-about
+ Internalionalize gnome-version.xml so that the descriptive
intro and date can be translated (Malcolm Tredinnick)
+ Handle errors when clicking on links (Olav Vitters)
Misc
+ Follow KDE behaviour when substituting %i, %m, %c and %k
in .desktop files (George)
+ Allow custom icons with the same name as a themed icon to
be selected in GnomeDitemEdit (George)
+ Build fix (Thomas Vander Stichele)
Translators
Ales Nyakhaychyk (be)
Alessio Frusciante (it)
Changwoo Ryu (ko)
Christian Neumair (de)
Christian Rose (sv)
Christophe Fergeau (fr)
Dafydd Harries (cy)
Danilo Segan (sr)
Duarte Loreto (pt)
Evandro Fernandes Giovanini (pt_BR)
Gil 'Dolfin' Osher (he)
Gnome PL Team (pl)
Jordi Mallach (ca)
Kostas Papadimas (el)
Miloslav Trmac (cs)
Pablo G. del Campo (es)
Tino Meinen (nl)
Wang Jian (zh_CN)
=============
Version 2.3.4
=============
Misc
* Allow vendor and date to be configured using configure (Frederic Crozat)
* Ship the .directory.in files in the distributed tarball (Mark)
Translators
Abel Cheung (zh_TW)
Dafydd Harries (cy)
Danilo Segan (sr)
Dmitry G. Mastrukov (ru)
Emese Kovacs (hu)
Evandro Fernandes Giovanini (pt_BR)
Francisco Javier F. Serrador (es)
Marius Andreiana (ro)
Mətin Əmirov (az)
Pablo Saratxaga (wa)
Vincent van Adrighem (nl)
===============
Version 2.3.3.1
===============
Misc
* Added a default desktop background image (Mark Finlay)
* Removed icons which belong to gnome-control-center (Mark Finlay)
* Use macros in gnome-version.xml so we have the correct version
number (Andrew Sebola)
* Renamed "Sound & Video" to "Multimedia (Mark)
* Use different icon for the "Other" menu (Mark)
* Fix issues with backwards compat with old icon names (Mark Finlay)
* Fix gnome-about build with gcc 2.95 (Mark)
* HIG fixes for .desktop file editing dialog (Dennis Cranston)
Translators
* Abel Cheung (zh_TW), Christian Neumair (de), Christian Rose (sv),
Christophe Merlet (RedFox) (fr), Christopher R. Gabriel (it),
Dafydd Harries (cy), Dmitry G. Mastrukov (ru), Gil 'Dolfin' Osher (he),
Gnome PL Team (pl), Görkem Çetin (tr), Hasbullah Bin Pit (ms),
Jordi Mallach (ca), Juan Manuel García Molina (es), Kjartan Maraas (no),
Miloslav Trmac (cs), Ole Laursen (da), Paul Duffy (ga),
Samuel Jon Gunnarsson (is) and Vincent van Adrighem (nl).
=============
Version 2.3.3
=============
* New GNOME About Dialog ! (Kristian Rietveld,
Mark McLoughlin,
Glynn Foster,
Jeff Waugh)
Misc
* Moved some icons to gnome-icon-theme (Mark Finlay)
* Change icon for Accessories, Games and Programming menus (Mark Finlay)
Translators
* Christian Rose (sv.po), Dafydd Harries (cy.po), Dinesh Nadarajah (ta.po),
Dmitry G. Mastrukov (ru.po), Jordi Mallach (ca.po), Mathieu van Woerkom (li.po)
and Paul Duffy (ga.po).
=============
Version 2.3.2
=============
gnome-about
* Hexify contributors list so it doesn't need to be translated and
make a format string much easier to translate (Christian Neumair )
Misc
* Removed gnome-panel icons (Mark)
* Removed gnome-games icons (Luca Ferretti)
* Cygwin fixes (Masahiro Sakai)
* Fix sgmldocs.make (Art Haas)
Translators
* Abel Cheung (zh_TW), Christian Rose (sv), Christophe Merlet (fr),
Dafydd Harries (cy), Danilo Šegan (sr, sq@Latn), Duarte Loreto (pt),
Elian Myftiu (sq), Hasbullah Bin Pit (ms), KAMAGASAKO Masatoshi (ja),
Miloslav Trmac (cs), Ole Laursen (da), Paul Duffy (ga) and
Vincent van Adrighem (nl).
=============
Version 2.3.1
=============
* s/Vendor/Distributor (Mike Newman)
Translations
* ga(Paul Duffy), ms(Hasbullah Bin Pit), yi(Raphael Finkel)
=============
Version 2.3.0
=============
Translations
* ga(Paul Duffy) and ml(FSF-India).
=============
Version 2.2.2
=============
libgnome-desktop
* Don't unescape special characteres (e.g. %20) (Bala)
Translations
* Belarusian team (be), Danilo Šegan (sr), Guntupalli Karunakar (hi),
Fatih Demir (ta), FSF-India (ml), Paul Duffy (ga) and Raphael Finkel (yi).
=============
Version 2.2.1
=============
libgnome-desktop
* Fix issue with gettext (Frederic Crozat)
* Don't crash when adding translations to a new Ditem (Arvind)
* Remove mime type checking from .desktop file loader (Andrew Sobala)
* Fix memory corruption when DESKTOP_STARTUP_ID is already set (fourdan@xfce.org)
* Fix silly bug in the option menu of the Ditem edit dialog (Kalle Olavi Niemitalo)
Miscellanous
* Update the "Reporting Bugs" docs (Alexander Kirillov)
* Build fix (Dan Mills)
* New screenshot icon (Jakub Steiner)
Translations
* Dmitry G. Mastrukov, Joël Brich, Metin Amiroff, Miloslav Trmac,
Mohammad DAMT, Paisa Seeluangsawat, Paul Duffy, Pramod, Roozbeh Pournader,
Samúel Jón Gunnarsson, Takeshi AIHANA, Taneem Ahmed and
Vincent van Adrighem.
===============
Version 2.2.0.1
===============
Translations
* Abel Cheung, Alessio Frusciante, Duarte Loreto, Elian Myftiu,
Fatih Demir, Sanlig Badral and Tõivo Leedjärv.
=============
Version 2.2.0
=============
* Fix various issues with startup notification (Havoc)
Translations
* Alexander Shopov, Anurag Seetha, Christian Neumair,
Daniel Yacob, Dmitry G. Mastrukov, Funda Wang, Jordi
Mallach, Kostas Papadimas, Pablo Gonzalo del Campo,
Tõivo Leedjärv and Young-Ho, Cha.
==============
Version 2.1.90
==============
* Removed various unused .directory and .order files (Mark)
Translations
* Abel Cheung, Andras Timar, Artis Trops, Christian Rose,
Christophe Merlet, German Poo Caaman~o, Gustavo Noronha
Silva, Kjartan Maraas, Miloslav Trmac, Ole Laursen, Pablo
Saratxaga, Pauli Virtanen, Stanislav Visnovsky, Tino Meinen
and Zbigniew Chyla.
=============
Version 2.1.5
=============
Translations
* Hasbullah Bin Pit, Christian Neumair, Christophe Merlet,
Ole Laursen, Miloslav Trmac, Pablo Saratxaga and
Pauli Virtanen.
=============
Version 2.1.4
=============
libgnome-desktop
* Make startup notification work (Havoc)
* Add api for multiscreen dnd launching (Satyajit Kanungo)
GNOME About Dialog
* Fix crash when gnome-version.xml isn't installed (Mark)
Miscellanous
* Add links to gnu.org and gnomedesktop.org (Any Tai)
* Add advanced-directory.png icon (Glynn)
Translations
* Andras Timar, Kjartan Maraas, Marius Andreiana and
Ole Laursen.
=============
Version 2.1.3
=============
libgnome-desktop
* Add ditem_launch_on_screen() for startup notification (Mark)
* s/Mime/MIME/ (Mark)
GNOME About Dialog
* Display GNOME version, vendor and build date (Mark, Mike Newman)
* Don't mark pango markup for translation (Mark)
* s/Gnome/GNOME/ (Mark)
Miscellanous
* New card game icon (Jakub Steine, Ross Burton, Tim Musson)
Translations
* Christian Neumair, Christian Rose, Christopher R. Gabriel,
Hasbullah Bin Pit, Kjartan Maraas and Vincent van Adrighem.
=============
Version 2.1.2
=============
* Add startup notification support to libgnome-desktop (Havoc)
* Replaced GNOME logos with the new version (Denis Cranston)
Translations
* Andras Timar, Dmitry G. Mastrukov, Juan Manuel García Molina and
Kjartan Maraas.
=============
Version 2.1.0
=============
* Move GnomeIconLoader to lignomeui (Alex)
* Re-install gnome-feedback docs (John Fleck)
Translations
* Naba Kumar and He Qiangqiang.
=============
Version 2.0.9
=============
* Build and install the gnome-feedback docs again (John Fleck)
* Fix small Makefile bug (Mark)
Translations
* Abel Cheung, Changwoo Ryu, Gil 'Dolfin' Osher, He Qiangqiang,
Juan Manuel Garcia Molina, Peteris Krisjanis and Stanislav Brabec.
=============
Version 2.0.8
=============
Translations
* German Poo-Caamaño, Gil 'Dolfin' Osher, He Qiangqiang,
Kjartan Maraas and Takayuki KUSANO.
=============
Version 2.0.7
=============
GNOME About
* Implement mouse wheel scrolling (Frank Worsley)
Translations
* Andras Timar, Christian Meyer, Marius Andreiana, Peteris
Krisjanis and Vincent van Adrighem.
=============
Version 2.0.6
=============
GnomeIconLoader
* Don't stat all icons on startup (Mark)
* Fix #89245, picking an .xpm over a .png (Mark)
* Also read icons from our installed prefix (Mark)
* Fix GConfClient leaks (Mark)
Translations
* Simos Xenitellis and Tõivo Leedjärv.
=============
Version 2.0.5
=============
GnomeDesktopItem
* Fixed referencing a bogus file handle (Michael)
Translations
* Duarte Loreto.
=============
Version 2.0.4
=============
GnomeDesktopItem
* Truncate .desktop file after opening (George)
* Remove numeric canonization (George)
* Add APPEND_PATHS flag (Frank Worsley)
Miscellanous
* Sort out libtool versioning (Mark)
Translations
* Yanko Kaneti, Pablo Saratxaga and Pauli Virtanen.
=============
Version 2.0.3
=============
GnomeDesktopItem
* Appending URIs to Exec field fixes (Frank Worsley)
* Allow the specification of environment for launching (Mark)
* Use X-GNOME-DocPath instead of DocPath (Glynn)
* Follow symlinks when opening .desktop files (Jacob)
* Smarter type string to enum conversion (Mark)
GnomeDItemEdit
* Use of GTK_SHADOW_IN for consistency (Jorn Baayen)
* Correctly set the history on the 'Type' option menu (Arvind)
* Correctly keep main page in sync with locale editing (Frank Worsley)
Miscellanous
* Add comment for Accessories menu (Arvind)
* Warnings fixes (Mark)
Translations
* Carlos Perello Marin, Changwoo Ryu, Christian Rose, Christophe Fergeau,
Daniel Yacob, Dmitry G. Mastrukov, Hasbullah Bin Pit, Jordi Mallach,
Kjartan Maraas, Manuel Borchers, Ole Laursen, Pablo Saratxaga, Peteris
Krisjanis, Stanislav Visnovsky and Zbigniew Chyla.
=============
Version 2.0.2
=============
* New GNOME foot icon (Jakub Steiner and Tuomas Kuosmanen)
=============
Version 2.0.1
=============
* Avoid using freed memory (Jody Goldberg)
* Use correct install location for message catalogs (Hidetoshi Tajima)
Translations
* Carlos Perello Marin, Changwoo Ryu, Hasbullah Bin Pit, Pablo
Saratxaga, Pauli Virtanen, Takayuki KUSANO and Yanko Kaneti.
=============
Version 2.0.0
=============
Translations
* Carlos Perelló Marín, Christophe Merlet, Tõivo Leedjärv and
Vincent van Adrighem.
==============
Version 1.5.22
==============
libgnome-desktop
* Make translations in GnomeDitemEdit work (Frank Worsley)
Translations
* Carlos Perelló Marín, Christian Rose, Duarte Loreto, George
Lebl, Jesus Bravo Alvarez, Jordi Mallach and Tõivo Leedjärv.
==============
Version 1.5.21
==============
libgnome-desktop
* Much IconLoader work and DesktopItem integration (Alex)
* Fix translating wrong strings (George)
* GnomeDesktopItem fixes (Frank Worsley)
Misc
* XML GNOME version file (Sander)
* Add new calculator icon (Jakub Steiner, Glynn)
* Make gnome-about look for contributors in DATADIR (Bastien)
Translations
* Abel Cheung, Dmitry G. Mastrukov, Fatih Demir, George Lebl,
Kjartan Maraas, Ole Laursen, Pauli Virtanen,
Stanislav Visnovsky and Zbigniew Chyla
==============
Version 1.5.20
==============
* New apis and fixes in icon loader (Alex)
* New screen shot icon (Jimmac, Seth)
Translations
* Abel Cheung, Naba Kumar, Pauli Virtanen, Shooby Ban
and Vlad Harchev.
==============
Version 1.5.19
==============
libgnome-desktop
* implementation of the new icon spec (Alex)
* i18n fix (Toschi)
gnome-about
* accessibility fixes (Deepa)
misc
* change gnome-sound icon (Seth)
Translations
* Stanislav Visnovsky, Ole Laursen, Zbigniew Chyla, Gediminas Paulauskas,
Kjartan Maraas, Changwoo Ryu, Gustavo Maciel Dias Vieira, Christophe Fergeau
Hasbullah Bin Pit, Duarte Loreto, Takayuki KUSANO
==============
Version 1.5.18
==============
Translations
* Vincent van Adrighem, Kjartan Maraas, Ilmar Kerm, Benedikt Roth,
Pauli Virtanen, Pablo Saratxaga, Abel Cheung, Pablo Saratxaga.
==============
Version 1.5.17
==============
libgnome-desktop
* Change 'Type' combo box to an option menu (George)
* Temporarily ignore '%m' and '%i' to KDE .desktops work (George)
* Expand parameters before parse to handle quoting (George)
misc
* gnome-about accessibility patch (Deepa Natarajan)
* Add starfield effect to gnome-about (Stephen)
* Fix cde icon installation (Mark)
* Update library requirements (Mark)
Translations
* Changwoo Ryu, Christophe Merlet, Hasbullah Bin Pit, Pauli Virtanen,
Takayuki KUSANO and Zbigniew Chyla.
==============
Version 1.5.16
==============
libgnome-desktop
* Make the 'Command' entry browsable (George)
* Some URL based .desktop editing fixes (George)
* Fix translations not being displayed (Kjartan)
misc
* Change preferences menu to 'Desktop Preferences' (Seth)
* Add pixmap for CDE menus (Stephen Browne)
* fix xmldocs.make (Mark)
Translations
* Abel Cheung, Changwoo Ryu, Christian Rose, Christophe Merlet,
Gustavo Maciel Dias Vieira, Hasbullah Bin Pit, Ole Laursen,
Pauli Virtanen, Stanislav Visnovsky, Tõivo Leedjärv,
Valek Filippov and Zbigniew Chyla.
==============
Version 1.5.15
==============
gnome-about
* Port to pango (Mark)
* Redo the scrolling effect (Mark)
* Use the font from the widget style (Deepa natarajan)
libgnome-desktop
* Get Exec args working (Mark)
* Add GenericName .desktop key (George)
* Ui tweaks and fixes (George)
* Re-work the advanced DitemEdit page (Mark)
Translations
* Changwoo Ryu, Duarte Loreto, Hasbullah Bin Pit,
Kjartan Maraas, Tõivo Leedjärv and Zbigniew Chyla
==============
Version 1.5.14
==============
* Fix infinite loop in gnome_desktop_item_set_location_file (Diego González)
* Fix weird rendering bug and core dump in gnome-about (Mark)
* Set default response in gnome-about (Deepa)
Translations
* Changwoo Ryu, Ole Laursen, Pauli Virtanen, Takayuki KUSANO,
Tõivo Leedjärv and Valek Filippov.
==============
Version 1.5.13
==============
libgnome-desktop
* Null key chomping fix (Richard Hestilow)
* Tooltips and atk relation patch (Jayaraj Rajappan)
Misc
* New spec file (Chris Chabot)
* Add GNOME desktop version file (Glynn)
Translations
* Changwoo Ryu, Christian Meyer, Duarte Loreto, Hasbullah Bin
Pit, Kjartan Maraas, Roy-Magne Mo, Stanislav Visnovsky,
Szabolcs Ban, Valek Filippov, Wang Jian and Zbigniew Chyla
==============
Version 1.5.12
==============
libgnome-desktop
* Fix warnings (Mark)
* Setup some a test for ditem-edit (Mark)
* Cleanup, fix bugs and fix ditem-edit treeview (Mark)
* Chomp trailing spaces from .desktop entries (Darin)
Misc
* Build everything with WARN_CFLAGS (Mark)
Translations
* Christian Meyer, Stanislav Visnovsky, Zbigniew Chyla,
Fatih Demir, Ole Laursen, Pauli Virtanen, Tõivo Leedjärv,
Kjartan Maraas and Christopher R. Gabriel.
==============
Version 1.5.11
==============
libgnome-desktop
* impl gnome_desktop_item_new_from_string + cleanups (Darin)
* create ditem-edit treeview correctly (Mark)
gnome-about
* fix keynav bug (Mark)
* remove unneeded gettext calls (Kjartan)
* kill deprecated calls (Deepa Chacko Pillai)
* kill redundant casts (Mark)
Misc
* remove all .desktop files (Seth)
* remove irrelevant manpages (Mark)
* POTFILES.in fix (Jacob)
Translations
* Valek Filippov, Zbigniew Chyla, Christian Rose,
Vincent van Adrighem, Hasbullah Bin Pit, and Wang Jian.
==============
Version 1.5.10
==============
* deprecated method removal (Nitin Madhukar Yewale)
* ditem editor usability fix (Shivram U)
Translations
* Takayuki KUSANO, Tõivo Leedjärv and Christophe Merlet.
=============
Version 1.5.9
=============
* split from gnome-desktop from gnome-core (Mark)
=============
Version 1.5.8
=============
Panel
* Plug an atrocious amount of leaks (Mark)
* Load applets in an idle handler (Mark)
* Use the correct repository ID for applets (Mark)
* Use the all the applet moniker items (Mark)
* Lots more keynav work (Padraig)
* Menu properties saving to gconf (Mark)
* Solaris mis-alignment bugfix (Mark)
* Use bonobo-activation per-display registration (Mark)
* Menu Panel clock translation fixage (Takayuki KUSANO)
* Event stretching cleanup (Mark)
* struts hints fixing (Havoc)
* Applet saving fixes (Mark)
* Fix applet popup menu (Richard Hult)
* Run dialog box fixes (Mark, George)
* .desktop file charset conversion fix (Gediminas Paulauskas)
* Lots of menu work (George)
* remove cruft from Panel idl (Mark)
* fix build (Jacob)
Panel Applet Library
* generic applet flags api (Mark)
* use GConfClient to kill gconf warnings (Mark, Gediminas)
* allow PanelApplet to be derived from (Mark)
* item handler for initial size, orient and background (Mark)
* applet developer's testing utility (Mark)
* panel_applet_get_background implementation (George, Mark)
* plug leak (Mark)
* applet focus (Padraig)
* shift+F10 applet menu popup (Padraig)
* kill getExpandFlags idl (Mark)
* build fix (Jacob)
Applets
* tasklist and pager prefs dialog button fix (Jorn Baayen)
* updates for libpanel-applet changes (Mark)
* initial applets size and orient fixage (George)
Docs
* tasklist, pager, mailcheck and clock docs (John Fleck)
* man pages (Christian Marillat, Kjartan)
Misc
* remove gnome-terminal from build (Mark)
* .desktop files fixing (Mark)
* distcheck fixes (Mark)
* use intltool to translate .desktop files (Gediminas)
* plug libgnome-desktop leaks (Mark)
* gsm build fix (Jacob)
* logout dialog box usability fix (Gediminas)
* gnome-login-check dns simplification (Mark)
* include config.h in translatable files (Kjartan)
Translations
* Gediminas Paulauskas, Duarte Loreto, Kjartan Maraas, Ole Laursen,
Pauli Virtanen, Hasbullah Bin Pit, Takayuki KUSANO, Changwoo Ryu
and Duarte Loreto.
=============
Version 1.5.7
=============
Applets
* pager docoumentation setup (John Fleck)
* applet .directory files removal (Mark)
* fish about dialog bugfix (Mark)
* usability re-naming (Seth)
* desktop file culling and fixing (Seth)
Panel
* launcher saving bugfixes (Mark)
* Lots of excellant panel keynav work (Padraig)
* make glade/intltool work together (Darin, Mark)
* make run dialog global key work again (George)
* authors list update (George)
* re-enable applet dnd (George)
* fix build breakage (Glynn)
Misc
* ditem error handling improvement (George)
* gsm 'double delete' bugfix (Kjartan)
=============
Version 1.5.6
=============
* rationalise gconf source autoconf check (Mark)
* workaround deprecated gtk+ enums usage (Mark)
=============
Version 1.5.5
=============
gnome-core/applets -
* Make time/date centered for Clock applet [Richard]
* Usability applet renaming [Seth]
* Misc build fixes [Glynn]
gnome-core/gnome-desktop -
* Misc fixes [George, Stephen]
gnome-core/icons -
* 7 new icons! Can you *see* the love? [Seth, Jakub]
gnome-core/libpanel_applet -
* Misc fixes [Mark]
* Build fixes [Glynn]
gnome-core/panel -
* ButtonWidget now inherits from GtkButton [Padraig]
* Implement support for popup menus using 'Shift+F10' [Padraig]
* Remove last trace of tiles like ever [George]
* Draw focus frame around launchers [George]
* Implement return focus from a child widget using
'Ctrl+Tab' [Padraig]
* Port status and swallow applets to use libwnck [George]
* Give panel prelight colour when panel has focus [Padraig]
* Usability rewording and new icons [Seth]
* Save the world with sensible context menus [Seth]
* Fix up default panel schemas [Glynn, Seth]
* Remove caveat dialog [George]
* Give focus to launcher instead of hidebuttons first [Padraig]
* Lower button displacement [Anders]
* Fix panel boundaries [George]
* Synchronize panel hints with GNOME 1.4 [Roy-Magne Mo]
* Implement keyboard move functionality of
ButtonWidget [Padraig]
* De-sensitize basep widget when hidden [George]
* Misc fixes [Anders, George, Glynn, Padraig]
* Cleanage of severe cruft [George, Padraig]
* Much panel fear [George]
gnome-core/docs -
* We now have documentation! [John]
* Build fixes [Mark]
gnome-core/po -
* Translations [Christian Rose, Hasbullah Bin Pit,
Kjartan Maraas, Marius Andreiana, Peteris Krisjanis,
Roy-Magne Mo, Stanislav Visnovsky, Takayuki Kusano]
* Misc fixes [Glynn]
gnome-core/misc -
* Build fixes [Glynn]
gnome-core/gnome-terminal -
* Misc fixes [Owen]
* Build fixes [Darin]
* Typographical error [Kjartan]
=============
Version 1.5.4
=============
* Panel:
+ lots of gconf work
+ Session handling proposal (Alex, Glynn, George, others?)
+ profiles (Glynn)
+ default panels/applets (Glynn)
+ panels saving/loading (Glynn)
+ applets/menus etc. saving/loading (Mark)
+ convience methods (Glynn, Mark)
+ kill gnome-run button applet (Glynn)
+ libart -> gdk-pixbuf for button rendering (Alex)
+ porting properties capplet (Stephen)
+ new ditem api usage (George)
+ launchers/vfolders work (George, Seth)
+ kill favorites menu (George)
+ use gtk image menu items (George)
+ port to libwnck (George)
+ menu fixage (Anders)
+ removal of deprecated function/widgets (George)
+ Menu work (George)
+ winhints updates (George, Havoc, Alex, Mark)
+ foobar pixmap scaling (Chris Phelps)
+ foobar clock nicifying (Dennis M. Cranston, George)
+ cruft removal (Mark, George, Glynn)
+ CORBA namespace fixage (Mark)
+ make applet background colors 16 bit (Alex)
+ dialog box fixage (Gediminas Paulauskas)
+ panel side use of applet item handler (Mark)
+ solaris distribution menu (Stephen)
+ screen shooter updates (Anders)
+ applet stabilty fixes (Anders)
+ gegl invaders ... *cough* (George)
+ panel-widget and button-widget cleanup (Alex)
+ hidebutton keyborad navigation (Padraig O'Briain)
+ applet pixmap background implemenation (Mark)
+ gtk accelerator parsing updates (Alex)
* Panel Applet Library
+ shlib applet macro (Mark)
+ move to GNOME_Vertigo CORBA namespace (Mark)
+ kill session management (Mark)
+ make applet background colors 16 bit (Alex)
+ item handler implementation (Mark)
+ runtime schema<->key association for applets prefs (Mark)
+ gconf convienence functions (Mark)
+ gclosurization (George)
+ removal of gnome_program_init (George)
+ applet pixmap bacgrounds (Mark)
+ expose panel_applet_gconf_get_full_key (Alex)
* Applets
+ update for panel-applet api changes (Mark)
+ fish preferences/schema/gconf work (Mark)
+ clock utf-8 fixage (Richard Hult)
+ clock + tasklist background (Alex)
+ mailcheck port (Kevin Valdersloot)
+ tasklist + pager properties/gconf work (Alex)
* Build:
+ intl dir removal (Gediminas Paulauskas)
+ libwnck dependancy (George, Glynn)
+ libpng check (Anders, Glynn)
+ file renaming (Mark)
+ clean up Glynn's drool (Darin)
+ kill -I$(includedir) (Frank Belew)
* Icons
+ time/date icons (Dennis M. Cranston)
+ hand removal from panel icon (Seth)
* ditem library
+ standard compliance (George)
+ new api (George)
+ i18n fixage (Gediminas Paulauskas)
+ kde icons (George)
+ g_spawn fixage (George, Glynn)
+ distcheck fixes (Mark, Glynn)
* Misc
+ gnome-terminal fixage (Owen)
+ .directory files work (Seth)
+ gsm gconf work (Richard Hestilow)
* Other Contributors
+ Miles Lane, Robert Mibus.
=============
Version 1.5.3
=============
gnome-core/applets -
+ New tasklist using libwnck [Alex]
+ Updates for new API [Mark]
+ Build fixes [Mark]
gnome-core/gnome-desktop -
+ GnomeVFS fixes [Alex]
+ Add pc file [Owen]
+ Encoding fix [Seth]
gnome-core/gsm -
+ Prefer Metacity to Enlightenment [Havoc]
+ Save world yet again with .gnome2 fixes [Malcolm]
+ Fix order of initialization [Malcolm]
+ Use PangoFontDesc with splash screen [Glynn]
gnome-core/panel -
+ Add getExpandFlags method to IDL [Alex]
+ Add saveYourself method to IDL [Mark]
+ Remove/Replaced all AppletShell IDL methods [Mark]
=============
Version 1.5.2
=============
+ new pager applet using libwnck (Alex)
+ .desktop file updates and additions (Seth)
+ gnome-hint is now a GtkDialog (Anders)
+ session manager gtk fixes (Owen)
+ gtk_idle_add -> g_idle_add stackframes saving (Mark)
+ applet button press propogation bug fix (Alex)
+ continue switching to new applet design (Mark)
+ schema file rename (Glynn)
+ POTFILES redo (Mark)
=============
Version 1.5.1
=============
Initial port to GNOME 2.0.
|