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
|
mutter (43.8-0+deb12u1) bookworm; urgency=medium
[ Simon McVittie ]
* d/control.in, d/gbp.conf: Use debian/bookworm branch
* Apply changes from 43.7-2 to bookworm
(Closes: #1035092, #1049934, #1042055)
* New upstream stable release 43.8
- Fix the ability to drag libdecor windows by their title bar on
touchscreens (mutter#2872)
- Fix flickering and rendering artifacts when using software rendering,
for example on older Intel hardware unsupported by the Gallium i915
driver (mutter#2602)
- Improve GNOME Shell app grid performance by avoiding repainting
monitors other than the one it is displayed on
(partially fixes gnome-shell#6819)
- Upstream CI adjustments not relevant to Debian
- All other changes were previously included in 43.7-1, 43.7-2
* d/patches: Drop patches that were included in the upstream release
* Split the triple-buffering patch into its individual commits.
This should hopefully make it easier to keep track of its status.
[ Daniel van Vugt ]
* Update triple-buffering-v4-43 patchset to 43.8-54-g95b2d2157c
(2023-09-25)
- d/p/triple-buffering/clutter-frame-clock-Fall-back-to-triple-buffering-not-dou.patch:
Fall back to triple buffering, not double buffering, when the driver
doesn't support GPU timestamps (Xorg, Raspberry Pi, others).
This avoids lower than intended framerates, typically 30fps rather
than 60fps. Change also included in 44.1-1.
(LP: #2017137, #2017097)
- d/p/triple-buffering/clutter-frame-clock-Avoid-rapidly-toggling-dynamic-max-re.patch:
Fix increased mouse input latency after the above change.
Change also included in 45.alpha and 44.3 upstream.
(LP: #2023363)
- d/p/triple-buffering/clutter-frame-clock-Record-measurements-of-zero-for-curso.patch:
Fix mouse cursor stuttering when moving across animated UI elements,
possibly a regression in 41.0. Change also included in 44.3-2.
(LP: #2023766)
-- Simon McVittie <smcv@debian.org> Tue, 10 Oct 2023 09:51:59 +0100
mutter (43.7-2) unstable; urgency=medium
* Team upload
* d/patches: Update to upstream gnome-43 branch commit
43.7-9-g3139cbb47c, excluding CI-only changes
- d/p/output-kms-Use-meta_kms_connector_get_preferred_mode-in-i.patch:
Make the choice of preferred video mode consistent between code
paths, fixing choice of video mode on some monitors (mutter!3055)
- d/p/cogl-gl-framebuffer-Fix-inverted-test-in-ensure_bits_init.patch:
change was already included in 43.7-1, just update metadata
- d/p/clutter-stage-Add-is-grabbed-property.patch,
d/p/window-Postpone-focusing-until-grab-ended-if-uninteractab.patch:
Give focus to new app windows when launched from the gnome-shell
overview, fixing a regression in 43.3-5 and upstream 43.4
(Closes: #1035092, #1049934)
- d/p/tests-Introduce-and-use-a-custom-test-shell.patch,
d/p/tests-test-shell-Emulate-overview-grabs.patch,
d/p/tests-test-runner-Add-toggle_overview-command.patch,
d/p/tests-Add-test-case-for-restoring-focus-after-overview.patch:
Add unit test coverage for #1035092
* d/p/tests-Reinstate-meta_test_get_plugin_name.patch:
Reinstate a symbol in libmutter-test-11 removed by the above patches,
in case a dependent package is using it
* d/libmutter-test-11.symbols: Add a new symbol introduced by the test
for #1035092
-- Simon McVittie <smcv@debian.org> Sun, 20 Aug 2023 11:35:31 +0100
mutter (43.7-1) unstable; urgency=medium
* Team upload
* New upstream stable release 43.7
- Functionally equivalent to 43.6-1
* d/p/wayland-outputs-Fix-potential-crash-when-output-has-no-mo.patch:
Drop patch, applied upstream
* d/gbp.conf, d/control.in: Use debian/trixie branch
* d/p/cogl-gl-framebuffer-Fix-inverted-test-in-ensure_bits_init.patch:
Add patch from upstream 45.beta to fix a test failure with recent Mesa
(Closes: #1042055, LP: #2025287)
* d/patches: Improve tracking of upstream status
-- Simon McVittie <smcv@debian.org> Fri, 18 Aug 2023 17:40:39 +0100
mutter (43.6-1~deb12u1) bookworm; urgency=medium
* Rebuild for bookworm
-- Simon McVittie <smcv@debian.org> Sat, 10 Jun 2023 22:59:13 +0100
mutter (43.6-1) unstable; urgency=medium
* New upstream stable release 43.5
- Always update surfaces belonging to a window that is being recorded
or included in a screencast, even if the window is not visible
on a local display (mutter#2538, mutter!2789)
- Export previously-private meta_window_has_pointer(), needed by
screenshot UI fixes in gnome-shell 43.5 (mutter!2928)
+ d/libmutter-11-0.symbols: Update to add that symbol
- All other changes were already present in 43.4-2
* New upstream stable release 43.6
- Fix a resource leak when a compositor view is destroyed (mutter!2991)
- Fix a crash when headless gdm greeter via gnome-remote-desktop
attempts to blank the screen (mutter#2841)
* d/patches: Drop patches that were applied upstream
* d/p/wayland-outputs-Fix-potential-crash-when-output-has-no-mo.patch:
Backport patch from 44~beta to fix a crash during suspend/resume on
some systems (mutter#2570, Closes: #1036268)
-- Simon McVittie <smcv@debian.org> Sat, 10 Jun 2023 21:17:19 +0100
mutter (43.4-2) unstable; urgency=medium
* Team upload
* d/patches: Update to upstream gnome-43 branch commit 43.4-5-gc35e9f8c0
- d/p/clutter-actor-Get-next-action-from-list-before-handling-c.patch:
Fix a use-after-free that was always a problem in theory, but causes
crashes in practice with GLib 2.76.x (mutter!2955, gnome-shell#6552)
- d/p/cursor-tracker-Don-t-leak-window-cursor-on-exit.patch:
Fix a minor memory leak (mutter!2969)
- d/p/wayland-cursor-surface-Update-cursor-on-dispose.patch:
Fix a crash in rare situations involving Wayland cursor changes,
and add test coverage (mutter!2969)
* d/libmutter-11-0.symbols: Add new private symbols used by tests
for the above changes
* d/p/wayland-xdg-shell-Dismiss-instead-of-destroy-invalid-popu.patch:
Backport a fix from upstream 44.x branch to fix popup-related crashes
(mutter#2728, mutter!2940, Closes: #1033484)
-- Simon McVittie <smcv@debian.org> Fri, 21 Apr 2023 10:10:24 +0100
mutter (43.4-1) unstable; urgency=medium
* Team upload
* New upstream release
- Improve performance by reducing memory bandwidth use on some GPUs
(GNOME/mutter!2091)
- Fix handling of rotated screens, for example on Pinephone Pro and
Pinebook Pro (GNOME/mutter#2557)
- Avoid warnings when destroying a ClutterText object with recent
GLib versions (GNOME/mutter#2566)
- Other changes were included in previous Debian packaging updates
* Drop most patches, applied upstream
* d/patches: Update to upstream gnome-43 branch commit 43.4-2-gba5cb0542
- Fix a crash with newer GStreamer gtkwaylandsink (GNOME/mutter!2917)
- Translation update: ab
* Remove #1032388 from previous changelog entry.
I hoped !2878 would fix both #1032388 and #1031945, but in fact it
only fixes #1031945.
-- Simon McVittie <smcv@debian.org> Mon, 10 Apr 2023 14:07:33 +0100
mutter (43.3-5) unstable; urgency=medium
* Team upload
* d/patches: Use the same order in which patches were applied upstream
* d/p/color-device-Make-sure-lcms_context-is-not-NULL.patch,
d/p/color-device-Don-t-close-lcms-profile-on-error-from-cd_ic.patch:
Use final version of these patches as applied upstream
* d/p/Revert-x11-Do-not-move-X11-input-focus-during-grabs.patch,
d/p/Revert-x11-events-Do-not-update-focus-XWindow-during-grab.patch,
d/p/x11-Ignore-_NET_ACTIVE_WINDOW-client-messages-while-grabb.patch,
d/p/core-Avoid-focusing-windows-on-map-during-grabs.patch:
Backport upstream merge request !2878, fixing X11 focus regressions
(Closes: #1031945)
* d/p/tests-Use-a-more-interoperable-path-to-bash.patch:
Fix path to interpreter in x11-test.sh instead of disabling it
- d/p/tests-Disable-broken-test.patch: Drop patch, no longer needed
-- Simon McVittie <smcv@debian.org> Mon, 06 Mar 2023 11:35:23 +0000
mutter (43.3-4) unstable; urgency=medium
* Team upload
* d/p/color-device-Make-sure-lcms_context-is-not-NULL.patch,
d/p/color-device-Don-t-close-lcms-profile-on-error-from-cd_ic.patch:
Fix a double-free when loading the ICC profile from a device's EDID
fails (Closes: #1031847)
-- Simon McVittie <smcv@debian.org> Thu, 02 Mar 2023 08:50:50 +0000
mutter (43.3-3) unstable; urgency=medium
* Team upload
* d/p/x11-Avoid-updating-focus-on-wayland-compositor.patch:
Add patch from upstream fixing a focus-handling regression in
Wayland sessions.
In 43.3, switching from an Xwayland window to a native Wayland window
would not always work.
-- Simon McVittie <smcv@debian.org> Sat, 18 Feb 2023 18:44:12 +0000
mutter (43.3-2) unstable; urgency=medium
* Team upload
* Mention LP: #1985089 in the 43.2-6 changelog
* d/p/Support-Dynamic-triple-double-buffering.patch:
Record the exact revision that was used (no content changes)
* Remove Lintian overrides that are no longer necessary now that
lintian/lintian!452 is in a release
* Upload to unstable
-- Simon McVittie <smcv@debian.org> Thu, 16 Feb 2023 09:37:11 +0000
mutter (43.3-1) experimental; urgency=medium
* Team upload
* Initially uploading to experimental pending feedback on whether the
downclocking patch needs adjustment for 43.3
[ Daniel van Vugt ]
* d/p/Support-Dynamic-triple-double-buffering.patch:
Improve downclocking (triple to double buffering) support so it
happens sooner and more reliably. This reduces input latency during
light rendering as well as reducing CPU usage of cursor movement.
Also correct the origin information.
[ Simon McVittie ]
* New upstream release
- Make sure there is always a non-null list of extensions
(LP: #1994011)
- Fix a crash when colour management operations are cancelled
(mutter!2794)
- Fix lockup when pointer crosses the intersection of 4 displays
(mutter#2598)
- Fix some small memory leaks (mutter!2811)
- Fix a misleading error message (mutter!2811)
- Revert a problematic change to the handling of frame event timing
(mutter!2835)
- On X11, Don't allow focus to be taken by an app during grabs
(gnome-shell#5932, mutter!2832)
- Many changes that were already in 43.2-6
* Drop patches that were applied upstream
* d/p/wayland-Don-t-overwrite-surface-offsets.patch:
Add patch from upstream to fix drag-and-drop cursor position on Wayland
(mutter#2622)
This updates us to upstream gnome-43 branch commit 43.3-1-ga8a348185b.
* d/control.in, d/gbp.conf, d/watch: Set up branches for 43.x in bookworm.
This leaves the default branch available for GNOME 44 betas in
experimental and Ubuntu.
-- Simon McVittie <smcv@debian.org> Wed, 15 Feb 2023 17:00:58 +0000
mutter (43.2-6) unstable; urgency=medium
* Team upload
* d/patches: Update to upstream gnome-43 branch commit 43.2-29-g35763ca0cc
- Avoid lag while altering the split point between edge-tiled windows
on the left and right halves of the screen
(mutter#2246, LP: #1985089)
- Disable direct scanout optimization during drag-and-drop to ensure
the dragged content is visible (mutter#2470)
- Performance improvements (mutter!2671)
- Enable the direct scanout optimization for fullscreen mpv in Wayland
(mutter#2550)
- Revert an optimization which caused some extensions to regress
- Prevent mouse cursor disappearing for windows that appeared while a
menu was open (mutter#2553)
- Make pointer confinement compatible with subsurfaces (mutter#2223)
- Report width and height of rotated screens consistently with the spec
and other compositors (mutter#2519)
- Avoid unintended focus change on secondary display when switching
workspace on primary display (mutter#2548)
- Make workspace-switching more resilient against crashes (mutter!2707)
- Fix a crash during screen recording at certain resolution/scale
combinations (mutter#2542)
- Fix cursor position scaling while recording a single window
(mutter#1541)
- Avoid integer overflow during screencasting (mutter!2762)
- Ensure cursor reappears when using touchscreen and then mouse in X11
(mutter#2344)
- Ensure keyboard accessibility works at beginning of session if
previously enabled in configuration (mutter#1858)
- Fix mapping between graphics tablets and displays (mutter!2767)
- Fix a small memory leak (mutter!2799)
- Translation updates: ru
* d/patches: Sort closest-to-upstream first
* d/patches: Improve metadata
* d/control.in: Drop Multi-Arch from libmutter-test-11.
The test library is not usefully multiarch, because it depends on a
matching architecture of mutter.
* lintian-overrides: Silence a false positive for libegl1-mesa-dev
libegl1-mesa-dev is not transitional or obsolete, see lintian/lintian!452.
* d/copyright: Add a missing short name field
* d/control.in: Standards-Version: 4.6.2 (no changes required)
-- Simon McVittie <smcv@debian.org> Sun, 29 Jan 2023 15:26:48 +0000
mutter (43.2-5) unstable; urgency=medium
[ Daniel van Vugt ]
* Update Support-Dynamic-triple-double-buffering.patch.
Fix tearing on monitors attached to secondary GPUs (LP: #1999216)
* Add patch for cursor-renderer-native to workaround broken arm64 drivers.
By forcing cursors to use dumb buffers. At least until Mesa gets fixed
for panfrost, vc4, v3d... (LP: #1988859)
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 23 Jan 2023 11:30:06 -0500
mutter (43.2-4) unstable; urgency=medium
* Team upload
* Mark xwayland test-case as known to be flaky on 32-bit ARM.
Mitigates: #1026445
-- Simon McVittie <smcv@debian.org> Tue, 20 Dec 2022 12:48:02 +0000
mutter (43.2-3) unstable; urgency=medium
* Team upload
* Rebuild source package with non-expired signing key
-- Simon McVittie <smcv@debian.org> Sun, 18 Dec 2022 22:32:32 +0000
mutter (43.2-2) unstable; urgency=medium
* Team upload
* d/p/workspace-Don-t-crash-on-invalid-argument-to-meta_workspa.patch:
Add proposed patch to avoid crashing on an invalid argument
* d/p/tests-Break-up-stacking-installed-tests-into-more-smaller.patch:
Add proposed patch to have more, smaller installed-tests.
As well as doing what it was intended to do, this also avoids a crash
during autopkgtest. (Mitigates: #1024438)
-- Simon McVittie <smcv@debian.org> Sun, 18 Dec 2022 21:29:01 +0000
mutter (43.2-1) unstable; urgency=medium
* New upstream release
* Update symbols files
-- Jeremy Bicha <jbicha@ubuntu.com> Sat, 10 Dec 2022 16:46:15 -0500
mutter (43.1-2) unstable; urgency=medium
* Team upload
* Disable restore-size test.
This avoids intermittent FTBFS, especially on armel and armhf.
* Build-/test-depend on dbus-daemon instead of dbus
* d/upstream/metadata: Add Repository field
-- Simon McVittie <smcv@debian.org> Tue, 15 Nov 2022 10:32:45 +0000
mutter (43.1-1) unstable; urgency=medium
* Team upload
* New upstream release
- Among other fixes, this avoids a fullscreen window on one display
being replicated on another display (Closes: #1023256, LP: #1990563)
* Refresh patch series
- Drop patches that were included upstream
- Update triple-buffering patch from GNOME/mutter!1441
* Set field Upstream-Name in debian/copyright.
* d/upstream/metadata: Add
* Update symbols file for new upstream release
* Reduce entropy of .symbols file.
The SONAME changed in version 43~beta, so there's no point in keeping
track of whether symbols are older than that version.
Similarly, if a symbol was introduced in a prerelease, we want
dependent packages to depend on the final release, so there's little
point in finer-grained tracking of which specific prerelease each
symbol came from.
-- Simon McVittie <smcv@debian.org> Fri, 04 Nov 2022 20:09:07 +0000
mutter (43.0-3) unstable; urgency=medium
* Cherry-pick patch to fix Night Light availability in GNOME Settings
(Closes: #1020941) (LP: #1990207)
* Cherry-pick patches to avoid crash when ICC color profile is invalid
(Closes: #1021680) (LP: #1993114)
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 17 Oct 2022 06:57:50 -0400
mutter (43.0-2) unstable; urgency=medium
* Release to unstable (Closes: #1009990, #1019266, #1020515)
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 27 Sep 2022 19:00:48 -0400
mutter (43.0-1) experimental; urgency=medium
* Team upload
[ Simon McVittie ]
* Team upload
* New upstream release
* d/copyright: Update
* Standards-Version: 4.6.1 (no changes required)
* d/libmutter-11-0.symbols: Add new symbols
[ Jeremy Bicha ]
* Mark as Linux-any
- Build tests indicate mutter doesn't work on Hurd or kFreeBSD
- Mutter is only used by GNOME Shell and Budgie, neither of which
are currently available on those architectures for other reasons
-- Simon McVittie <smcv@debian.org> Sun, 18 Sep 2022 20:18:26 +0100
mutter (43~rc-2) experimental; urgency=medium
[ Simon McVittie ]
* d/control: Drop compatibility with old libgdk-pixbuf2.0-dev package
[ Marco Trevisan (Treviño) ]
* debian/patches: Update triple-buffering patch against newest version
(LP: #1969422, #1988625)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 08 Sep 2022 17:35:16 +0200
mutter (43~rc-1) experimental; urgency=medium
* New upstream release
* Build-Depend on libcolord-dev & liblcms2-dev
* debian/*.symbols: Update
* Drop Consistently-pass-timestamp….patch: Applied in new release
* Refresh 2 patches
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 06 Sep 2022 14:07:28 -0400
mutter (43~beta-4) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* debian/control: Remove <!nocheck> from xvfb-run
[ Jeremy Bicha ]
* debian/tests/libmutter-11-dev: fix a reference to mutter-10
-- Jeremy Bicha <jbicha@ubuntu.com> Thu, 25 Aug 2022 05:28:09 -0400
mutter (43~beta-3) experimental; urgency=medium
* Add patches from Ubuntu:
- Support-Dynamic-triple-double-buffering.patch
- backends-native-kms-crtc-Don-t-compare-gamma-values-on-un.patch
+ Avoid memory errors when comparing gamma values
- wayland-data-device-Allow-any-drag-timestamp....patch
+ Allow any drag timestamp as drag start serial
* debian/libmutter-11-0.symbols: Add new symbols from triple buffering patch
-- Jeremy Bicha <jbicha@ubuntu.com> Sun, 21 Aug 2022 12:27:28 -0400
mutter (43~beta-2) experimental; urgency=medium
* Update mutter-10 to mutter-11 in more places
-- Jeremy Bicha <jbicha@ubuntu.com> Sun, 21 Aug 2022 10:35:35 -0400
mutter (43~beta-1) experimental; urgency=medium
* New upstream release
* Rename packages for API bump (mutter-10 -> mutter-11)
* debian/libmutter-11-0.symbols: Update
* debian/control.in: Bump minimum libwayland and wayland-protocols
* Refresh patches
* Add temporary patch to skip broken build test
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 16 Aug 2022 12:07:41 -0400
mutter (42.4-1) unstable; urgency=medium
* New upstream release
* debian/patches: Refresh
* debian/libmutter-10-0.symbols: Sync with new and removed internal symbols
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 11 Aug 2022 19:21:12 -0400
mutter (42.3-2) unstable; urgency=medium
* debian/libmutter-10-0.symbols: Add new symbols
-- Jeremy Bicha <jbicha@ubuntu.com> Sat, 16 Jul 2022 14:14:30 +0200
mutter (42.3-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Thu, 14 Jul 2022 16:33:25 +0200
mutter (42.2-1) unstable; urgency=medium
* New upstream release (LP: #1976381)
- Fix crash when restarting GNOME Shell on Xorg (LP: #1969893)
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 31 May 2022 10:10:28 -0400
mutter (42.1-1) unstable; urgency=medium
* New upstream release
(LP: #1972726, #1967274, #1965557, #1969574, #1948410, #1967219, #1971693)
* Drop patches applied in new release
* debian/libmutter-10-0.symbols: Add new symbol
* debian/libmutter-10-0.symbols: Drop a symbol that was only in experimental
* Add Breaks against old gtk3 & gtk4 versions.
See Ubuntu bug 1972721
* Release to unstable
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 09 May 2022 16:51:12 -0400
mutter (42.0-5) experimental; urgency=medium
* Team upload
* d/patches: Update to upstream commit 42.0-74-g6c8e8fbba
- Bug fixes targeted for 42.1
- d/p/clutter-stage-Repick-when-pointer-actor-goes-unmapped.patch:
Replace with the version that was applied upstream
- d/p/core-Account-ClutterStage-grabs-on-Wayland-key-focus-sync.patch:
Mark as applied upstream
-- Simon McVittie <smcv@debian.org> Mon, 25 Apr 2022 10:04:42 +0100
mutter (42.0-4) unstable; urgency=medium
* Team upload
* d/patches: Update to upstream commit 42.0-55-gbe9deeba0
- Update translations
- Update upstream status of cherry-picked patches
- Add various bug fixes including LP: #1959888, LP: #1964037
* d/p/core-Account-ClutterStage-grabs-on-Wayland-key-focus-sync.patch:
Add patch proposed upstream to fix grabs vs. system-modal prompts.
This is particularly annoying when using pkexec, or when using gcr as
a passphrase prompt for PGP, ssh and/or sudo.
(Closes: #1008998, LP: #1964442)
-- Simon McVittie <smcv@debian.org> Tue, 19 Apr 2022 11:54:56 +0100
mutter (42.0-3) unstable; urgency=medium
[ Marco Trevisan (Treviño) ]
* debian/patches: Cherry-pick upstream fixes targeting 42.1
* debian/patches: Ensure repick happens on actors visibility changed
(LP: #1964545)
[ Jeremy Bicha ]
* Release to unstable
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 28 Mar 2022 09:34:27 -0400
mutter (42.0-1) experimental; urgency=medium
[ Jeremy Bicha ]
* New upstream release
[ Marco Trevisan (Treviño) ]
* debian/patches: Skip monitor-size tests that may fail on autopkgtest
-- Jeremy Bicha <jeremy.bicha@canonical.com> Mon, 14 Mar 2022 09:28:30 -0400
mutter (42~rc-1) experimental; urgency=medium
* New upstream release
* debian/control.in: Add Breaks: gnome-shell (<< 42~rc)
* debian/control.in: Bump minimum meson, libwayland-dev & wayland-protocols
* debian/libmutter-10-0.symbols: Add new symbols
* Refresh patches
-- Jeremy Bicha <jeremy.bicha@canonical.com> Wed, 09 Mar 2022 13:11:43 -0500
mutter (42~beta-1) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* New upstream release:
- Implement a new Clutter grab API
- Support KMS testing via QEMU
- Add support for privacy screen
- Allow changing monitor configuration policy
- Fix possible missed clicks on menus
- Place popups on the same monitor as the anchor rect (LP: #1930567)
- Announce DMA-BUF support via pipewire
- Raise the file descriptor limit of the wayland compositor
- Fix resetting idle time on lid open
- Reset idletime when unplugging the power cable
- Keep a single cursor sprite visible with tablets
- Sync keyboard LEDs after layout changes (LP: #1830637)
- Honor window input area in picking
- Handle mixture of keycombo/no action in pad rings/strips
- Fix videos in Firefox stuttering in overview
- Fix X11 middle button emulation setting
- Fix crash on empty frame info queue (LP: #1960585)
- Fix window size after returning from fullscreen (LP: #1947467)
- Don't change workspaces of unmanaged windows (LP: #1933996)
- Ensure constraints after client resize (LP: #1917939)
* debian/watch: Accept pre-release version
Can still use gbp import --upstream-version=XX.Y to get stable only
* debian: Rename packages to use mutter-10 API
* debian/rules: Compute mutter API version on unstable releases too
* debian/control: Update dependencies
* debian/patches: Refresh and update to latest code
* debian/libmutter-(test-)10.symbols: Update
[ Jeremy Bicha ]
* Update autopkgtest & lintian override for new version
-- Jeremy Bicha <jeremy.bicha@canonical.com> Fri, 18 Feb 2022 07:32:24 -0500
mutter (41.3-3) unstable; urgency=medium
* Build-Depend on xcvt instead of xserver-xorg-core (Closes: #1005299)
-- Jeremy Bicha <jeremy.bicha@canonical.com> Fri, 11 Feb 2022 07:48:31 -0500
mutter (41.3-2) unstable; urgency=medium
* Team upload
[ Simon McVittie ]
* Adjust previous changelog entry to mention Launchpad bug 1872870
against the correct bullet point
* d/control.in: Build-depend on sysprof as well as
libsysprof-capture-4-dev.
The D-Bus interfaces are currently in sysprof, although arguably they
should move to a -dev package.
[ Marco Trevisan (Treviño) ]
* debian/control: Depend on xvfb even on nocheck, as it's checked during
configuration
-- Simon McVittie <smcv@debian.org> Mon, 07 Feb 2022 18:55:58 +0000
mutter (41.3-1) unstable; urgency=medium
* New upstream release:
- Check keyboard serials for activation
- Fix mixed up refresh rates in multi-monitor setups (LP: #1788535)
- Allow disabling HW cursors
- Improve damage handling
- Consider xrandr flags for advertised modes
- Ensure constraints after client resize
- window-group: Disable culling when rendering clone to offscreen buffer
(LP: #1872870)
- Fix workspace switch animation in default plugin
- Fix unfullscreening of window that were mapped fullscreen
- Fix DMA-BUF screencasts with unredirected fullscreen windows
- Fix orientation changes on devices with 90°
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 25 Jan 2022 03:26:38 +0100
mutter (41.2-2) unstable; urgency=medium
* Team upload
* d/p/Consistently-pass-timestamp-as-uint64-when-creating-MetaS.patch:
Add proposed patch to fix FTBFS on 32-bit architectures
* d/patches: Update to 41.2-6-g7b64c159a
- Surface damage viewport improvements
* Update patch metadata with upstream status
-- Simon McVittie <smcv@debian.org> Wed, 22 Dec 2021 19:47:37 +0000
mutter (41.2-1) unstable; urgency=medium
* Team upload
[ Simon McVittie ]
* New upstream release
* d/patches: Drop patches that were applied upstream
* d/patches: Update to upstream gnome-41 branch commit 41.2-3-g5d0c26631
- wayland: Check keyboard serials for activation
- Sync refresh rate to the correct monitor for maximized/full-screen
apps in a multi-monitor layout
- Add a debug environment variable to disable hardware cursors for
faulty hardware and drivers
[ Laurent Bigonville ]
* debian/rules: Disable systemd support on non-linux architectures
-- Simon McVittie <smcv@debian.org> Wed, 22 Dec 2021 10:57:19 +0000
mutter (41.1-1) unstable; urgency=medium
* Team upload
* New upstream release
* Drop a patch that came from upstream
* Update Lintian overrides
* Replace patches for #995929 with the version that was applied upstream
* Remove workaround for #994806
* d/libmutter-9-0.symbols: Ignore removal of clutter_stage_capture_into.
Nothing else in Debian references this symbol, except for forks of
the mutter codebase.
-- Simon McVittie <smcv@debian.org> Fri, 05 Nov 2021 16:40:11 +0000
mutter (41.0-5) unstable; urgency=medium
* Team upload
* Merge packaging from unstable
- No changes relative to 41.0-4, except for the changelog
* Close #995929 via changelog.
The patches in 41.0-4 seem to have been successful.
* Release to unstable (starts transition: #996607)
-- Simon McVittie <smcv@debian.org> Sat, 16 Oct 2021 18:52:20 +0100
mutter (41.0-4) experimental; urgency=medium
* Team upload
* d/control.in: libmutter-test-9 Depends on mutter.
It wants the libdefault.so plugin, which is in mutter.deb.
* Update Lintian overrides for RUNPATH
* d/patches: Another try at fixing #995929 (Closes: #995929)
* d/rules: Disable gvfs when running unit tests
-- Simon McVittie <smcv@debian.org> Mon, 11 Oct 2021 11:41:12 +0100
mutter (41.0-3) experimental; urgency=medium
* Team upload
* d/p/tests-Change-how-we-wait-for-an-orientation-change.patch:
Add patch attempting to fix #995929
* d/p/tests-Add-additional-debug-in-wait_for_orientation.patch,
d/p/tests-Watch-the-orientation-manager-independently.patch:
Try to diagnose what's going on if #995929 is still not fixed
-- Simon McVittie <smcv@debian.org> Sun, 10 Oct 2021 21:05:02 +0100
mutter (41.0-2) experimental; urgency=medium
* Team upload
* Build-depend on libgl-dev instead of transitional libgl1-mesa-dev
* (Build-)Depend on libgles-dev instead of transitional libgles2-mesa-dev
* d/rules: Don't let log from flaky tests overwrite log from main tests
* d/p/tests-dbus-runner-Make-sure-to-tear-down-even-on-test-fai.patch:
Add patch from upstream to stop failing tests causing a timeout.
Failing tests will generally still cause FTBFS, but failing immediately
is more buildd-friendly than timing out.
* d/p/tests-Don-t-use-TestEnvironment.patch,
d/p/tests-Don-t-continue-if-setup-commands-fail.patch:
Update patches for installed-tests to latest version submitted upstream
* d/p/tests-Add-additional-debug-for-Debian-995929.patch:
Add more debug logging to try to diagnose #995929
-- Simon McVittie <smcv@debian.org> Sat, 09 Oct 2021 18:54:23 +0100
mutter (41.0-1) experimental; urgency=medium
* Team upload
[ Jeremy Bicha ]
* debian/watch: Watch for stable releases
[ Simon McVittie ]
* New upstream release
* Update package names for ABI break
* Update build-dependencies
* d/copyright: Update
* Rebase patch series
* Update symbols file
* d/p/debian/synaptics-support.patch:
Stop patching in Xorg synaptics driver support.
Upstream rejected this patch back in 2018, but we continued to apply it
as a transitional step for Ubuntu 18.04. Since then we've had stable/LTS
releases of Debian 10, Ubuntu 18.04, Debian 11 and Ubuntu 20.04,
libinput has improved, and both Debian and Ubuntu have switched to
running GNOME in Wayland mode by default; let's have another try at
following upstream on this. (Closes: #993171)
* d/rules: Use upstream driver selection, except on 32-bit ARM.
Specifying -Ddefault_driver=gl on x86 (and other architectures that are
not 32-bit ARM) is no longer the same as the upstream default: the
upstream default is now gl3, meaning modern OpenGL, whereas the gl driver
is legacy (pre-3.2) OpenGL. Assume upstream are doing this for a reason.
For now we continue to specify -Ddefault_driver=gles2 on 32-bit ARM, and
apply the patch that adds the default_driver option, because 32-bit ARM
has historically been an exception to the usual rules.
* Add test-dependency on python3-dbus, python3-dbusmock
* d/p/meta-dbus-runner-Import-importlib.util.patch:
Add patch to fix test failure by working around #994806
* d/p/tests-Don-t-use-TestEnvironment.patch,
d/p/tests-Don-t-continue-if-setup-commands-fail.patch:
Add patch to avoid using TestEnvironment.
This works around a gnome-desktop-testing bug.
* Add Lintian override for another RUNPATH in the tests.
As with the existing tests, this is necessary to use mutter's fork of
clutter and cogl.
* Standards-Version: 4.6.0 (no changes required)
* Put the new libmutter-test-9 in its own binary package.
To avoid micro-packages, this includes the -dev files too; there is no
explicit dependency on libmutter-9-dev, but packages compiling against
this library are expected to build-depend on both. Outside mutter
itself, it is only expected to be used by gnome-shell.
-- Simon McVittie <smcv@debian.org> Tue, 21 Sep 2021 18:44:18 +0100
mutter (40.5-1) unstable; urgency=medium
* New upstream release:
- Fix monitor screencast scanouts
- Fix middle-click emulation support on X11
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Fri, 24 Sep 2021 21:11:07 +0200
mutter (40.4-2) unstable; urgency=medium
* Team upload
[ Jeremy Bicha ]
* Build-Depend on libsysprof-capture-4-dev instead of sysprof
[ Simon McVittie ]
* Upload to unstable, part of transition #992870
-- Simon McVittie <smcv@debian.org> Sat, 11 Sep 2021 21:34:10 +0100
mutter (40.4-1) experimental; urgency=medium
* Team upload
* New upstream release
- Don't require a newly attached buffer to apply state
- Fix upside-down Xshape surface with EGLstream
- Handle failure to allocate offscreen
- Improve window state checks
- Fix area-based screencast recording for unredirected windows such
as fullscreen games
- Fix ability to map a graphics tablet to a monitor
- Fix a crash if scanout fails unexpectedly
- Fix a logic error in determining number of input device modes
- Translation updates
* Don't let debhelper 13.4+ make all of /usr/libexec executable.
This is not what we want for installed-tests' associated data.
* Add a lintian override for dh-exec-subst-unknown-variable
-- Simon McVittie <smcv@debian.org> Tue, 31 Aug 2021 10:14:04 +0100
mutter (40.2.1-1) experimental; urgency=medium
* New upstream release
* debian/patches: Refresh
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 16 Jun 2021 01:36:22 +0200
mutter (40.2-1) experimental; urgency=medium
* New upstream release:
- Fix mouse position in remote desktop with fractional scaling
- Fix fd leak
- Disable KMS modifiers on radeon driver
- Fix adding virtual monitor to physical session
- Unbreak press-drag-release to pop up and select right click menus
- Fix VKMS detection
* debian/patches: Refresh, dropping applied upstream
* d/p: Mark view-verification tests as incomplete in big-endian archs.
Saved pixmaps are invalid in big-endian architectures, so let's disable
the tests for now, checking only the basic metadata but not comparing
the contents.
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 15 Jun 2021 22:07:25 +0200
mutter (40.1-1) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* New upstream release:
- Only snap to window edges when CTRL is pressed (LP: #1727225)
- Fix viewport of offscreen effects (LP: #1825126)
* debian: Update library name to follow soname (mutter-8)
* debian/control: Bump dependencies to match upstream requirements
* debian/patches:
- Refresh
- Do not run screencast tests.
They require to have a full running pipewire (that requires a system
dbus daemon) so, we can't easily get one up and running while building.
* debian/libmutter-8-0.symbols: Sync with new library symbols
* debian/control: Do not break on old gnome-shell versions
* debian: Enable sysprof profiler on linux
* debian/libmutter-8-0.symbols: Add new cogl trace symbols
* debian/rules: Enforce symbols checking via higher gen symbols check level
* debian/patches: Fix failing installed tests and ensure they work with runner
* debian: Enable installed tests and package them in mutter-8-tests
* debian/tests: Run installed tests as part of the autopkg tests
* debian/control: Add dependency on xwayland to mutter-tests
* debian/tests: Use multiple stanzas to run the autopkg tests
* debian/rules: disable native tests on non-linux
* debian/control: Depend on binary version for mutter package
* debian: Use dh-exec to install linux-only files
* debian/libmutter-8-0.symbols: Mark more symbols as linux-only
* debian/mutter-8-tests.lintian-override: Use versioned package name
[ Laurent Bigonville ]
* debian/watch: Updated to follow the new versioning scheme
* Remove Conflicts for old libmutter-*-dev packages
-- Laurent Bigonville <bigon@debian.org> Thu, 27 May 2021 21:31:05 +0200
mutter (3.38.6-2) unstable; urgency=medium
* Team upload
* d/p/monitor-manager-Don-t-include-generated-code-in-header-fi.patch:
Add patch from upstream 40.1 to fix FTBFS seen on s390x.
Thanks to Adrian Bunk.
-- Simon McVittie <smcv@debian.org> Thu, 26 Aug 2021 16:12:19 +0100
mutter (3.38.6-1) unstable; urgency=medium
[ Marco Trevisan ]
* d/gbp.conf, d/control.in: Update VCS details for debian/unstable branch
[ Simon McVittie ]
* New upstream release
- xwayland: Check permissions on /tmp/.X11-unix
- Ensure valid window texture size after viewport changes
- kms: Improve handling of common video modes that might exceed the
possible bandwidth
- Fix damage propagation for rotated transforms with viewport
- Improve Wayland subsurface reordering
* Update GLib build-dependency (no practical effect, the new dependency
is already in bullseye)
[ Laurent Bigonville ]
* Fixes for non-Linux ports:
- Build-depend on libegl1-mesa-dev on all architectures (not just Linux).
It is required for EGL support.
- Only build-depend on udev on Linux architectures
- Only depend on libwayland on Linux architectures
- Drop unnecessary -dev dependency on libudev-dev
-- Simon McVittie <smcv@debian.org> Thu, 26 Aug 2021 08:54:46 +0100
mutter (3.38.4-1) unstable; urgency=medium
* Team upload
* New upstream release
- Fix Wayland spec compliance when reordering subsurfaces.
This is likely to be required by future Firefox versions in native
Wayland mode.
- Many other fixes that we already had via debian/patches
* Drop most patches, included in the new upstream release
-- Simon McVittie <smcv@debian.org> Wed, 17 Mar 2021 09:52:33 +0000
mutter (3.38.3-5) unstable; urgency=medium
* Team upload
[ Marco Trevisan (Treviño) ]
* debian/patches: Include a missing commit from upstream gnome-3-38
branch to fix X11 UI stutters
-- Simon McVittie <smcv@debian.org> Wed, 10 Mar 2021 09:37:00 +0000
mutter (3.38.3-4) unstable; urgency=medium
* Team upload
[ Marco Trevisan (Treviño) ]
* debian/patches: cherry-pick more upstream gnome-3-38 fixes
- Correctly restore focus to applications that use globally active
input handling, such as AWT/Swing Java apps
- Disable double buffered shadow buffering, which was intended to
improve performance with e.g. llvmpipe but currently makes it worse
* debian/tests: Adapt autopkgtest name and linked library to current soname
* debian/tests/control: Update references to libmutter-7-dev
[ Simon McVittie ]
* d/patches: Update to commit 3.38.3-26-g30c542ddc from gnome-3-38 branch
- Fix X11 frame timing getting stuck if frames are skipped, resulting
in X11 applications not always being redrawn when they should be
- Fix a crash when clicking below titlebar with broken GTK themes
-- Simon McVittie <smcv@debian.org> Tue, 09 Mar 2021 20:34:42 +0000
mutter (3.38.3-3) unstable; urgency=medium
* Team upload
* d/patches: Update to commit 3.38.3-20-g2818cfda8 from gnome-3-38 branch
- Wayland geometry scale fixes
- Fix a crash that can occur on resume from suspend
- Fix drag-and-drop from X11 source to Wayland destination
-- Simon McVittie <smcv@debian.org> Tue, 23 Feb 2021 09:27:54 +0000
mutter (3.38.3-2) unstable; urgency=medium
* Team upload
* d/patches: Update to commit 3.38.3-12-g2d424a739 from gnome-3-38 branch
- Cope with monitors with metacharacters in their EDID data
- Don't crash if parsing monitor configuration fails
- Don't crash if an extension tries to add the same window to a
workspace more than once, such as auto-move-windows
- Cope with monitor configuration changes during screencasting
- Speed up workspace switching when many windows are open
- Fix Xwayland windows not always appearing in the gnome-shell overview
- Avoid warning spam and poor performance when unmanaging a window
(probably Closes: #970295, LP: #1841774)
-- Simon McVittie <smcv@debian.org> Thu, 04 Feb 2021 10:26:19 +0000
mutter (3.38.3-1) unstable; urgency=medium
* Team upload
* d/watch: Only watch for 3.38.x versions
* New upstream release
-- Simon McVittie <smcv@debian.org> Thu, 14 Jan 2021 20:13:35 +0000
mutter (3.38.2-1) unstable; urgency=medium
* Team upload
* New upstream release
- Don't crash during screencasting if cursor is not available
- Don't crash if a kernel bug results in appearing to have multiple
builtin panels
- Log warnings instead of crashing if user-defined keymap is
misconfigured
- Don't forget we have a touchscreen if a non-touchscreen input device
is connected
- Log warnings instead of crashing if invalid barriers are created
- Otherwise functionally equivalent to 3.38.1-4
* Drop patches cherry-picked from upstream or applied upstream
* d/gbp.conf: Use upstream 3.38.x branch.
Version 40~alpha was already released, so it's misleading to say that
3.38.x is the latest.
* Standards-Version: 4.5.1 (no changes required)
* d/rules: Don't run tests if built with nocheck option
* Upload to unstable
-- Simon McVittie <smcv@debian.org> Thu, 03 Dec 2020 10:23:26 +0000
mutter (3.38.1-4) experimental; urgency=medium
* Team upload
* Update to upstream gnome-3-38 branch, commit 3.38.1-50-gc70610c43
- If cursor theme is missing, draw a grey semi-transparent square
instead of crashing
- Allow primary GPU to be overridden with a udev rule
- Fix fullscreen toggle for some applications (Closes: #975453)
- Only schedule frame drawing for each surface (window) according to
one stage view (monitor)
- Fix size hints for client-side-decorated windows
- Avoid adding input devices too soon
- Performance optimizations
- Do not disable the X Security extension if Xwayland was built with it
* Don't depend on transitional libgdk-pixbuf2.0-dev
* Explicitly build-depend on gdk-pixbuf.
Previously it was pulled in by some other dependency (presumably
gnome-desktop3 and gtk), but mutter's build system checks for it, so
we should build-depend on it here too.
* d/p/clutter-frame-clock-Schedule-a-frame-at-least-once-per-se.patch:
Add proposed patch to ensure frame clock does not stop (Closes: #974172)
-- Simon McVittie <smcv@debian.org> Wed, 25 Nov 2020 10:23:36 +0000
mutter (3.38.1-3) experimental; urgency=medium
* Team upload
* Update to upstream gnome-3-38 branch, commit 3.38.1-33-g067af969c
- Prevent a use-after-free on (virtual) device removal
- Prevent crash on startup caused by dispatching libinput events too
early
- If Wayland subsurfaces have circular relationships, disconnect the
client instead of crashing
- When resizing terminals interactively, don't offset the position
- Fix broken timestamp behaviour if X11 timestamps overflow
- Fix a memory leak
- Ensure clock is updated when going from fullscreen app to overview
- Fix artifacts around GNOME Shell magnifier cursor
- Fix monitor tiling on X11
- Configure input devices correctly in X11
(LP: #1899206, LP: #1899509)
- Avoid spurious warnings in log
- Event does not have a stage: discarding
- assertion 'CLUTTER_IS_STAGE (stage)' failed
- Make sure build fails if Xwayland -initfd is requested but not
available (not relevant in Debian, we don't request this yet)
- Update translations: pt
* d/p/backend-Don-t-pull-generated-headers-indirectly.patch:
Add a patch from upstream git master to fix parallel builds
-- Simon McVittie <smcv@debian.org> Thu, 12 Nov 2020 18:17:44 +0000
mutter (3.38.1-2) unstable; urgency=medium
* debian/patches: Wayland start Xwayland on public X11 sockets as well
(LP: #1897224)
* debian/patches: Don't override window tile monitor (LP: #1900009)
* debian/patches: Fix resizing issues (LP: #1878293)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Fri, 23 Oct 2020 12:38:01 +0200
mutter (3.38.1-1) unstable; urgency=medium
* New upstream release:
- Fix Night Light updates after DPMS (LP: #1894596)
- Fix button scrolling on X11
- Always use correct font-dpi setting on X11
- Improve handling of scanout failures
- Fix middle/right button mixup in scroll button assignment
- Fix resizing of attached modal dialogs on wayland
- Enable KMS modifiers on devices that need them
- Fix IM handling on X11
- Fix glitches in "undefined" screencast areas
- Fix visual glitches on background with fractional scaling (LP: #1898080)
- Fix using correct refresh rate under X11 (LP: #1898645)
- Misc. bug fixes and cleanups
- Plugged memory leaks
* debian/patches: Refresh as per upstream changes
* debian/mutter-common.install: Include mutter udev rules
* debian/control: Add udev build-dependency
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Sun, 11 Oct 2020 01:43:05 +0200
mutter (3.38.0-2) unstable; urgency=medium
* Team upload
* Release to unstable (starts transition: #969321)
* d/rules: Ignore test failures in flaky tests on all architectures.
Upstream presumably marked them as flaky for a reason, and they do
fail on amd64 when under load.
* Revert "debian/watch: Watch unstable versions"
-- Simon McVittie <smcv@debian.org> Fri, 25 Sep 2020 10:53:27 +0100
mutter (3.38.0-1) experimental; urgency=medium
* New upstream release:
- screencast: Only use DMA buffers for i915
- Fixed crashes
* debian/patches: Refresh
* d/p/input-mapper-Don-t-match-touchscreens-to-the-absence-of-a.patch:
- Dropped, applied upstream
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 15 Sep 2020 15:45:52 +0200
mutter (3.37.92-2) experimental; urgency=medium
* Team upload
* d/p/input-mapper-Don-t-match-touchscreens-to-the-absence-of-a.patch:
Add patch to work around a crash with gnome-remote-desktop
-- Simon McVittie <smcv@debian.org> Wed, 09 Sep 2020 12:00:31 +0100
mutter (3.37.92-1) experimental; urgency=medium
* Team upload
* New upstream release
- Fix stale cursor positions in remote desktop sessions
- xwayland: Add a setting to disable selected X extensions
- Fix screencasting when using QXL
- Cull actors that don't intersect with the redraw clip
- Optimize painting of backgrounds when culling is unavailable
- Improve support for Hangul input method
- Support debug paint overlay for opaque regions
- Fix launching flatpak applications when autostarting Xwayland
- Add support for capture scanouts in screencasts
- Allow integrated tablet devices to cycle outputs
- Improve mapping input devices to the most relevant output
- Only enable auto-rotation in touch mode
- Fix various crashes
* d/control.in: Update libgbm build-dependency
* d/copyright: Update
* d/control.in, d/rules: Enable Pipewire on Debian (but not Ubuntu).
Now that we have Pipewire 0.3 in experimental, we can enable
screencasting and remote desktop support.
* debian/libmutter-7-0.symbols: Update
-- Simon McVittie <smcv@debian.org> Tue, 08 Sep 2020 15:50:11 +0100
mutter (3.37.91-1) experimental; urgency=medium
* New upstream release
- Support unredirecting fullscreen wayland surfaces
- Support area screencasts
- Allow inhibiting remote access
- Drive each monitor by its own frame clock (LP: #1730460)
- Fix copy/paste failures on X11 (LP: #1879968)
- Make window-aliveness checks less aggressive
- Limit mipmap levels when rendering background (LP: #1862308)
- Remove more long-deprecated Clutter APIs
- Support custom keyboard layouts in $XDG_CONFIG_HOME/xkb
- Optimize resource scale computation for wayland fractional scaling
- Support tap-button-map and tap-drag-lock touchpad settings
- Fix wine copy & paste
- Add API to launch trusted wayland clients
- Invalidate offscreen effect cache on video memory purge (LP: #1855757)
* debian: Update package and file names to mutter API version
* debian/control: Bump dependencies to match upstream requirements
* debian/clean: Remove as HOME and XRD are managed now by dh
* debian/copyright: Avoid redundant globbing patterns
* debian/gbp.conf: target upstream/latest branch
* debian/libmutter-7-0.symbols: Update symbols file
* debian/patches: Refresh
* d/p/debian/tests-Tag-closed-transient-no-input-tests-as-flaky.patch:
- Renamed into d/p/debian/tests-Tag-unstable-tests-as-flaky.patch
- Reduced the number of "flaky" tests to the ones time-dependent only
* debian/rules:
- Compute and generate a MUTTER_API_VERSION and replace it everywhere
- Remove XDG_RUNTIME_DIR wrapper workaround
- Don't run tests at all in riscv64
- Don't set again default configuration values (it makes the delta clearer)
- Never ignore test failures in amd64
- Remove test num processes re-configuration
- Run tests in s390x, no failures currently
- Don't test in alpha hppa powerpc sparc64 x32 (Closes: #959415)
* debian/with-temp-xdg-runtime-dir: Dropped, new dh will handle it for us
* debian/watch: Scan for all versions, not just the stable-branch
* debian/*.install: Use dh variable substitution in install files
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 27 Aug 2020 16:39:49 +0100
mutter (3.36.6-1) unstable; urgency=medium
* Team upload
* New upstream release
* Update symbols file
* d/control.in, d/rules: Enable Pipewire on Debian (but not Ubuntu).
Now that we have Pipewire 0.3, we can enable screencasting and remote
desktop support again.
-- Simon McVittie <smcv@debian.org> Thu, 10 Sep 2020 12:46:31 +0100
mutter (3.36.5-1) unstable; urgency=medium
* Team upload
* New upstream release
- Screencast fixes and improvements
- Fix glitches when subsurfaces extend outside the toplevel
- Improve background display in overview workspace switcher
- Fix wine copy & paste
- Plug memory leaks
* Drop patches that were applied upstream
-- Simon McVittie <smcv@debian.org> Thu, 13 Aug 2020 10:19:59 +0100
mutter (3.36.4-1) unstable; urgency=medium
* New upstream stable release (LP: #1887998)
- Fix crash on area screenshots with fractional scaling
- Do not paint textures of fully obscured windows
- Turn off CRTCs as well when enabling DPMS
- Improve selection support
- Use a more appropriate combine function on opaque areas
- Fix remote desktop being broken without screencast session
- Fix popovers disappearing on wayland and HiDPI
- Fixed crashes (LP: #1870867, LP: #1857947)
- Plugged memory leaks
* d/p/screen-cast-Let-the-reason-for-recording-determine-what-t.patch,
d/p/screen-cast-src-Add-flag-to-maybe_record.patch,
d/p/screen-cast-src-Fix-signedness-of-timestamp-field.patch,
d/p/screen-cast-src-Make-record-functions-return-an-error-whe.patch,
d/p/screen-cast-src-Make-the-two-record-vfuncs-more-similarly.patch,
d/p/screen-cast-src-Record-follow-up-frame-after-timeout.patch,
d/p/screen-cast-src-Remove-follow-up-timeout-source-on-disabl.patch,
d/p/screen-cast-src-Use-G_USEC_PER_SEC-instead-of-1000000.patch,
d/p/screen-cast-window-stream-src-Fix-indentation.patch:
- Import more fixes for screencasting and remote desktop
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Fri, 17 Jul 2020 21:12:56 +0200
mutter (3.36.3-1) unstable; urgency=medium
* New upstream release (LP: #1881971)
- Broadcast clipboard/primary offers
- Fix monitor screen cast on X11
- Implement touch-mode detecation for the X11 backend (LP: #1880596)
- Drop external keyboard detection from touch-mode heuristics
- Fix leaked DMA buffers in screencasts
- Fixed crashes
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 03 Jun 2020 23:33:29 +0200
mutter (3.36.2+12+gb425f1153-1) experimental; urgency=medium
* Team upload
* New upstream snapshot from the gnome-3-36 branch
* d/p/backend-x11-Reintroduce-XInitThreads.patch:
Drop patch, applied upstream
-- Simon McVittie <smcv@debian.org> Sat, 30 May 2020 15:12:09 +0100
mutter (3.36.2-3) unstable; urgency=medium
[ Simon McVittie ]
* d/rules, d/with-temp-xdg-runtime-dir: Create temporary XDG_RUNTIME_DIR
debhelper 13.1 creates a temporary XDG_RUNTIME_DIR so we don't have to.
Unfortunately, its absolute path is sufficiently long that the path to
Mutter's Wayland display socket no longer fits in the 108 bytes allowed
by struct sockaddr_un, causing FTBFS when the tests fail. Until this is
fixed, we'll have to create our own XDG_RUNTIME_DIR with a shorter
absolute path.
Wrapping with-temp-xdg-runtime-dir around dh_auto_test doesn't work,
because dh_auto_test will reset XDG_RUNTIME_DIR, so use
meson test --wrapper to wrap with-temp-xdg-runtime-dir around the
individual tests.
(Works around: #961655)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 27 May 2020 13:54:19 +0200
mutter (3.36.2-2) unstable; urgency=medium
[ Daniel van Vugt ]
* d/p/backend-x11-Reintroduce-XInitThreads.patch:
Fix a very common crash when running in X11 (LP: #1877075)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 26 May 2020 21:41:05 +0200
mutter (3.36.2-1) unstable; urgency=medium
* Team upload
[ Simon McVittie ]
* New upstream stable release
- Fix FTBFS with Wayland disabled (non-Linux kernels)
- X11 copy/paste/selection fixes (LP: #1852183)
- Fix freeze with some DisplayLink devices
- Fix a memory leak
- Synchronize shadows to server-side decorations
- Fix overview key on X11 when using multiple keyboard layouts
- Fix painting the redraw clip with the damage region
- Fix capturing with multiple stage views
- Fix screencasting of non-maximized windows (LP: #1873942)
- Various misc fixes and cleanups (LP: #1874818)
- Update translation: de
[ Marco Trevisan (Treviño) ]
* debian/libmutter-6-0.symbols: Update
* debian/rules: Ignore build failures on riscv64
-- Simon McVittie <smcv@debian.org> Fri, 01 May 2020 11:26:55 +0100
mutter (3.36.1+git20200419-1) unstable; urgency=medium
* Team upload
[ Simon McVittie ]
* New upstream snapshot from gnome-3-36 branch (3.36.1-42-gda9eb4718)
- Fix trackball button scrolling
- Fix tiled (MST) displays
- Copy/paste fixes, particularly for large images and incremental
transfers
- Fall back to closed laptop lid configuration if no other available
(LP: #1793496)
[ Jeremy Bicha ]
* Drop obsolete dh_strip dbgsym migration rule
* Bump debhelper-compat to 13
- dh_missing --fail-missing is the default
- dh_auto_test has several default improvements
- dh_autoreconf isn't needed with meson
* debian/watch: Only watch for stable releases
-- Simon McVittie <smcv@debian.org> Tue, 21 Apr 2020 13:46:42 +0100
mutter (3.36.1-4) unstable; urgency=medium
* Team upload
* Merge changelog from unstable
* Upload to unstable (starts transition: #954422)
* Update to upstream gnome-3-36 branch, commit 3.36.1-17-g9a2471db4
- Fix caps-lock state becoming confused on VT switch
* d/gbp.conf: Follow upstream/3.36.x branch
-- Simon McVittie <smcv@debian.org> Fri, 10 Apr 2020 17:56:10 +0100
mutter (3.34.4-1) unstable; urgency=medium
* Team upload
* d/gbp.conf: Follow debian/unstable branch
* New upstream release
* d/patches: Apply post-release fixes up to 3.34.4-5-g2709a4ffb
* Standards-Version: 4.5.0 (no changes required)
-- Simon McVittie <smcv@debian.org> Tue, 25 Feb 2020 16:26:10 +0000
mutter (3.36.1-3) experimental; urgency=medium
* Team upload
* Update to upstream gnome-3-36 branch, commit 3.36.1-16-gdb164bcfa
- Fix a crash during X11 drag-and-drop, for example when dragging
a JPEG file onto GIMP's splash screen
- Fix a crash in X11 input device handling
- Translate coordinates of absolute input devices for rotated screens
-- Simon McVittie <smcv@debian.org> Wed, 08 Apr 2020 11:18:37 +0100
mutter (3.36.1-2) experimental; urgency=medium
* Team upload
* Standards-Version: 4.5.0 (no changes required)
* d/copyright: Consolidate entries and update
* Update to upstream gnome-3-36 branch, commit 3.36.1-13-gbc47f0a1a
-- Simon McVittie <smcv@debian.org> Tue, 07 Apr 2020 18:27:45 +0100
mutter (3.36.1-1) experimental; urgency=medium
* Team upload
* New upstream release
* d/copyright: Update
* Refresh patches
* Update symbols file.
Note that this includes ABI breaks: some symbols that are only used
internally have disappeared from mutter's private fork of Clutter and
Cogl. The only user of this version of mutter is GNOME Shell, which
does not use these symbols.
* d/patches: Update from gnome-3-36 branch up to 3.36.1-8-ge339a57dd
* d/p/clutter-stage-Don-t-assume-stage-relayouts-reallocate-eve.patch:
Add patch proposed upstream to fix a gnome-shell crash with the
"Native window placement" extension.
-- Simon McVittie <smcv@debian.org> Fri, 03 Apr 2020 14:23:52 +0100
mutter (3.36.0-2) experimental; urgency=medium
* control: Build against gnome-desktop 3.36 and break old gnome-shell. So we
get dependencies on libgnome-desktop-3-19. Otherwise we get two different
versions of gnome-desktop loaded into GNOME Shell, which crashes. Break
old gnome-shell for the inverse reason - it needs to be upgraded otherwise
we get the mismatch the other way around.
-- Iain Lane <laney@debian.org> Mon, 16 Mar 2020 13:20:44 +0000
mutter (3.36.0-1) experimental; urgency=medium
* New upstream release
+ Fix placement of popup windows in multi-monitor setups
+ Fix invisible mouse cursor on some hardware
+ Updated translations
-- Andre Moreira Magalhaes <andre@endlessm.com> Fri, 13 Mar 2020 19:36:29 +0000
mutter (3.35.92-1) experimental; urgency=medium
* New upstream release
+ Add side channel for starting required X11 services
+ Allow remote desktop services to inhibit animations
+ Avoid flicker when (un)redirecting windows
+ Fix clipping glitches in long text entries
+ Fix visibility of initially hidden windows
+ Implement scaled/transformed hardware cursors
+ Let BindConstraints update the preferred size
+ Make check-alive timeouts configurable
+ Make each stage view correspond to a single CRTC
+ Make Xwayland startup asynchronous
+ Ping windows on every window focus
+ Remove overhead from hot code paths
+ Support synchronized wayland popup moving
+ Update screen-cast code to PipeWire 0.3 API
+ Use DMA buffers for screencasting if possible
* d/p/*: Rebase
* rules: Disable remote-desktop temporarily. This now requires pipewire 0.3
which is not packaged yet and needs to be worked on
* control: Bump wayland-protocols dep to 1.19 per meson.build
* debian/libmutter-6-0.symbols: Add new symbols for this release. One symbol
which was introduced in .90 was dropped; -6's ABI is not stable yet.
-- Iain Lane <laney@debian.org> Tue, 03 Mar 2020 16:34:25 +0000
mutter (3.35.91-1) experimental; urgency=medium
* New upstream release
- Fix clipboard handling when an app provides multiple types (LP: #1852183)
- Fixed flickers around windows in Wayland sessions (LP: #1751593)
- Fixed white Background when using scaling in vmware (LP: #1825842)
- Fixed crash in meta_surface_actor_get_texture() (LP: #1859259)
- Fixed Subpixel font rendering in shell panels (LP: #1836700)
- Fixed bug causing workspaces not to be preserved on restart
under X11 (LP :#1819890)
- Using graphene (insted of cogl) for handling various primitives
- Honor accelerometer orientation on monitor config changes
- Make the cursor renderer use the transactional KMS API
- Lots of crash fixes and cleanups
* debian/patches:
- refreshed
- d/p/EGL-Include-EGL-eglmesaext.h.patch:
+ dropped, merged upstream
* debian/control:
- build-depend on graphene (1.9.3)
- Add libgraphene-1.0-dev as libmutter-6-dev dependency
- bump build dependency on meson 0.50
- bump build dependency on libinput 1.7
- bump package name to mutter-6
* d/libmutter-6-0.symbols: update symbols
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 24 Feb 2020 17:42:35 +0000
mutter (3.34.3-1) unstable; urgency=medium
* New upstream release
+ Fix window recording on HiDPI
+ Fix top-left pixel being insensitive to clicks (LP: #1849135)
-- Iain Lane <laney@debian.org> Mon, 06 Jan 2020 13:39:48 +0000
mutter (3.34.2-2) unstable; urgency=medium
* d/p/EGL-Include-EGL-eglmesaext.h.patch: Cherry pick from master. This
fixes the generated EGL includes for the move of exlext.h from mesa to
libglvnd, which has just happened in Debian.
-- Iain Lane <laney@debian.org> Sun, 22 Dec 2019 15:42:09 +0000
mutter (3.34.2-1) unstable; urgency=medium
* Team upload
* New upstream release
- d/libmutter-5-0.symbols: Update
- d/copyright: Update
* d/gbp.conf: Use upstream/3.34.x branch
* Remove obsolete Lintian override
* Standards-Version: 4.4.1 (no changes required)
* d/tests: Use correct compiler for proposed autopkgtest
cross-architecture testing support
-- Simon McVittie <smcv@debian.org> Mon, 16 Dec 2019 16:55:47 +0000
mutter (3.34.1+git20191107-1) unstable; urgency=high
* New upstream snapshot
- Fixes a regression from the previous upload, which caused a hang when
interacting with the desktop icons.
* x11-Update-X11-focus-before-updating-MetaDisplay-focus.patch: Drop. This
was a cherrry-pick that is included in this snapshot.
* debian/libmutter-5-0.symbols: Add new symbol in this snapshot
-- Iain Lane <laney@debian.org> Thu, 07 Nov 2019 11:10:59 +0000
mutter (3.34.1+git20191022-2) unstable; urgency=medium
* debian/patches: Update X11 focus before display focus:
- Fixes an infinite loop causing an hang when showing the "application is
not responding" dialog (LP: #1845302)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Fri, 25 Oct 2019 17:56:43 +0100
mutter (3.34.1+git20191022-1) unstable; urgency=medium
* New upstream snapshot release
+ Fix night mode in wayland session (LP: #1847551)
+ Don't emit key-focus-out events on destroyed actors (LP: #1848119)
+ Fix an headers syntax error (LP: #1841709)
+ backends: Update inhibited state for the monitor and respect that state
+ clutter-backend-x11: Don't push keymap events to clutter
+ Fix drag and drop for applications in wayland
+ Avoid X11 roundtrips on underscanning checks
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 23 Oct 2019 10:53:23 +0100
mutter (3.34.1-3) unstable; urgency=medium
* Bump meson test timeout multiplier from 4 to 6 for armel
-- Jeremy Bicha <jbicha@debian.org> Sun, 20 Oct 2019 22:48:29 -0400
mutter (3.34.1-1) unstable; urgency=medium
* New upstream release
+ Fix focusing of Java applications (LP: #1847184)
+ Fix freeze of pointer event delivery on X11
+ Fix initial view perspective
+ Fix memory leak when using implicit animations
+ Fix _NET_ACTIVE_WINDOW emission
+ Fix numlock state for native backend (LP: #1845031)
+ Fix scaling of DND surface actors
+ Fix scaling of stylus input coordinates with HiDPI
+ Fix screenshots and window animations when scaled
+ Fix startup of X11 session services on wayland
+ kms: Predict state changes when processing update (LP: #1847044)
+ Optimize blitting of untransformed offscreen stage views
+ Re-enable coredumps when capabilities are set
* Drop several upstream backports which are now applied
- d/p/build-Compile-with-ffloat-store-on-x86-32-bit.patch
- d/p/clutter-actor-Cancel-delayed-timelines-on-removal.patch
- d/p/clutter-timeline-Don-t-emit-paused-signal-on-delayed-time.patch
- d/p/clutter-timeline-Use-a-function-to-cancel-the-delay-timeo.patch
- d/p/core-Split-x11-display-initialization-in-2-signals.patch
- d/p/x11-Minor-refactor-of-input-focus-handling-code.patch
- d/p/x11-Use-the-currently-focused-X-window-for-_NET_ACTIVE_WI.patch
* rules: Skip tests when DEB_BUILD_OPTIONS=nocheck is set
-- Iain Lane <laney@debian.org> Wed, 09 Oct 2019 11:17:08 +0100
mutter (3.34.0-4) unstable; urgency=medium
* Team upload.
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 30 Sep 2019 13:26:44 +0200
mutter (3.34.0-3) experimental; urgency=medium
* d/p/clutter-*: Cherry-pick from upstream to fix a crash. During
animations, which was particularly bad when using Dash-to-Dock in
auto-hide mode. (LP: #1841794)
-- Iain Lane <laney@debian.org> Fri, 20 Sep 2019 16:08:03 +0100
mutter (3.34.0-2) experimental; urgency=medium
* d/p/core-Split-x11-display-initialization-in-2-signals.patch: Cherry-pick.
Fixes starting up of gsd-xsettings on Wayland. (LP: #1843107)
-- Iain Lane <laney@debian.org> Fri, 13 Sep 2019 11:10:15 +0100
mutter (3.34.0-1) experimental; urgency=medium
[ Simon McVittie ]
* libmutter-5-0: Add Breaks on apparmor (<< 2.13.3-5~).
This ensures that #935058 has been fixed, so X11 apps with the X
abstraction can read /run/user/1000/.mutter-Xwaylandauth.*
(Closes: #939736)
* d/tests: Add a superficial build-test for the -dev package.
I'm deliberately not testing the included forks of clutter and cogl here
since those are an implementation detail of Mutter.
* Use default libexecdir.
The version of the FHS used in Debian has supported this since
Policy 4.1.5.
* d/rules: Use a temporary home directory for build-time tests
* d/clean: Clean up temporary home directory and XDG_RUNTIME_DIR
* Standards-Version: 4.4.0 (no changes required)
* Rewrite package descriptions based on the upstream README.
This removes the strange breakfast cereal references, and reframes
Mutter as primarily a shared library used by GNOME Shell and only
secondarily a standalone window manager, matching its real upstream
maintenance status.
[ Iain Lane ]
* d/p/x11*: Cherry pick fixes from upstream to fix focus order on X11
(LP: #1842971)
* New upstream release
+ Fix xdg-output v3 support
+ Fix crash when changing decoration state
+ Add and remove connectors on hot-plug
* d/p/*: Drop upstream cherry-picks
* d/p/build-Compile-with-ffloat-store-on-x86-32-bit.patch: Take from MR 785.
This fixes the testsuite on i386, which is broken because of the use of
x87 extended precision introducing rounding errors.
-- Iain Lane <laney@debian.org> Tue, 10 Sep 2019 11:46:06 +0100
mutter (3.33.92-1) experimental; urgency=medium
* New upstream release
+ Add additional sysprof trace points
+ Add meta_window_actor_get_image()
+ Fix lost keyboard focus after DND
+ Fix position of drag surfaces
+ Implement geometric picking
+ Implement subsurface.place_below() for parents
+ Misc. pointer a11y improvements
+ Remove GLX "threaded swap wait" used on Nvidia
+ Restore inhibit shortcut for overlay key
+ Revert faulty optimization from !719
+ Turn MetaShapedTexture into a ClutterContent implementation
* control: Bump libxi-dev per upstream
* d/p/*: Refresh. In particular synaptics-support.patch needed rebasing.
Hopefully this can be dropped soon.
* d/p: Sync with upstream as of 5111e339487b4bfb4b90b3281d57b1ee4cbf7f95
* d/libmutter-5-0.symbols: Refresh up to 3.33.92. There are dropped symbols
here. As a reminder, libmutter5 is not considered ABI stable until 3.34.0
-- Iain Lane <laney@debian.org> Thu, 05 Sep 2019 15:25:59 +0100
mutter (3.33.91-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* Update dh_girepository argument from mutter-4 to mutter-5
[ Iain Lane ]
* New upstream release
+ Fix primary selection copy and paste between X11 and wayland
+ Improve monitor hotplug support
+ Remove a source of frame skips
+ Fix windows being lowered after unmaximizing with double click
+ Remove Clutter API for global grabs
+ Improve processing of incompressible events
+ Add xdg-output v3 support
* control: Bump BDs per upstream
* debian/libmutter-5-0.symbols: Update for new/dropped symbols.
The ABI of libmutter-5-0 is *not* considered stable until the final
release.
-- Iain Lane <laney@debian.org> Fri, 23 Aug 2019 15:15:50 +0100
mutter (3.33.90-2) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* debian/rules: Use more verbose logging, printing failure output
[ Iain Lane ]
* tests-Tag-closed-transient-no-input-tests-as-flaky.patch, rules: Tag some
tests as 'flaky' and run them non-fatally.
* rules: Add mips64el to mips arches to not run tests on
-- Iain Lane <laney@debian.org> Wed, 14 Aug 2019 16:26:24 +0100
mutter (3.33.90-1) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* New upstream release
+ Avoid repainting covered areas
+ Start Xwayland on demand
+ Expose layout manager properties to transitions
* debian/patches: Refresh
[ Simon McVittie ]
* d/libmutter-5-0.bug-control: Include GL drivers in bug reports
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 13 Aug 2019 09:58:27 +0100
mutter (3.33.4-1) experimental; urgency=medium
* New upstream release
+ Add API to reorder workspaces
+ Add a Sysprof-based profiler
+ Add initial KMS transactional support
+ Add xdg-output v2 support
+ Consolidate frame throttling
+ Defer actor allocation till shown
+ Discard page flip retries on hotplug
+ Don't emit ::size-changed when only position changed
+ Don't use grab modifiers when shortcuts are inhibited
+ Expose workspace layout properties
+ Fix background corruption on Nvidia after resuming from suspend (LP:
#1809407)
+ Fix black shadows when using fractional scaling
+ Fix modifier-drag on wayland subsurfaces
+ Fix running X11 applications with sudo under wayland
+ Fix setting blank cursor under wayland
+ Fix stuttering due to unchanged power save mode notifications
+ Fix text selection color rendering
+ Handle returning from fullscreen/maximization better
+ Honor startup sequence workspace on wayland
+ Implement locate-pointer accessibility feature
+ Implement mouse accessibility
+ Implement toggle-keys notification
+ Improve finding new focus window when the old one is closed
+ Improve screencast support on multi-monitor systems
+ Make picking a new focus window more reliable
+ Only emit 'grab-op-end` signal after dropping grabs
+ Only grab the locate-pointer key when necessary
+ Pixel-align OpenGL cursors
+ Prepare for running Xwayland on demand
+ Relax "xwayland-allow-grabs" setting
+ Restore DRM format fallbacks
+ Try to use primary GPU for copy instead of glReadPixels
+ Unset pointer focus when the cursor is hidden
* debian/control: Update dependencies per meson.build
* debian/rules: Disable profiler.
We need to split sysprof into a library before we can enable this, so
that all users don't get headers / the profiler application installed
* Drop patches applied upstream
- window-x11-Focus-a-window-in-the-active-workspace-as-take.patch
- metatest-Dispatch-the-destruction-instead-of-sleeping-aft.patch
- debian/Revert-meson-Bump-meson-requirement-to-0.50.0.patch
* cogl-tests-Only-install-run-tests.sh-when-building-instal.patch:
Cherry-pick to fix building without installed tests
* build-Bump-API-version-automatically-each-development-cyc.patch:
Cherry-pick - bump ABI
* Refresh patches
* Bump to libmutter-5 and update symbols
* BD on a gnome-desktop that provides libgnome-desktop-3-18
-- Iain Lane <laney@debian.org> Tue, 30 Jul 2019 18:16:52 +0100
mutter (3.32.2+git20190711-2) experimental; urgency=medium
* d/p/window-x11-Focus-a-window-in-the-active-workspace-as-take.patch:
- Fix possible crash on closing Java dialogs (Related to LP: #1834583)
d/p/metatest-Dispatch-the-destruction-instead-of-sleeping-aft.patch:
- Tests: don't wait too much after window destruction, causing failures
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Fri, 19 Jul 2019 16:55:02 +0100
mutter (3.32.2+git20190711-1) experimental; urgency=medium
* New upstream snapshot up to commit ccab0f470
- Fix No-input WM_TAKE_FOCUS dialogs causing GNOME Shell to hang
and ensure we always have a window focused if we have a valid
focus canididate (LP: #1834583)
- Don't crash on shell close / reload under X11 when releasing
surface actor display resources (LP: #1826918)
* d/p/debian/Revert-meson-Bump-meson-requirement-to-0.50.0.patch:
- Revert dependency on meson 0.50.0
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Fri, 12 Jul 2019 14:11:53 +0100
mutter (3.32.2+git20190626-1) experimental; urgency=medium
* New upstream snapshot release:
- Don't crash when try to focus unfocusable windows (LP: #1791574)
- Valgrind use-after-free warning fixes in the native backend
- renderer/native: add missing eglTerminate in EGLDevice error path
- Fix Alt+F2 -> restart to work again in X11
- window: Emit an error and return when trying to activate an unmanaged
(LP: #1827401)
- Setting cursor to "none" doesn't hide it under Wayland
- Fix broken selected text in entries
- Tests memory fixes
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 27 Jun 2019 13:02:32 +0100
mutter (3.32.2-1) experimental; urgency=medium
* New upstream release
* d/p/clutter-evdev-disable-mousekeys-with-Numlock-ON.patch,
d/p/clutter-x11-disable-mousekeys-with-Numlock-ON.patch,
d/p/compositor-Destroy-window-actors-list-on-destruction.patch,
d/p/compositor-Disconnect-from-stage-signals-on-destruction.patch,
d/p/input-settings-Use-0-initialized-struct-for-kbd-a11y.patch:
- Dropped, merged upstream.
* d/p/meson-add-back-default_driver-option.patch:
- Refreshed
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 21 May 2019 12:31:38 +0100
mutter (3.32.1-2) experimental; urgency=medium
* Cherry-pick patches from upstream gnome-3-32 branch:
- compositor-Destroy-window-actors-list-on-destruction.patch,
compositor-Disconnect-from-stage-signals-on-destruction.patch: Fix crash
when exiting. (LP: #1813716)
- 0-initialize a struct we'll be memcmp()ing.
* Reorder patch series so upstream patches come first (no conflicts, no
refreshing required).
-- Iain Lane <laney@debian.org> Wed, 01 May 2019 09:34:30 +0100
mutter (3.32.1-1) experimental; urgency=medium
* New upstream release
* debian/patches: disable mousekeys with Numlock ON to match the
documentation (cherry picked from the 3.32 branch)
-- Laurent Bigonville <bigon@debian.org> Mon, 22 Apr 2019 21:57:33 +0200
mutter (3.32.0+git20190410-2) experimental; urgency=medium
[ Gunnar Hjalmarsson ]
* Add gnome-control-center-data to Build-Depends. This package provides
gnome-keybindings.{its,loc}. These are needed if the translation template
is regenerated at build-time to translate the key bindings defined in
data/50-*.xml. (LP: #1823722)
-- Iain Lane <laney@debian.org> Sun, 14 Apr 2019 11:11:22 +0100
mutter (3.32.0+git20190410-1) experimental; urgency=medium
* New upstream snapshot up to commit
b2d0184c6efa164ad5dd7a2ca8b10cf13acf5b4c. Fixes Launchpad bugs:
+ GNOME Shell task bar menus not updated with external monitor primary and
laptop screen fractionally scaled (LP: #1803319)
+ (In Xorg sessions only) apps launched from gnome shell do not get input
focus (LP: #1817924)
+ Touch input is offset with two screens (even appearing on the wrong
screen) in Xorg sessions (LP: #1821933)
+ gnome-shell crashed with SIGABRT. Assertion failure in
meta_gpu_kms_flip_crtc: "monitor_manager->power_save_mode ==
META_POWER_SAVE_ON" (LP: #1820331)
* debian/patches/various: Drop upstream cherry-picks. We had cherry-picked
the stable branch into Debian patches in the previous upload, but that
would get out of hand if we carried on. Instead we are using a tarball
snapshot. So drop the cherry-picks.
* Update symbols. A typo was fixed in a public symbol. This is an ABI break,
but upstream didn't consider this worthy of a SONAME change. A codesearch
/ github / web search doesn't reveal any external users either, so we will
eat this to avoid another transition.
* Use debhelper-compat 12 and BD on dh-sequence-{gnome,gir}. We were missing
a direct BD on the providers. Thanks, Lintian.
-- Iain Lane <laney@debian.org> Wed, 10 Apr 2019 16:36:23 +0100
mutter (3.32.0-1) experimental; urgency=medium
* New upstream release
+ Fix deadlock when cancelling a theme sound
+ Stop swizzling BGRA buffers (bye-bye inverted colors in screenshots and
animations)
* debian/patches/*: Update to master at
318164779c07c12c5acfcddde7834980c7521aac. These are patches which will go
into 3.32.1. Also refresh all other patches.
* debian/control: Build-Depend on dbus for tests. We run the tests under
`dbus-run-session`. Apparently whatever waas pulling this in before
stopped doing that, so BD on it directly.
-- Iain Lane <laney@debian.org> Tue, 12 Mar 2019 12:45:14 +0000
mutter (3.31.92-1) experimental; urgency=medium
* New upstream release
+ Add back support for system-wide monitor configurations
+ Add cursor-mode support to window screencasting
+ Add flag parameter to grab accelerator API
+ Add fractional scaling support
+ Consider remapped keys when guessing keycode from keysym
+ Don't disable page flips after temporary failues
+ Fix crash when using "restore shortcuts" without focus window
+ Fix flicker of apps that use multiple SHM buffers
+ Fix infinite loop in EDID matching
+ Improve redraw performance
+ Reuse old CRTC if possible to avoid flicker on hotplug
+ Stop turning on-screen-keyboard off on focus changes
+ wayland: Don't maximize windows if minimum size is too big
+ wayland: Don't resetin text-input state prematurely
* Drop old cherry-picks which are upstream, refresh other patches.
Dropped:
debian/patches/Update-Basque-translation.patch
debian/patches/Update-French-translation.patch
* d/p/sound-player-Don-t-deadlock-in-finish_cb.patch: Cherry-pick.
This fixes a deadlock bug when scrolling over the volume indicator. (LP:
#1817546)
* debian/control: Breaks gnome-settings-daemon << 3.31.91. Altering the
GrabAccelerator API will break key grabbing under g-s-d versions which
don't use the new parameter.
* debian/libmutter-4-0.symbols: Update. Upstream dropped a load of
deprecated functions. This obviously is an ABI break, but we don't
consider the ABI stable until the final release. Also some additions.
-- Iain Lane <laney@debian.org> Wed, 06 Mar 2019 13:44:08 +0000
mutter (3.31.90-2) experimental; urgency=medium
* control: BD on dmz-cursor-theme instead of adwaita-icon-theme for tests.
We actually only need *a* cursor theme, not the full icon theme.
-- Iain Lane <laney@debian.org> Thu, 21 Feb 2019 13:52:05 +0000
mutter (3.31.90-1) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* New upstream release
- Fix crash in dual monitor setup and gdm activation (LP: #1790525,
LP: #1795774)
- Fix regression causing one of the external displays to be off sometimes
(LP: #1772811)
* debian/rules:
- Compile using meson, autotools has been removed upstream
- Ignore test failures in s390x
- tests: increase meson tests timeout or they will fail in some archs,
using meson test to run them
- Explicitly enable Wayland EGL stream
* debian/control:
- Build depend on meson and pkg-config
- Build depend on gsettings-desktop-schemas-dev (>= 3.31.0)
- Build depend on xserver-xorg-core in linux (as it ships 'cvt')
- Build depend on libnvidia-egl-wayland-dev in linux per EGL stream support
- Build depend on packages needed for running tests:
+ adwaita-icon-theme
+ at-spi2-core
+ gnome-settings-daemon-dev, gnome-settings-daemon-common
+ XWayland (in linux)
- Set build dependency versions on libgbm-dev, libinput-dev, libxi-dev and
libxcomposite-dev to match upstream required versions
- libmutter-4-dev depends on libgles2 development files,
- removed breaks as per SONAME change
* debian/*: SONAME 3 -> 4
* debian/libmutter-4-0.symbols: Add new symbols, remove deprecated ones
* debian/libmutter-4-0.lintian-overrides:
- ignore library-not-linked-against-libc for libmutter-cogl-gles2
* d/p/Sync-to-the-hardware-refresh-rate-not-just-60.00Hz.patch,
d/p/clutter-Avoid-rounding-compensation-when-invalidating-2D-.patch,
d/p/clutter-Fix-offscreen-effect-painting-of-clones.patch,
d/p/clutter-offscreen-effect-Disable-if-no-texture.patch,
d/p/cogl-auto-texture-Avoid-a-double-free-crash.patch,
d/p/screen-cast-Fix-monitor-recording-on-HiDPI.patch,
d/p/tests-Don-t-check-pixels-outside-actor-allocation.patch:
- dropped as applied upstream
* d/p/bgo768531_workaround-startup-notifications.patch:
- not needed anymore as per startup notifications upstream refactory
* d/p/debian/skip-texture-test.patch:
- removed since the test now passes in all tested archs
* d/p/debian/synaptics-support.patch,
d/p/debian/skip-texture-test.patch,
d/p/theme-load-icons-as-Gtk-does-with-fallback-and-RTL-suppor.patch,
d/p/theme-use-gtk_render_icon_suface-to-paint-button-icon.patch:
- refreshed
* d/p/meson-add-back-default_driver-option.patch:
- Add option to choose at build time the default cogl driver
[ Iain Lane ]
* debian/rules: No need to remove .la files in meson
-- Iain Lane <laney@debian.org> Wed, 20 Feb 2019 17:07:10 +0000
mutter (3.30.2-6) unstable; urgency=medium
* Team upload
* Update to upstream gnome-3-30 branch at 3.30.2-8-g7260ba5db
- Avoid rendering beyond the bounds of a 2D actor
- Fix screencasting/monitor recording on HiDPI
- Fix a regression in 3.30.1 that sometimes turned off secondary displays
- Update translations: fr, eu
-- Simon McVittie <smcv@debian.org> Wed, 06 Feb 2019 10:02:14 +0000
mutter (3.30.2-5) unstable; urgency=medium
* d/p/clutter-Avoid-rounding-compensation-when-invalidating-2D-.patch,
d/p/clutter-Fix-offscreen-effect-painting-of-clones.patch:
- Fix offscreen-effect painting of clones in zoom mode (LP: #1767648,
LP: #1779615)
* d/p/cogl-auto-texture-Avoid-a-double-free-crash.patch,
d/p/clutter-offscreen-effect-Disable-if-no-texture.patch:
- Fix crash in dual monitor setup and gdm activation (LP: #1790525,
LP: #1795774)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 24 Jan 2019 18:00:14 +0000
mutter (3.30.2-4) unstable; urgency=medium
* Add -Wl,-O1 to our LDFLAGS
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Thu, 27 Dec 2018 11:10:51 -0500
mutter (3.30.2-3) unstable; urgency=medium
* control: Depend on g-s-d-common instead of g-s-d. We only need the
schemas.
-- Iain Lane <laney@debian.org> Thu, 13 Dec 2018 16:45:30 +0000
mutter (3.30.2-2) unstable; urgency=medium
[ Daniel van Vugt ]
* Add Sync-to-the-hardware-refresh-rate-not-just-60.00Hz.patch to render at
the full monitor refresh rate (LP: #1763892).
[ Jeremy Bicha ]
* debian/libmutter-3-0.symbols: Mark a Wacom symbol as linux-any
[ Patrice Duroux ]
* add back lost NEWS (Closes: #914942)
-- Iain Lane <laney@debian.org> Thu, 29 Nov 2018 17:29:57 +0000
mutter (3.30.2-1) unstable; urgency=medium
* Team upload
* New upstream release
- Drop cherry-picked patches
-- Simon McVittie <smcv@debian.org> Thu, 15 Nov 2018 09:11:25 +0000
mutter (3.30.1-4) unstable; urgency=medium
[ Andrea Azzarone ]
* d/p/x11-close-display-in-an-idle-function.patch:
- close the x11 display in an idle function. This fixes a crash when running
'gnome-shell --replace'.
[ Daniel van Vugt ]
* Drop clutter-Smooth-out-master-clock-to-smooth-visuals.patch: It was
abandoned upstream, but also seems to be limiting refresh rates in
Xorg sessions to 60Hz when previously they were unlimited (LP: #1763892).
-- Andrea Azzarone <andrea.azzarone@canonical.com> Mon, 12 Nov 2018 11:53:37 +0000
mutter (3.30.1-3) unstable; urgency=medium
* Team upload
[ Jeremy Bicha ]
* Only depend on libegl1-mesa-dev on Linux
* debian/libmutter-3-0.symbols: Mark many symbols as Linux-only
[ Simon McVittie ]
* debian/patches: Update to upstream gnome-3-30 branch at commit
3.30.1-8-g1abab3fe2
- In particular this fixes two memory leaks introduced in 3.30.1
(Closes: #913028)
-- Simon McVittie <smcv@debian.org> Tue, 06 Nov 2018 09:33:22 +0000
mutter (3.30.1-2) unstable; urgency=medium
* Only Build-Depend on libdrm-dev and libgbm-dev on Linux
-- Jeremy Bicha <jbicha@debian.org> Sun, 14 Oct 2018 13:46:58 -0400
mutter (3.30.1-1) unstable; urgency=medium
* New upstream release (LP: #1796772)
* Drop cherry-picked patches applied in new release
* debian/libmutter-3-0.symbols: Add new symbols
* Don't run the build tests on mips & mipsel since they fail
and time out too much.
* Drop skip-failing-tests.patch:
- These tests seem to run ok except on mips and mipsel
-- Jeremy Bicha <jbicha@debian.org> Mon, 08 Oct 2018 20:24:51 -0400
mutter (3.30.0-6) unstable; urgency=medium
* Team upload
[ Simon McVittie ]
* Update to upstream git master branch at commit 3.30.0-28-g95649fd2b.
According to upstream, all of this should be in 3.30.1.
- In particular this fixes a crash when combining a touchscreen
and graphics tablet (Closes: #910370, #908153, LP: #1788483)
* d/libmutter-3-0.symbols:
- Ignore removal of private function meta_input_device_is_trackball()
- Add meta_region_scale_double()
[ Jeremy Bicha ]
* Modify debian/skip-failing-tests.patch:
- Go back to skipping the actor-shader-effect-test since it's flaky
(LP: #1795556)
-- Simon McVittie <smcv@debian.org> Mon, 08 Oct 2018 07:53:09 +0100
mutter (3.30.0-5) unstable; urgency=medium
* Restore debian/skip-failing-tests-325.patch:
- The test still fails on mips
-- Jeremy Bicha <jbicha@debian.org> Tue, 02 Oct 2018 20:51:51 -0400
mutter (3.30.0-4) unstable; urgency=medium
[ Simon McVittie ]
* Try again to put all the changes since 3.30.0-2 in their correct
debian/changelog entries
[ Jeremy Bicha ]
* Drop 2 patches that no longer seem needed:
- debian/skip-failing-tests.patch
- debian/skip-failing-tests-325.patch
* Use "xvfb-run -a" instead of just xvfb-run for build tests
-- Jeremy Bicha <jbicha@debian.org> Sat, 29 Sep 2018 12:03:42 -0400
mutter (3.30.0-3) unstable; urgency=medium
* Team upload
[ Jeremy Bicha ]
* Add debian/skip-texture-test.patch:
- Skip the texture test since it fails on several architectures
* Don't ignore build test failures
* Update debian/gbp.conf
[ Laurent Bigonville ]
* debian/rules: Enable gles2 support (Closes: #883307)
- Use gles2 by default on armel and armhf
* debian/control.in: Drop libcogl-dev build-dependency now that we
are using an embedded version of it
[ Simon McVittie ]
* d/p/window-unmanage-dialog-when-clearing-transient_for.patch,
d/p/actor-Fix-logic-error-in-determining-terminal-effect-for-.patch,
d/p/actor-Always-use-get_paint_volume-override-for-active-eff.patch,
d/p/actor-Also-recompute-paint-volume-if-we-recently-dropped-.patch,
d/p/compositor-Skip-windows-not-visible-to-the-compositor.patch,
d/p/wayland-No-xdg-output-events-without-a-logical-monitor.patch:
Cherry-pick the same changes from upstream git master that have been
applied to the upstream gnome-3-28 branch
- In particular the last of those patches should fix a crash
on gnome-shell startup (Closes: #909243)
-- Simon McVittie <smcv@debian.org> Fri, 28 Sep 2018 10:48:08 +0100
mutter (3.30.0-2) unstable; urgency=medium
[ Jeremy Bicha ]
* Build with remote desktop support except on Ubuntu.
Note that this feature requires gnome-remote-desktop to be installed (not
available in Debian yet).
Ubuntu will need pipewire to be promoted to main to enable this.
[ Laurent Bigonville ]
* Only enable the remote desktop feature on linux architectures
* debian/libmutter-3-0.symbols: Add the newly exported symbols for the
remote desktop feature
-- Laurent Bigonville <bigon@debian.org> Wed, 26 Sep 2018 08:34:14 +0200
mutter (3.30.0-1) unstable; urgency=medium
[ Didier Roche ]
* New upstream release:
- Updated translations
[ Iain Lane ]
* Merge experimental branch back into master and update references to it
accordingly. This upload is going to unstable.
-- Didier Roche <didrocks@ubuntu.com> Wed, 05 Sep 2018 11:30:26 +0100
mutter (3.29.92-1) experimental; urgency=medium
* Team upload
[ Marco Trevisan (Treviño) ]
* New upstream development release
- Fix a crash when drmModeGetResources() fails, for example when
using Wayland on Nvidia hardware (Closes: #900002)
* Rebase patch series
* d/p/renderer-native-Check-calculated-transform-when-creating-.patch:
- dropped as applied upstream
[ Simon McVittie ]
* Standards-Version: 4.2.1 (no changes required)
* Update debian/libmutter-3-0.symbols
-- Simon McVittie <smcv@debian.org> Thu, 30 Aug 2018 08:45:01 +0100
mutter (3.29.91-1) experimental; urgency=medium
* Team upload
* New upstream development release
* Update wayland-protocols build-dependency to 1.16
* d/copyright: Update
* Rebase patch series
* d/*.install: Sort file lists (wrap-and-sort -a)
* Normalize package lists with wrap-and-sort -a
* d/control: Normalize package stanza order with wrap-and-sort -abk
* Standards-Version: 4.2.0 (no changes required)
* d/libmutter-3-0.symbols: Update
* d/rules: Tell dh_shlibdeps about our private libraries
-- Simon McVittie <smcv@debian.org> Mon, 20 Aug 2018 21:17:31 +0100
mutter (3.29.90-2) experimental; urgency=medium
* Team upload
* Build-depend on GLib 2.57.2 for the new approach to overriding
GSettings per desktop
* d/p/clutter-actor-Inherit-clone-branch-depth-from-parent.patch,
d/p/Updated-Slovenian-translation.patch,
d/p/Updated-Slovenian-translation-1.patch:
Update to upstream 3.29.90-3-ga87c447b7
* d/p/renderer-native-Check-calculated-transform-when-creating-.patch:
Apply proposed patch to fix a regression with rotated screens
(Closes: #905363)
* d/gbp.conf: Don't number patches
-- Simon McVittie <smcv@debian.org> Sat, 04 Aug 2018 16:32:49 +0100
mutter (3.29.90-1) experimental; urgency=medium
* Team upload
* New upstream release
- Don't try to use an invalid monitor mode to figure out scaling
(LP: #1723615)
* d/p/window-wayland-Always-update-monitor-for-non-user-ops.patch,
d/p/native-gpu-Handle-drmModeSetCrtc-failing-gracefully.patch,
d/p/wayland-Nullify-monitor-resources-when-updating-outputs.patch,
d/p/monitor-manager-Filter-out-low-screen-resolutions.patch,
d/p/window-Don-t-refuse-to-move-focus-to-the-grab-window.patch,
d/p/window-Explicitly-exclude-unmanaging-window-from-focus-ag.patch:
Drop patches that were applied upstream
* d/libmutter-3-0.symbols: Update
- Ignore ABI change in experimental: removal of
meta_prefs_override_preference_schema()
- Add Breaks on previous experimental gnome-shell
-- Simon McVittie <smcv@debian.org> Wed, 01 Aug 2018 09:03:19 +0100
mutter (3.29.4-3) experimental; urgency=medium
* Team upload
[ Marco Trevisan (Treviño) ]
* d/p/window-wayland-Always-update-monitor-for-non-user-ops.patch:
- Always update monitor in wayland, avoiding crash (LP: #1784398)
* d/p/monitor-manager-Filter-out-low-screen-resolutions.patch:
- Don't return screen resolutions that can't be applied (LP: #1772831)
[ Simon McVittie ]
* d/p/series: Sort patches that were already applied upstream to the
beginning of the patch series
* d/p/window-Don-t-refuse-to-move-focus-to-the-grab-window.patch,
d/p/window-Explicitly-exclude-unmanaging-window-from-focus-ag.patch:
Add patches from upstream to avoid crashing if a modal dialog closes
while being dragged (LP: #1422253)
* d/p/native-gpu-Handle-drmModeSetCrtc-failing-gracefully.patch,
d/p/wayland-Nullify-monitor-resources-when-updating-outputs.patch:
Add more bug fixes from upstream
* Update symbols file
-- Simon McVittie <smcv@debian.org> Tue, 31 Jul 2018 09:43:13 +0100
mutter (3.29.4-2) experimental; urgency=medium
* Generate dependencies for libmutter-3-0, not libmutter-2-0
* d/libmutter-3-0.symbols: Update
* Standards-Version: 4.1.5 (no changes required)
* Set Rules-Requires-Root to no
* d/copyright: Remove obsolete FSF postal addresses
-- Simon McVittie <smcv@debian.org> Fri, 27 Jul 2018 09:49:53 +0100
mutter (3.29.4-1) experimental; urgency=medium
* debian/control*, gbp.conf: Update for experimental (3.29 series).
* New upstream release 3.29.4 (etc)
+ Fix crash with parent-less modal dialogs
+ Preserve paint volumes where possible to optimize CPU usage
+ Fix Korean Hangul support on wayland
+ Improve support for proprietary Nvidia driver
+ Only upload HW cursor sprite to the GPU that will display them
+ Improve EGLstream support
+ Remove MetaScreen to prepare for non-mandatary X11 dependency
+ Misc. bug fixes
+ Fix size change animations on wayland
+ Handle touch events on server-side titlebars
+ Fix various input-method regressions
+ Fix wayland build on FreeBSD
+ Fix swapped colors in screenshots (again)
+ Allow building with elogind
+ Consider display rotation for cursor
+ Fall back to non-modifier GBM surfaces
+ Take inhibitors into account for monitoring idle
* debian/control*: Drop libupower-glib BD - mutter now accesses upower
directly.
* d/p/core-Return-1-if-meta_window_get_monitor-is-called-on-an-.patch: Drop,
this is applied upstream.
* debian/*: SONAME 2 -> 3
-- Iain Lane <laney@debian.org> Wed, 25 Jul 2018 17:39:37 +0100
mutter (3.28.3-2) unstable; urgency=medium
* Team upload
[ Iain Lane ]
* debian/gbp.conf: Set the upstream branch to upstream/3.28.x, since we've
branched for experimental now.
[ Marco Trevisan (Treviño) ]
* d/p/native-gpu-Handle-drmModeSetCrtc-failing-gracefully.patch:
- Avoid crashing when warning about wrongly set crtc mode
(LP: #1754949)
* d/p/gpu-kms-Don-t-crash-if-drmModeGetResources-returns-N.patch:
- Don't crash if drmModeGetResources returns NULL (LP: #1767956)
* d/p/window-wayland-Always-update-monitor-for-non-user-ops.patch:
- Always update monitor in wayland, avoiding crash (LP: #1784398)
* d/p/monitor-manager-Filter-out-low-screen-resolutions.patch:
- Don't return screen resolutions that can't be applied (LP: #1772831)
* d/p/window-Don-t-refuse-to-move-focus-to-the-grab-window.patch,
d/p/window-Explicitly-exclude-unmanaging-window-from-focus-ag.patch:
- Don't crash if a modal dialog closes while being dragged
(LP: #1422253)
* d/p/monitor-Use-current-monitor-mode-to-check-whether-active.patch:
- Don't try to use an invalid monitor mode to figure out scaling
(LP: #1723615)
[ Simon McVittie ]
* Sort patch series in upstream order, with patches applied upstream
first
* d/copyright: Remove obsolete FSF postal addresses
* Standards-Version: 4.1.5 (no changes required)
* Set Rules-Requires-Root to no
* Update symbols file
-- Simon McVittie <smcv@debian.org> Tue, 31 Jul 2018 15:35:03 +0100
mutter (3.28.3-1) unstable; urgency=medium
* New upstream release
* d/p/backends-Add-logical-monitor-monitor-output-crtc-ref-chai.patch,
d/p/backends-Move-MetaOutput-crtc-field-into-private-struct.patch,
d/p/clutter-device-evdev-Get-devices-from-main-seat-if-no-rea.patch,
d/p/clutter-evdev-Don-t-ignore-CAPS-lock-as-modifier.patch,
d/p/clutter-evdev-ignore-injected-events-from-IM.patch,
d/p/clutter-seat-evdev-Add-function-to-get-device-by-id.patch,
d/p/device-manager-evdev-Add-main-seat-to-seats-by-default.patch,
d/p/device-manager-evdev-Free-the-main-seat-on-finalize.patch,
d/p/device-manager-evdev-Set-and-unset-the-stage-for-the-main.patch,
d/p/frames-Allow-for-unknown-mouse-buttons.patch,
d/p/frames-Handle-touch-events.patch,
d/p/frames-Make-1st-button-motion-handlers-take-generic-event.patch,
d/p/renderer-native-Don-t-crash-if-the-FB-surface-can-t-be-lo.patch,
d/p/wayland-Compare-geometries-after-chaining-up.patch,
d/p/wayland-Don-t-reset-input-focus-on-text-commit.patch,
d/p/wayland-Use-cursor-position-in-logical-monitor.patch,
d/p/wayland-update-enter-leave-output-after-effects.patch,
d/p/window-actor-add-new-signal-effects-completed.patch:
Remove patches already applied on 3.28 branch
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 19 Jul 2018 14:59:38 +0100
mutter (3.28.2-3) unstable; urgency=medium
* Team upload
* d/p/backends-Move-MetaOutput-crtc-field-into-private-struct.patch,
d/p/backends-Add-logical-monitor-monitor-output-crtc-ref-chai.patch:
Mark as applied upstream
* d/p/backends-Move-MetaOutput-crtc-field-into-private-struct.patch:
Update to the version that was applied upstream
* d/p/frames-Handle-touch-events.patch,
d/p/frames-Make-1st-button-motion-handlers-take-generic-event.patch,
d/p/frames-Allow-for-unknown-mouse-buttons.patch:
Reinstate patches dropped in previous upload, along with the
upstream fix for #899181
* d/p/wayland-Compare-geometries-after-chaining-up.patch,
d/p/window-actor-add-new-signal-effects-completed.patch,
d/p/wayland-update-enter-leave-output-after-effects.patch,
d/p/frames-Allow-for-unknown-mouse-buttons.patch,
d/p/wayland-Don-t-reset-input-focus-on-text-commit.patch,
d/p/clutter-seat-evdev-Add-function-to-get-device-by-id.patch,
d/p/clutter-device-evdev-Get-devices-from-main-seat-if-no-rea.patch,
d/p/device-manager-evdev-Set-and-unset-the-stage-for-the-main.patch,
d/p/device-manager-evdev-Free-the-main-seat-on-finalize.patch,
d/p/device-manager-evdev-Add-main-seat-to-seats-by-default.patch,
d/p/renderer-native-Don-t-crash-if-the-FB-surface-can-t-be-lo.patch:
Update to upstream gnome-3-28 branch
* Add a symbols file for libmutter-2-0
* d/copyright: Copy many licenses and copyright holders into this file,
multiplying its length by 5 (Closes: #891156)
-- Simon McVittie <smcv@debian.org> Sun, 08 Jul 2018 11:32:56 +0100
mutter (3.28.2-2) unstable; urgency=medium
* Team upload
* d/p/frames-Handle-touch-events.patch,
d/p/frames-Make-1st-button-motion-handlers-take-generic-event.patch:
Drop cherry-picked patches that caused a regression (Closes: #899181)
-- Simon McVittie <smcv@debian.org> Sun, 20 May 2018 15:21:35 +0100
mutter (3.28.2-1) unstable; urgency=medium
* Team upload
* New upstream release
* d/p/theme-frames-Use-surface-device-scale-instead-of-cairo_sc.patch,
d/p/xwayland-Don-t-abort-if-Xwayland-crashes.patch,
d/p/xwayland-use-g_autoptr-for-GError-in-xserver_died.patch:
Drop patches that were applied upstream
* d/p/debian/synaptics-support.patch,
d/p/debian/skip-failing-tests.patch,
d/p/debian/skip-failing-tests-325.patch:
Move patches not expected to be applied upstream to
debian/patches/debian
* Re-order patch series so most-upstreamable patches are first
* d/p/clutter-evdev-Don-t-ignore-CAPS-lock-as-modifier.patch,
d/p/clutter-evdev-ignore-injected-events-from-IM.patch,
d/p/frames-Handle-touch-events.patch,
d/p/frames-Make-1st-button-motion-handlers-take-generic-event.patch,
d/p/wayland-Use-cursor-position-in-logical-monitor.patch:
Add post-release fixes from upstream 3.28 branch
-- Simon McVittie <smcv@debian.org> Thu, 17 May 2018 10:37:25 +0100
mutter (3.28.1-2) unstable; urgency=medium
* Add xwayland-use-g_autoptr-for-GError-in-xserver_died.patch,
xwayland-Don-t-abort-if-Xwayland-crashes.patch:
- Cherry picked from upstream, to reduce noise of mutter on crashes
which are actually caused by XWayland (LP: #1748450)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 23 Apr 2018 10:46:57 -0500
mutter (3.28.1-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release
- Fix window button spacing when display is scaled (LP: #1725133)
* Bump Standards-Version to 4.1.4
[ Marco Trevisan (Treviño) ]
* Add patches proposed upstream:
* theme-frames-Use-surface-device-scale-instead-of-cairo_sc.patch:
- theme, frames: Use surface device scale instead of cairo_scale
(LP: #1764554)
* theme-use-gtk_render_icon_suface-to-paint-button-icon.patch:
- theme: use gtk_render_icon_suface to paint button icon
(LP: #1764558)
* theme-load-icons-as-Gtk-does-with-fallback-and-RTL-suppor.patch:
- theme: load icons as Gtk does with fallback and RTL support
* clutter-Smooth-out-master-clock-to-smooth-visuals.patch:
- clutter: Smooth out master clock to smooth visuals
* core-Return-1-if-meta_window_get_monitor-is-called-on-an-.patch:
- core: Return -1 if meta_window_get_monitor is called on an
unmanaged window (LP: #1724439)
* backends-Move-MetaOutput-crtc-field-into-private-struct.patch:
- backends: Move MetaOutput::crtc field into private struct
(LP: #1703668)
* backends-Add-logical-monitor-monitor-output-crtc-ref-chai.patch:
- backends: Add logical monitor -> monitor -> output -> crtc ref
chain (LP: #1703668)
-- Jeremy Bicha <jbicha@debian.org> Mon, 16 Apr 2018 22:35:14 -0400
mutter (3.28.0-2) unstable; urgency=medium
[ Simon McVittie ]
* Update Vcs-* for migration from Alioth svn to salsa.debian.org git
* debian/gbp.conf: Add
* Refresh patch series with gbp pq
[ Daniel van Vugt ]
* Add synaptics-support.patch
- Allow touchpad settings to work with xserver-xorg-input-synaptics.
Note that this is unneeded on GNOME on Wayland where libinput is
always used. (LP: #1686081)
[ Jeremy Bicha ]
* Bump debhelper compat to 11
-- Jeremy Bicha <jbicha@debian.org> Sun, 18 Mar 2018 20:11:29 -0400
mutter (3.28.0-1) unstable; urgency=high
* New upstream release
- Fix crashes when launching apps from apps in GNOME on Wayland
(LP: #1754169)
* Bump urgency for this targeted fix
-- Jeremy Bicha <jbicha@debian.org> Mon, 12 Mar 2018 18:04:54 -0400
mutter (3.27.92-2) unstable; urgency=medium
[ Simon McVittie ]
* Build-depend on libgnome-desktop-3-dev (>= 3.27.90) to carry out
libgnome-desktop-3-17 transition
[ Jeremy Bicha ]
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Sat, 10 Mar 2018 19:34:02 -0500
mutter (3.27.92-1) experimental; urgency=medium
* New upstream release candidate (LP: #1752123, LP: #1718238)
* Bump minimum wayland-protocols to 1.12
* Drop bump-api.patch: Applied in new release
-- Jeremy Bicha <jbicha@debian.org> Mon, 05 Mar 2018 20:38:24 -0500
mutter (3.27.91-1) experimental; urgency=medium
* New upstream development release (LP: #1751070)
* Bump minimum libgbm-dev to 17.1 and libdrm-dev to 2.4.83
* Build-Depend on libcogl-dev (needed for build but shouldn't be…)
* Cherry-pick bump-api.patch
* Update package names for soname bump
-- Jeremy Bicha <jbicha@debian.org> Thu, 22 Feb 2018 08:54:47 -0500
mutter (3.26.2-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release
* Drop all cherry-picked patches, applied in new release
[ Simon McVittie ]
* d/changelog: Retroactively add a reference from 3.26.1-2 to #878353
* d/p/*.patch: Add metadata to mark remaining patches as Debian-specific
-- Jeremy Bicha <jbicha@debian.org> Sun, 05 Nov 2017 13:03:02 -0500
mutter (3.26.1-6) unstable; urgency=high
* debian/control.in: Bump libegl1-mesa-dev to (>= 17) (Closes: #878702)
* Cherry-pick more fixes from gnome-3-26 branch to fix crashes
and fix unredirecting full-screen windows:
- 0012-x11-window-Don-t-manage-InputOnly-windows.patch
- 0013-compositor-Ignore-offscreen-windows.patch
(LP: #1725821)
- 0015-monitor-normal-Prefer-modes-with-same-flags.patch
- 0016-monitor-unit-tests-Check-non-first-preferred-modes.patch
(LP: #1725153)
- 0017-compositor-Avoid-a-crash-if-top-window-finalized.patch
- 0018-Revert-ClutterActor-Optimize-away-idempotent-scale.patch
- 0019-Revert-tests-Fix-actor-anchors-test.patch
(Closes: #788140)
* Set urgency to high to not further delay the gjs/mutter transition
-- Jeremy Bicha <jbicha@debian.org> Sat, 21 Oct 2017 19:47:22 -0400
mutter (3.26.1-5) unstable; urgency=medium
* Add 0012-Use-a-single-supported-scales.patch:
- Allow HiDPI scaling even when non-HiDPI displays are connected
(LP: #1724024)
-- Jeremy Bicha <jbicha@debian.org> Mon, 16 Oct 2017 20:17:15 -0400
mutter (3.26.1-4) unstable; urgency=medium
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Fri, 13 Oct 2017 16:24:12 -0400
mutter (3.26.1-3) experimental; urgency=medium
* Cherry-pick more fixes from gnome-3-26 branch (LP: #1722811):
- 0001-wayland-dma-buf-Don-t-send-modifiers-to-old-clients.patch
- 0007-settings-Get-UI-scaling-factor-from-primary-logical-.patch
- 0008-backends-add-monitors-updated-internal-signal-to-onl.patch
- 0009-monitor-manager-use-g_return_val_if_fail-if-trying-t.patch
- 0010-backend-move-the-cursor-render-update-on-screen-chan.patch
- 0011-workspace-ensure-that-workarea-data-is-valid-when-fe.patch
-- Jeremy Bicha <jbicha@debian.org> Fri, 13 Oct 2017 09:44:26 -0400
mutter (3.26.1-2) experimental; urgency=medium
* Add git_fix_xorg_maximize_crash.patch:
- Cherry-pick fix for crash when closing windows on Budgie or
GNOME Shell (LP: #1722510, Closes: #878353)
-- Jeremy Bicha <jbicha@debian.org> Tue, 10 Oct 2017 10:22:41 -0400
mutter (3.26.1-1) experimental; urgency=medium
* New upstream release
* Bump Standards-Version to 4.1.1
-- Jeremy Bicha <jbicha@debian.org> Wed, 04 Oct 2017 17:42:30 -0400
mutter (3.26.0+20170925~ea214fb-1) experimental; urgency=medium
* New upstream git snapshot (LP: #1717272)
-- Jeremy Bicha <jbicha@debian.org> Mon, 25 Sep 2017 18:26:10 -0400
mutter (3.26.0-2) experimental; urgency=medium
* debian/patches/src-core-screen.c-Set-_NET_NUMBER_OF_DESKTOPS-in-met.patch:
Cherry-pick from upstream. Fix positioning of desktop icons at startup.
(LP: #1696621)
-- Iain Lane <laney@debian.org> Fri, 22 Sep 2017 19:13:26 +0100
mutter (3.26.0-1) experimental; urgency=medium
* Team upload
* debian/watch: Only watch stable branch again
* New upstream release, functionally identical to the previous
snapshot
-- Simon McVittie <smcv@debian.org> Wed, 13 Sep 2017 09:22:55 +0100
mutter (3.25.92+20170911~5b5737f-1) experimental; urgency=medium
* Team upload
* New upstream git snapshot (really fixes LP: #1714330, we hope)
* debian/watch: Scan for all versions, not just the stable-branch
* debian/control.in: Add versioned Breaks for gnome-control-center,
and bump Suggests to match, to account for functionality that moved
between packages (Closes: #874514)
-- Simon McVittie <smcv@debian.org> Tue, 12 Sep 2017 10:39:01 +0100
mutter (3.25.91+20170902~ce515c5-1) experimental; urgency=medium
* New upstream git snapshot (LP: #1714330)
* Drop git_fix-wayland-color-inversion.patch: Applied
* debian/control.in:
- Bump minimum libgudev-dev to >= 232
- Drop Build-Depends on libgl1-mesa-dri
* debian/rules:
- Ignore test failures on Debian. See bug 874077.
-- Jeremy Bicha <jbicha@debian.org> Sat, 02 Sep 2017 15:46:15 -0400
mutter (3.25.91-2) experimental; urgency=medium
* Build-Depend on libgl1-mesa-dri for build tests since
Debian's mesa packages currently only recommends it
-- Jeremy Bicha <jbicha@debian.org> Thu, 31 Aug 2017 12:47:34 -0400
mutter (3.25.91-1) experimental; urgency=medium
* New upstream release
* Add skip-failing-tests-325.patch:
- Skip one more test that started failing with 3.25
* Add git_fix-wayland-color-inversion.patch:
- Cherry-pick patch to fix wrong colors in clutter apps on Wayland
(LP: #1712986)
* Bump Standards-Version to 4.1.0
-- Jeremy Bicha <jbicha@debian.org> Thu, 31 Aug 2017 07:11:39 -0400
mutter (3.25.90-1) experimental; urgency=medium
[ Jeremy Bicha ]
* New upstream release (LP: #1662805)
* libmutter0 has been renamed upstream to libmutter-0-0
* Rename gir1.2-mutter-3.0 to gir1.2-mutter-0
* Rename libmutter-dev to libmutter-0-dev
* debian/control.in:
- Drop obsolete Conflicts/Replaces now that the library
uses different file names
- Loosen dependency on -common package
- Don't recommend gnome-session | x-session-manager (LP: #1703685)
- Build-depend on xauth and xfvb for build tests
- Add Conflicts: libmutter-0-dev to libmutter-1-dev since
both ship the same development header file names
* debian/rules:
- Build with --enable-egl-device (LP: #1666664)
This enables experimental support for using NVIDIA proprietary
drivers with GNOME on Wayland
- Run build tests but don't make them fatal yet
* Add skip-failing-tests.patch:
- Don't run a few tests that have been reported as failing
[ Simon McVittie ]
* Add patch metadata
* Correctly label debian/patches/git_revert_call_threaded_swap.patch
as a revert, not as the change that is being reverted
[ Andreas Henriksson ]
* New upstream beta release, 3.25.90.
* Bump versions of build-dependencies according to configure.ac changes.
* Rename packages according to libmutter bumping soname, 0->1.
[ Jeremy Bicha ]
* Drop git_revert_call_threaded_swap.patch, no longer needed
-- Andreas Henriksson <andreas@fatal.se> Tue, 15 Aug 2017 15:45:47 +0200
mutter (3.22.4-2) unstable; urgency=medium
[ Jeremy Bicha ]
* Add missing depends on gnome-settings-daemon (LP: #1561706)
[ Laurent Bigonville ]
* debian/patches/bgo782472_fix_copypaste_x11_wayland.patch: Fix copy/paste
between some X11 applications (firefox/chromium) and wayland (Closes:
#865788)
* debian/control.in: Bump Standards-Version to 4.0.0 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Fri, 30 Jun 2017 19:08:41 +0200
mutter (3.22.4-1) unstable; urgency=medium
* New upstream release.
* Drop patches which have been merged upstream.
-- Michael Biebl <biebl@debian.org> Tue, 11 Apr 2017 15:56:47 +0200
mutter (3.22.3-2) unstable; urgency=medium
* debian/patches/clutter-clone-Unset-source-when-source-actor-is-dest.patch
- Add patch from 3.22 branch to fix a gnome-shell crash when using the
alternatetab extension. (Closes: #857290)
-- Michael Biebl <biebl@debian.org> Fri, 10 Mar 2017 18:06:30 +0100
mutter (3.22.3-1) unstable; urgency=medium
* New upstream release.
* Drop patches which have been merged upstream.
-- Michael Biebl <biebl@debian.org> Fri, 17 Feb 2017 18:17:07 +0100
mutter (3.22.2-3) unstable; urgency=medium
[ Jeremy Bicha ]
* Add git_flush_all_swap_notifies_on_idle.patch:
- Add patch from 3.22 branch that fixes freezes with multiple monitors
on Wayland
[ Andreas Henriksson ]
* Add debian/patches/bgo768531_workaround-startup-notifications.patch
- temporary workaround used in both Fedora and Arch for getting
working application startup notifications under Wayland.
- See bgo#768531 for when a real solution is ready to replace this.
-- Andreas Henriksson <andreas@fatal.se> Sun, 08 Jan 2017 03:12:13 +0100
mutter (3.22.2-2) unstable; urgency=critical
[ Raphaël Hertzog ]
* Team upload.
* Urgency critical as gnome-shell is entirely broken in testing
for many users.
[ Jeremy Bicha ]
* Add git_dont_set_unavailable_scroll_methods.patch:
- Add patch from 3.22 branch that prevented logging into GNOME on X
for some users (LP: #1643370, Closes: #846898)
-- Raphaël Hertzog <hertzog@debian.org> Tue, 06 Dec 2016 17:35:40 +0100
mutter (3.22.2-1) unstable; urgency=medium
* New upstream release.
* Drop patches, all merged upstream.
-- Michael Biebl <biebl@debian.org> Thu, 10 Nov 2016 19:17:32 +0100
mutter (3.22.1-2) unstable; urgency=medium
* d/p/wayland-xdg-popup-Always-use-monitor-of-toplevel.patch
d/p/wayland-xdg-shell-Scale-configure-relative-popup-coo.patch
d/p/wayland-xdg-popup-Force-monitor-of-the-top-level.patch
d/p/wayland-xdg-shell-update-popup-window-monitor-early.patch
d/p/wayland-xdg-shell-Scale-positioner-coordinates.patch:
- Added. Fix positioning of popups on hidpi screens in
wayland (bgo#771841)
-- Sjoerd Simons <sjoerd@debian.org> Fri, 14 Oct 2016 22:01:14 +0200
mutter (3.22.1-1) unstable; urgency=medium
* New upstream release.
* Drop debian/patches/01_Wcast-align.patch. It's not necessary anymore as we
don't enable -Werror.
* Add Build-Depends on libxcb-res0-dev as per configure.ac.
-- Michael Biebl <biebl@debian.org> Tue, 11 Oct 2016 13:55:44 +0200
mutter (3.22.0-1) unstable; urgency=medium
[ Jeremy Bicha ]
* debian/control.in:
- Explicitly build-depend on libegl1-mesa-dev (Closes: #836153)
[ Michael Biebl ]
* New upstream release.
- Correctly handle tablet settings lookups with no backing libwacom info.
(Closes: #838050)
* Use non-multiarch path (/usr/lib/mutter) for libexecdir.
-- Michael Biebl <biebl@debian.org> Tue, 20 Sep 2016 01:43:37 +0200
mutter (3.21.92-1) unstable; urgency=medium
[ Jeremy Bicha ]
* debian/rules:
- Explicitly disable kms and wayland to fix build on kfreebsd
* Add fix-undef-build-failure.patch:
- Git patch needed for build without wayland
[ Michael Biebl ]
* New upstream development release.
* Refresh debian/patches/01_Wcast-align.patch.
* Bump debhelper compat level to 10.
-- Michael Biebl <biebl@debian.org> Tue, 13 Sep 2016 17:43:54 +0200
mutter (3.21.91-2) unstable; urgency=medium
* Bump Build-Depends on libgnome-desktop-3-dev to (>= 3.21.2).
This ensures we have a matching version of libgnome-desktop which supports
mode flags via the D-Bus API.
-- Michael Biebl <biebl@debian.org> Fri, 02 Sep 2016 12:03:57 +0200
mutter (3.21.91-1) unstable; urgency=low
* New upstream beta release.
* Update build-dependencies according to configure.ac changes:
- bump wayland-protocols to >= 1.7
* Drop debian/patches/Fix-build-of-clutter-tests.patch, merged upstream.
-- Andreas Henriksson <andreas@fatal.se> Tue, 30 Aug 2016 19:30:43 +0200
mutter (3.21.90-1) experimental; urgency=medium
* New upstream beta release.
* Update (build-)dependencies according to configure.ac changes:
- drop intltool (>= 0.41), now gettext is used instead.
- add libwacom-dev (>= 0.13) [linux-any]
- bump wayland-protocols to >= 1.5
- bump gsettings-desktop-schemas to >= 3.21.4
- bump libinput-dev to >= 1.4
* Drop debian/patches/clutter-Fix-typo-in-assert.patch
- now included in upstream release.
-- Andreas Henriksson <andreas@fatal.se> Sat, 20 Aug 2016 17:46:46 +0200
mutter (3.21.4-1) experimental; urgency=medium
[ Sjoerd Simons ]
* New upstream release
* debian/patches/fix-gint64-format.patch
debian/patches/wayland-add-extended-state-for-tiled.patch:
- Dropped fixed upstream
* debian/patches/Fix-build-of-clutter-tests.patch
- Added, fix build of test (bgo#769636)
* debian/patches/clutter-Fix-typo-in-assert.patch
- Added, fix build. From upstream git
* debian/control.in: Bump libmutter0 to libmutter0i
* debian/control.in: Update build-dependencies
* debian/*.install: Install private helper libraries.
[ Andreas Henriksson ]
* libmutter-dev: depend on packages required by mutter-clutter-1.0.pc
- libcairo2-dev, libglib2.0-dev, libatk1.0-dev, libpango1.0-dev,
libjson-glib-dev, libegl1-mesa-dev, libwayland-dev, libdrm-dev,
libgbm-dev, libinput-dev, libudev-dev, libx11-dev, libxext-dev,
libxdamage-dev, libxcomposite-dev, libxi-dev
* libmutter-dev: depend on additional packages required by mutter-cogl-1.0.pc
- libgdk-pixbuf2.0-dev, libxfixes-dev, libxrandr-dev
-- Andreas Henriksson <andreas@fatal.se> Fri, 12 Aug 2016 15:53:15 +0200
mutter (3.20.3-2) unstable; urgency=medium
[ Simon McVittie ]
* d/p/fix-gint64-format.patch: Add patch from Luca Bruno fixing a format
string on ILP32 architectures
* d/rules: add a missing backslash so we build with the intended
configure options, and in particular not -Werror (Closes: #829140)
[ Jeremy Bicha ]
* Replace old mutter libraries too instead of only conflicting with them
-- Michael Biebl <biebl@debian.org> Fri, 01 Jul 2016 10:18:59 +0200
mutter (3.20.3-1) unstable; urgency=medium
* New upstream release.
* Drop all patches which are now applied upstream.
* Convert to multiarch.
* Convert from cdbs to dh.
-- Michael Biebl <biebl@debian.org> Thu, 30 Jun 2016 20:11:34 +0200
mutter (3.20.2-2) unstable; urgency=medium
* Team upload
[ Jeremy Bicha ]
* Use https for copyright headers
* Use https in d/watch and use new "special strings" to help standardize
format
[ Simon McVittie ]
* Add all patches from upstream gnome-3-20 branch up to 2016-06-23
- fix possible crashes in Wayland and in X11
- ensure that Wayland output reconfiguration finishes correctly
- implement "force quit" in Wayland using kill(), like in X11
- improve UTF-8 correctness
- update translations
- ensure that all window frames are drawn similarly
- avoid redrawing the entire window every frame
- make windows that are unmaximized via drag follow the cursor
* Backport patch from upstream to introduce XDG_SURFACE_STATE_GNOME_TILED
and mark tiled windows with it, allowing GDK versions with a
corresponding patch to report GDK_WINDOW_STATE_TILED correctly under
Wayland
-- Simon McVittie <smcv@debian.org> Sat, 25 Jun 2016 00:19:53 +0100
mutter (3.20.2-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 3.9.8.
-- Michael Biebl <biebl@debian.org> Wed, 11 May 2016 13:48:17 +0200
mutter (3.20.1-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
* Bump mutter's dependency on gsettings-desktop-schemas to (>= 3.19.3).
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Sun, 17 Apr 2016 00:06:56 +0200
mutter (3.20.0-1) experimental; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 25 Mar 2016 10:12:11 +0100
mutter (3.19.92-2) experimental; urgency=medium
* Rename libmutter0g -> libmutter0h
- update dependencies and conflicts as well.
-- Andreas Henriksson <andreas@fatal.se> Fri, 18 Mar 2016 19:15:59 +0100
mutter (3.19.92-1) experimental; urgency=medium
* New upstream release.
* Update build-dependencies according to configure.ac changes:
- Bump libgtk-3-dev (>= 3.19.8)
- Bump gsettings-desktop-schemas-dev (>= 3.19.3)
- Bump libclutter-1.0-dev (>= 1.25.6)
- Add wayland-protocols (>= 1.1) [linux-any]
* 02_Handle-meta_screen_get_monitor_for_point-returning-N.patch:
- dropped, merged upstream.
-- Andreas Henriksson <andreas@fatal.se> Thu, 17 Mar 2016 11:02:08 +0100
mutter (3.18.3-2) unstable; urgency=medium
* Drop mutter-dbg now that we have automatic dbgsym packages.
* Ensure proper upgrade from mutter-dbg to new dbgsym packages by using
dh_strip --dbgsym-migration. Bump Build-Depends on debhelper accordingly.
* Fix dh_makeshlibs args for libmutter0g.
* Bump Standards-Version to 3.9.7.
* Drop obsolete migration code from pre-wheezy.
* Fix disappearing mouse cursor under GNOME Shell with a multi-monitor
setup. Patch cherry-picked from upstream Git.
-- Michael Biebl <biebl@debian.org> Tue, 15 Mar 2016 07:53:24 +0100
mutter (3.18.3-1) unstable; urgency=medium
* New upstream release.
- fix crash when removing monitor/undocking (Closes: #813687)
-- Andreas Henriksson <andreas@fatal.se> Thu, 03 Mar 2016 18:48:49 +0100
mutter (3.18.2-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Fri, 13 Nov 2015 00:09:29 +0100
mutter (3.18.1-1) unstable; urgency=medium
* New upstream release.
* Refresh debian/patches/01_Wcast-align.patch.
* Wrap dependencies.
* Bump the dependency on gsettings-desktop-schemas to (>= 3.15.92).
* Drop the explicit versions from libmutter-dev dependencies. The
libmutter.pc file doesn't enforce any specific versions and they were
out-of-date anyway.
-- Michael Biebl <biebl@debian.org> Wed, 21 Oct 2015 16:13:17 +0200
mutter (3.18.0-1) unstable; urgency=medium
[ Andreas Henriksson ]
* Fix typo in previous changelog entry.
* New upstream release.
* Drop debian/patches/git_launcher-fix-vt-switch.patch,
debian/patches/git_launcher-format-string.patch:
- now part of upstream release.
-- Laurent Bigonville <bigon@debian.org> Sun, 11 Oct 2015 15:21:29 +0200
mutter (3.17.92-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* Remove now useless dependency on gnome-themes-standard.
* Instead, bump libgtk-3-dev build-dependency to 3.14 to make sure mutter will
depend on a version of libgtk-3-common that contains the Adwaita theme.
[ Andreas Henriksson ]
* New upstream release candidate
* Add two patches cherry-picked from upstream git:
- debian/patches/git_launcher-format-string.patch
"launcher: Don't pass variable as format string"
- debian/patches/git_launcher-fix-vt-switch.patch
"Revert "launcher: simplify getting session dbus proxy""
-- Andreas Henriksson <andreas@fatal.se> Thu, 17 Sep 2015 13:42:48 +0200
mutter (3.17.90-1) experimental; urgency=medium
* New upstream beta release.
* Update build-dependecies according to configure.ac changes:
- bump libclutter-1.0-dev to >= 1.23.4
* debian/libmutter-dev.install:
- stop shipping usr/share/gtk-doc, removed upstream. See commit 7dc0b0e6.
* Rename libmutter0f to libmutter0g
- including conflicting against libmutter0f
-- Andreas Henriksson <andreas@fatal.se> Sat, 29 Aug 2015 11:03:17 +0200
mutter (3.16.3-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
-- Michael Biebl <biebl@debian.org> Thu, 02 Jul 2015 18:57:22 +0200
mutter (3.16.2-3) unstable; urgency=medium
* Cherry-pick upstream commit which fixes the issue that window resize
handles were not shown.
* Drop obsolete Breaks/Replaces from pre-wheezy.
-- Michael Biebl <biebl@debian.org> Tue, 30 Jun 2015 19:42:14 +0200
mutter (3.16.2-2) unstable; urgency=medium
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 14 Jun 2015 13:44:02 +0200
mutter (3.16.2-1) experimental; urgency=medium
[ Sjoerd Simons ]
* New upstream release 3.16.1.
* debian/rules: Explicitely build wayland and the native backend on linux
* debian/control.in: Bump b-d
* debian/rules: Stop shipping doc/theme-format.txt, Metacity format support
has been dropped
* bump library name to libmutter0f
[ Emilio Pozuelo Monfort ]
* New upstream release 3.16.2.
* Upload to experimental.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 27 May 2015 19:55:29 +0200
mutter (3.14.4-2) unstable; urgency=medium
* Switch Build-Depends from the transitional libsystemd-login-dev to
libsystemd-dev. (Closes: #779761)
-- Michael Biebl <biebl@debian.org> Tue, 28 Apr 2015 20:10:38 +0200
mutter (3.14.4-1) unstable; urgency=medium
* New upstream translation and bugfix release.
+ Includes new function required for the workaround to #768896 which
is very annoying for users of the proprietary nvidia driver.
* 10_window-actor_unredirect.patch, 11_black_background.patch:
dropped, merged upstream.
* Bump shlibs due to new function.
-- Josselin Mouette <joss@debian.org> Thu, 26 Mar 2015 21:06:28 +0100
mutter (3.14.2-1) unstable; urgency=medium
* New upstream bugfix release.
* 10_window-actor_unredirect.patch: patch from upstream git. Fix crash
when closing a window.
* 11_black_background.patch: patch from upstream git. Don’t set a
black background when switching from the display manager.
-- Josselin Mouette <joss@debian.org> Sun, 30 Nov 2014 15:05:14 +0100
mutter (3.14.1-2) unstable; urgency=medium
* gir1.2-mutter-3.0: tighten dependency on libmutter0e by making
it versioned to = ${binary:Version} (Closes: #766359)
-- Andreas Henriksson <andreas@fatal.se> Tue, 28 Oct 2014 19:57:02 +0100
mutter (3.14.1-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
* Drop obsolete Conflicts/Replaces: gir1.2-mutter-2.91.
* Update Build-Depends as per configure.ac.
* Bump Standards-Version to 3.9.6. No further changes.
-- Michael Biebl <biebl@debian.org> Thu, 16 Oct 2014 00:40:24 +0200
mutter (3.14.0-1) unstable; urgency=medium
[ Dmitry Shachnev ]
* Make gir1.2-mutter-3.0 break gnome-shell versions older than 3.13.92.
Upstream commit a4a688ed83983fb5 removed MetaBackgroundEffects class,
which old gnome-shell (up to 3.13.91) was using via JavaScript code.
[ Andreas Henriksson ]
* Make the libinput-dev build-dependency linux-only.
Thanks to Julien Cristau for pointing it out.
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Mon, 22 Sep 2014 21:02:55 +0200
mutter (3.13.92-1) unstable; urgency=medium
* New upstream release candidate.
-- Andreas Henriksson <andreas@fatal.se> Fri, 19 Sep 2014 20:43:41 +0200
mutter (3.13.91-1) experimental; urgency=medium
[ Andreas Henriksson ]
* New upstream development release.
* Update build-dependencies according to configure.ac changes:
- bump intltool to (>= 0.41)
- bump libclutter-1.0-dev to (>= 1.19.5)
- add libinput-dev
- bump libsystemd-login-dev to (>= 212)
- add libxcb-randr0-dev, libxkbcommon-x11-dev, libxkbfile-dev and
xkb-data
* Drop patches backported from upstream:
- 0001-constraints-Complete-fix-for-size-hints-constrainmen.patch
- 0001-constraints-Size-increments-need-to-be-applied-to-th.patch
- 0001-keybindings-Make-sure-not-to-call-meta_change_keygra.patch
* Bump gobject-introspection build-dependency to (>= 1.41.3)
- this one supports new "nullable" annotation.
* libmutter-dev: bump dependency on libclutter-1.0-dev to (>= 1.19.5)
* libmutter-dev: stop installing usr/lib/lib*.a, no need for static
and they aren't built anymore.
* Stop excluding mutter-launch from fixperms
- not needed anymore, mutter-launch is now gone (see logind).
* Bump libwayland-dev to >= 1.5.90 as required for wayland support.
[ Rico Tzschichholz ]
* Update library name to libmutter0e since the API/ABI is not compatible
with 3.12.x releases
[ Sjoerd Simons ]
* New upstream release 3.13.91.
* Update libxkbcommon-x11-dev versioned depend
[ Andreas Henriksson ]
* mutter.install: ship usr/lib/mutter/mutter-restart-helper
-- Andreas Henriksson <andreas@fatal.se> Fri, 05 Sep 2014 14:15:05 -0700
mutter (3.13.1-1) experimental; urgency=medium
[ Laurent Bigonville ]
* debian/rules: Pass --as-needed to dh_autoreconf
[ Andreas Henriksson ]
* New upstream development release.
* Drop debian/patches/prevent-double-lock-deadlock.patch
- obsoleted by upstream commit 5c99eae8a9ca04f5e
"display: clean up event handling"
* Update build-dependencies according to configure.ac changes:
- add libsystemd-login-dev (>= 207), libpam0g-dev
- drop libxrender-dev
* debian/mutter.install: drop usr/share/gnome
- see upstream commit 542a0886cf14cec3995ada2
"Remove files no one cares about anymore"
* Add patches stolen from fedora originally backported from upstream git:
- 0001-constraints-Complete-fix-for-size-hints-constrainmen.patch
- 0001-constraints-Size-increments-need-to-be-applied-to-th.patch
- 0001-keybindings-Make-sure-not-to-call-meta_change_keygra.patch
* Bump gsettings-desktop-schemas (build-)dependencies to 3.13.1
- need switch-to-workspace-last schema key
* Exclude mutter-launch from having permissions "fixed"
- mutter-launch needs to be suid
-- Andreas Henriksson <andreas@fatal.se> Sat, 02 Aug 2014 17:55:13 +0200
mutter (3.12.2-2) unstable; urgency=medium
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 14 Jul 2014 23:20:08 +0200
mutter (3.12.2-1) experimental; urgency=medium
[ Sjoerd Simons ]
* debian/rules: Don't constrain the libmutter0 dependencies via shlibs
as we change the library names on ABI breaks now
[ Andreas Henriksson ]
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 16 May 2014 17:36:21 +0200
mutter (3.12.1+therealdeal-1) experimental; urgency=medium
* Tweak version to be bigger then the one in unstable
-- Sjoerd Simons <sjoerd@debian.org> Sat, 26 Apr 2014 19:38:07 +0200
mutter (3.12.1-1) unstable; urgency=medium
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Sat, 26 Apr 2014 17:47:46 +0200
mutter (3.12.0-2) experimental; urgency=low
[ Rico Tzschichholz ]
* Update library name to libmutter0d since the API/ABI is not compatible
with 3.10.x releases
[ Emilio Pozuelo Monfort ]
* Let libmutter0d conflict with libmutter0c.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 03 Apr 2014 10:30:00 +0200
mutter (3.12.0-1) experimental; urgency=low
[ Sjoerd Simons ]
* debian/patches/prevent-double-lock-deadlock.patch:
+ Added. Don't call X functions that lock the display in code paths that
have already locked the display if X threads have been initialized
(bgo#704101)
[ Andreas Henriksson ]
* New upstream release.
* Update build-dependencies according to configure.ac changes:
- bump upower 0.99.0
- bump cogl 1.17.1
* Bump Standards-Version to 3.9.5
-- Andreas Henriksson <andreas@fatal.se> Sat, 29 Mar 2014 22:09:55 +0100
mutter (3.10.1-2) experimental; urgency=low
* Force build against G3.10 version of gnome-desktop
-- Sjoerd Simons <sjoerd@debian.org> Sun, 03 Nov 2013 11:19:44 +0100
mutter (3.10.1-1) experimental; urgency=low
* New upstream release
* Sync with Ubuntu (3.10.0-0ubuntu1~saucy1)
+ Update library name to libmutter0c
+ Bump build-depends
-- Sjoerd Simons <sjoerd@debian.org> Fri, 01 Nov 2013 22:34:51 +0100
mutter (3.8.4-2) unstable; urgency=low
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 13 Oct 2013 17:26:39 +0200
mutter (3.8.4-1) experimental; urgency=low
[ Jeremy Bicha ]
* debian/control.in:
- Use standard Breaks/Replaces instead of Conflicts against older mutter
libraries
[ Emilio Pozuelo Monfort ]
* debian/control.in:
+ Standards-Version is 3.9.4, no changes needed.
* New upstream release.
[ Michael Biebl ]
* debian/watch: Track stable releases.
* Bump debhelper compatibility level to 9.
-- Michael Biebl <biebl@debian.org> Fri, 11 Oct 2013 19:37:56 +0200
mutter (3.8.3-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
+ Bump clutter requirement.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 08 Jun 2013 18:09:14 +0200
mutter (3.8.2-1) experimental; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 24 May 2013 17:26:06 +0200
mutter (3.8.1-1) experimental; urgency=low
* New upstream release
* debian/patches/02-dont-select-for-XI2-events.patch:
+ Dropped, fixed X server is available in sid now
-- Sjoerd Simons <sjoerd@debian.org> Fri, 19 Apr 2013 18:57:59 +0200
mutter (3.8.0-1) experimental; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 27 Mar 2013 00:15:13 +0100
mutter (3.7.92-1) experimental; urgency=low
[ Sjoerd Simons ]
* New upstream release (3.7.90)
* Sync from Ubuntu
+ d/p/04_ignore_shadow_and_padding.patch:
* Dropped, Ubuntu specific
* debian/control.in: Bump b-d on glib
* debian/control.in: Rename libmutter0a to libmutter0b for more ABI fun
* d/p/10_Always-send-_NET_WM_FRAME_DRAWN-for-newly-created-wi.patch:
+ Added. Fix a race causing _NET_WM_FRAME_DRAWN to not be sent in context
menus. (From upstream git, BGO#694771)
[ Emilio Pozuelo Monfort ]
* New upstream release.
+ debian/control.in:
- Add gtk-doc-tools to build-depends.
+ debian/libmutter-dev.install:
- Ship the API reference.
+ d/p/10_Always-send-_NET_WM_FRAME_DRAWN-for-newly-created-wi.patch:
- Removed, included upstream.
+ debian/patches/02-dont-select-for-XI2-events.patch:
- New patch, revert an upstream change to receive XI2 events
until #696272 is fixed. Thanks to Sjoerd Simons and
Frédéric Péters for the info and the patch.
+ debian/copyright:
- Updated.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 20 Mar 2013 18:12:12 +0100
mutter (3.7.5-0ubuntu1~raring1) raring; urgency=medium
[ Jeremy Bicha ]
* New upstream release.
* debian/control.in:
- Bump minimum clutter & gsettings-desktop-schemas
[ Rico Tzschichholz ]
* debian/control.in:
- Build-depend on libxi-dev
* debian/patches/01_Wcast-align.patch: Refreshed
* debian/patches/05_ignore_num_workspaces.patch:
- Dropped, applied in new version
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 05 Feb 2013 20:58:05 -0500
mutter (3.6.2-0ubuntu1) raring; urgency=low
* New upstream release (LP: #1078155)
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 12 Nov 2012 22:09:47 -0500
mutter (3.6.1-1ubuntu2) raring; urgency=low
* Added 05_ignore_num_workspaces.patch (LP: #1067933)
-- Brandon Snider <brandonjsnider@gmail.com> Wed, 17 Oct 2012 20:23:11 -0400
mutter (3.6.1-1ubuntu1) raring; urgency=low
* Sync with Debian. Remaining change:
- 04_ignore_shadow_and_padding.patch: Silently ignore
padding and shadow tags
-- Jeremy Bicha <jbicha@ubuntu.com> Thu, 08 Nov 2012 08:37:27 -0500
mutter (3.6.1-1) experimental; urgency=low
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Wed, 17 Oct 2012 19:58:10 +0200
mutter (3.6.0-1) experimental; urgency=low
* New upstream release
* Sync with Ubuntu:
- Drop unnecessary gnome-doc-utils install
* d/p/00_meta_window_move_frame-fix-crash-when-frame-is-NULL.patch:
Dropped: fixed upstream
* debian/control.in: Rename libmutter0 to libmutter0a as the libmutter ABI
broke
-- Sjoerd Simons <sjoerd@debian.org> Sun, 14 Oct 2012 19:24:21 +0200
mutter (3.4.1-7) unstable; urgency=low
* d/p/0001-meta-texture-rectangle-Use-Cogl-s-API-to-create-a-re.patch:
+ Patch from upstream git, don't use GL types as cogl doesn't expose
GL headers in newer releases. This will ease the cogl transition.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 26 May 2013 17:54:55 +0200
mutter (3.4.1-6) unstable; urgency=low
* Team upload
* Add debian/patches/02_switch_to_gtk-doc_syntax.patch:
- from upstream, fixes FTBFS with new gobject-introspection.
-- Andreas Henriksson <andreas@fatal.se> Mon, 13 May 2013 11:03:34 +0200
mutter (3.4.1-5) unstable; urgency=low
[ Rico Tzschichholz ]
* debian/patches: Add upstream patch
00_meta_window_move_frame-fix-crash-when-frame-is-NULL.patch
[ Michael Biebl ]
* Install missing keybindings file 50-mutter-windows.xml which is required
to configure mutter specific keyboard shortcuts in gnome-control-center.
Closes: #680004
* Use list-missing to list files missing from the package.
-- Michael Biebl <biebl@debian.org> Sat, 07 Jul 2012 20:03:06 +0200
mutter (3.4.1-4) unstable; urgency=low
* Clean up /etc/sgml/mutter-common.cat and /etc/sgml/mutter-common.cat.old
on upgrades. Closes: #675309
-- Michael Biebl <biebl@debian.org> Fri, 01 Jun 2012 12:49:07 +0200
mutter (3.4.1-3) unstable; urgency=low
[ Michael Biebl ]
* Upload to unstable.
[ Rico Tzschichholz ]
* libmutter-dev: add dependency on gsettings-desktop-schemas-dev and
libx11-dev as pc-file requests
[ Michael Biebl ]
* Bump Suggests: gnome-control-center to (>= 1:3.4.0) as we want a recent
enough version which can handle keybindings based on GSettings.
* Use strict dependency between mutter/libmutter0 and mutter-common to
ensure we have the correct version of mutter-common providing the
org.gnome.mutter gsettings schema.
* Add Depends on gnome-themes-standard to mutter. Adwaita is the preferred
window manager theme and without a theme installed mutter refuses to
start. Closes: #658823
-- Michael Biebl <biebl@debian.org> Wed, 30 May 2012 12:25:26 +0200
mutter (3.4.1-2) experimental; urgency=low
* Drop debian/mutter-common.catalog and debian/mutter-common.sgmlcatalogs.
This is another leftover from the metacity package, mutter doesn't ship
any DTD.
* Replace another occurence of libgnome2-common with
gsettings-desktop-schemas.
-- Michael Biebl <biebl@debian.org> Mon, 14 May 2012 19:11:48 +0200
mutter (3.4.1-1) experimental; urgency=low
[ Michael Biebl ]
* New upstream release.
[ Rico Tzschichholz ]
* debian/control.in:
- Bump minimum GTK, cogl, clutter & gsettings-desktop-schemas
- Add mutter-dbg package
* debian/mutter-common.install:
- Install gsettings schemas
* debian/rules: Enable compile warnings
[ Jeremy Bicha ]
* debian/control.in:
- Drop gconf dependency
[ Michael Biebl ]
* Bump Standards-Version to 3.9.3.
* Update Vcs-* URLs.
* Drop Suggests: gnome-themes. This is a remnant of the old metacity
package this work is based on.
* Refresh debian/patches/01_Wcast-align.patch.
-- Michael Biebl <biebl@debian.org> Fri, 04 May 2012 21:48:47 +0200
mutter (3.2.2-3) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Wed, 02 May 2012 00:10:17 +0200
mutter (3.2.2-2) experimental; urgency=low
* d/p/02_Fix-cogl-crash-from-updating-non-existent-texture.patch:
+ Added. In 1.8 cogl would prevent attempts to update textures with
an invalid handle from crashing buggy programs. Cogl 1.10 no longer does
so. This patch prevents mutter from updating invalid textures
* d/p/03_fix_compilation_with_new_cogl.patch
+ Added. Adapt to changes made in the experimental patch of the cogl API
-- Sjoerd Simons <sjoerd@debian.org> Sun, 01 Apr 2012 16:32:27 +0200
mutter (3.2.2-1) unstable; urgency=low
[ Michael Biebl ]
* Change section of gir1.2-mutter-3.0 to introspection.
[ Josselin Mouette ]
* Update repository URL.
[ Michael Biebl ]
* New upstream release.
* debian/watch: Track stable releases.
-- Michael Biebl <biebl@debian.org> Tue, 24 Jan 2012 07:49:20 +0100
mutter (3.2.1-2) unstable; urgency=low
[ Laurent Bigonville ]
* debian/watch:
- Fix URL regex to correctly detect latest tarballs
- Switch to .xz tarballs
[ Michael Biebl ]
* Upload to unstable.
* Refresh debian/patches/01_Wcast-align.patch.
* debian/control.in:
- Add explicit Build-Depends on libcairo2-dev.
- Bump Build-Depends on libglib2.0-dev.
-- Michael Biebl <biebl@debian.org> Sat, 19 Nov 2011 01:21:32 +0100
mutter (3.2.1-1) experimental; urgency=low
[ Jean Schurger ]
* New upstream version
* debian/control.in
- Updated clutter dependency
* debian/libmutter0.symbols
- Updated
[ Josselin Mouette ]
* Tighten shlibs to the major GNOME version, libcamel-style.
* libmutter0.symbols: dropped, upstream ABI stability guarantees are
not sufficient.
[ Sjoerd Simons ]
* New upstream release (3.2.1)
-- Sjoerd Simons <sjoerd@debian.org> Fri, 28 Oct 2011 20:19:30 +0200
mutter (3.0.2.1-4) unstable; urgency=high
* Team upload. Urgency high as that problem already affects testing
users.
* debian/patches:
- Add 00git-dont-lose-application-redraws.patch to fix rendering
issues with parts of the screen not showing the latest content.
-- Raphaël Hertzog <hertzog@debian.org> Mon, 17 Oct 2011 08:37:50 +0200
mutter (3.0.2.1-3) unstable; urgency=low
[ Rico Tzschichholz ]
* debian/patches:
- Add 00git-meta-window-group-Use-clutter_stage_get_redraw_clip_.patch,
00git-Use-a-utility-function-to-create-GL_ARB_texture_rect.patch
to remove direct GL usages to let it build with EGL/GLES2 on arm
* debian/control:
- Bump build-dep on clutter-1.0-dev (>= 1.7.5)
* debian/libmutter0.symbols:
- updated (leave with debian revision since it is added by a patch)
-- Michael Biebl <biebl@debian.org> Fri, 14 Oct 2011 19:01:24 +0200
mutter (3.0.2.1-2) unstable; urgency=low
[ Laurent Bigonville ]
* Drop debian/mutter.lintian-overrides: Missing manpages are now installed
[ Michael Biebl ]
* debian/control.in:
- Drop Build-Depends on gir1.2-gtk-3.0, gir1.2-clutter-1.0 and
gir1.2-json-glib-1.0 and let their corresponding -dev package pull it in
automatically. Bump the Build-Depends on the -dev packages accordingly.
* Bump debhelper compatibility level to 8.
- Update Build-Depends on debhelper.
- Strip debian/tmp/ from .install files.
* Let cdbs call dh_girepository.
- Bump Build-Depends on cdbs to (>= 0.4.90).
- Remove custom dh_girepository rules from debian/rules.
- Set DEB_DH_GIREPOSITORY_ARGS_ALL to /usr/lib/mutter.
-- Michael Biebl <biebl@debian.org> Thu, 07 Jul 2011 22:45:20 +0200
mutter (3.0.2.1-1) unstable; urgency=low
[ Rico Tzschichholz ]
* New upstream release
* debian/watch:
- Look for bzip2 tarballs
[ Josselin Mouette ]
* Depend on libgnome2-common for the GConf schemas. This will be
necessary until mutter is ported to GSettings.
-- Laurent Bigonville <bigon@debian.org> Sat, 11 Jun 2011 14:39:59 +0200
mutter (3.0.1-1) experimental; urgency=low
* New upstream release (3.0.0).
* debian/control.in:
- Bump Standards-Version to 3.9.2 (no further changes)
- Drop versionized dpkg-dev build-dependency
-- Laurent Bigonville <bigon@debian.org> Fri, 06 May 2011 23:47:25 +0200
mutter (3.0.0-2) experimental; urgency=low
* Rename gir1.2-mutter-2.91 package to gir1.2-mutter-3.0
-- Laurent Bigonville <bigon@debian.org> Mon, 11 Apr 2011 11:19:27 +0200
mutter (3.0.0-1) experimental; urgency=low
* Team upload.
[ Frederic Peters ]
* New upstream release (2.91.93).
* debian/libmutter0.symbols: new symbol.
[ Josselin Mouette ]
* Make the -dev package depend on the gir package.
[ Raphaël Hertzog ]
* New upstream release (3.0.0).
-- Raphaël Hertzog <hertzog@debian.org> Sun, 10 Apr 2011 19:38:04 +0000
mutter (2.91.92-1) experimental; urgency=low
* New upstream release
[ Rico Tzschichholz ]
* debian/patches:
+ drop 02_arm_include_clutter_x11.patch, is upstream
+ drop 10_mutter-ldflags.patch, is upstream
* debian/control.in,debian/rules:
+ add libmutter0 which replaces libmutter-wm0 and libmutter-private0
[ Frederic Peters ]
* debian/control.in: mention gnome-shell in libmutter0 package description.
-- Frederic Peters <fpeters@debian.org> Thu, 24 Mar 2011 19:56:48 +0100
mutter (2.91.91-1) experimental; urgency=low
* New upstream release.
[Laurent Bigonville]
* debian/control.in: Add Vcs-Svn and Vcs-Browser fields
[Frederic Peters]
* debian/control.in, libmutter-wm0.install, libmutter-wm0.symbols:
Add a libmutter-wm0 library
* debian/patches/10_mutter-ldflags.patch: Fix linking of mutter binary
* debian/patches/20_libmutter_export_symbols.patch: Limit list of symbols
exported by libmutter-{wm,private} (but don't add it to series as it makes
gnome-shell segfault)
* debian/mutter.install, debian/mutter-common.install: move mutter-wm.desktop
from mutter-common to mutter.
* debian/control.in: add replaces/breaks in mutter, against previous
versions of mutter-common, for the move of mutter-wm.desktop.
-- Frederic Peters <fpeters@debian.org> Mon, 14 Mar 2011 19:09:58 +0100
mutter (2.91.90-1) experimental; urgency=low
* New upstream release.
-- Frederic Peters <fpeters@debian.org> Wed, 23 Feb 2011 09:29:08 +0100
mutter (2.91.6-1) experimental; urgency=low
[ Laurent Bigonville ]
* New upstream release.
* debian/control.in:
- Remove duplicate Section
- Drop gir1.2-mutter-2.91 Conflicts/Replaces against libmutter-private0
package
* debian/watch: Drop call to uupdate
* debian/mutter.lintian-overrides: Add overrides for manpages shipped
in mutter-common
[ Emilio Pozuelo Monfort ]
* debian/control.in:
+ Update for the new gtk+ 3 package names.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 19 Feb 2011 15:20:42 +0000
mutter (2.29.0-4) unstable; urgency=low
* Remove gir1.0-mutter-2.29 to ease the gir1.2 transition, since
nothing uses it.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 16 Feb 2011 20:34:44 +0000
mutter (2.91.5-1) experimental; urgency=low
[ Emilio Pozuelo Monfort ]
* New upstream release.
+ debian/control.in:
- Update build dependencies.
- Remove unneeded libgtk2.0-dev build dependency.
+ debian/patches/02_gdk_removed_macro.patch,
debian/patches/03_handle_new_gtk_states.patch,
debian/patches/04_fix_gradient_example.patch:
- Removed, included upstream.
* debian/libmutter-private0.symbols:
+ Add a symbols file.
* debian/rules:
+ Make the shlibs always depend on the latest upstream version.
We have symbols file anyway, and manually bumping the shver is
error prone.
[ Laurent Bigonville ]
* debian/control: Bump Standards-Version to 3.9.1
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 12 Jan 2011 23:06:20 +0000
mutter (2.91.3-3) experimental; urgency=low
* debian/patches/02_gdk_removed_macro.patch,
* debian/patches/03_handle_new_gtk_states.patch,
* debian/patches/04_fix_gradient_example.patch:
- Patches from upstream git, fix the build with latest GTK+ 3.
* debian/control.in:
- Bump the libgtk3.0-dev build dependency accordingly.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 18 Dec 2010 23:39:24 +0000
mutter (2.91.3-2) experimental; urgency=low
* Update to the new gir policy:
- Rename gir1.0-mutter-2.91 to gir1.2-mutter-2.91.
- Bump the gobject-introspection build dependency.
- Build depend on gir1.2 packages.
* debian/control.in:
- Fix typo, s/shlib/shlibs/.
* debian/rules:
- Remove hack to get translations in /usr/share, no longer needed.
- Pass the path to the typelibs to dh_girepository to get correct
dependencies.
* debian/rules,
debian/control.in:
- Use dh-autoreconf.
* debian/patches/90_autotools.patch,
debian/patches/99_ltmain_as-needed.patch:
- Removed, no longer needed with dh-autoreconf.
* debian/rules,
debian/copyright:
- Fix some metacity leftovers.
* debian/mutter.1,
debian/mutter-message.1,
debian/mutter-theme-viewer.1,
debian/mutter-window-demo.1,
debian/mutter-common.manpages:
- Removed, shipped upstream.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 14 Dec 2010 00:52:38 +0100
mutter (2.91.3-1) experimental; urgency=low
[ Gustavo Noronha Silva ]
* New development release
* debian/control:
- update build-dependencies on GObject-Introspection packages
- build-depend on GTK+3
[ Emilio Pozuelo Monfort ]
* New upstream release.
- Rename gir1.0-mutter-2.31 to gir1.0-mutter-2.91.
* debian/control.in:
- Build depend on libjson-glib-dev and gir1.0-json-glib-1.0.
* debian/rules,
debian/control.in,
debian/source/format:
- Switch to source format 3.0 (quilt).
* debian/rules:
- Bump the shlib version.
-- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 06 Dec 2010 00:59:42 +0100
mutter (2.31.5-1) experimental; urgency=low
* New upstream release
- refreshed patches
- added a hack to rules to work-around the build trying to install
locale files to /usr/lib/locale
- bumped shlib minimum version to 2.31.5 (see #586124)
-- Gustavo Noronha Silva <kov@debian.org> Tue, 13 Jul 2010 11:36:29 -0300
mutter (2.31.2-3) experimental; urgency=low
* debian/gir1.0-mutter-2.{29->31}.install:
- actually install the typelib file
-- Gustavo Noronha Silva <kov@debian.org> Mon, 31 May 2010 11:37:33 -0300
mutter (2.31.2-2) experimental; urgency=low
* debian/control:
- fix GIR package name to account for GIR API name change
-- Gustavo Noronha Silva <kov@debian.org> Wed, 26 May 2010 15:15:34 -0300
mutter (2.31.2-1) experimental; urgency=low
* New development release
-- Gustavo Noronha Silva <kov@debian.org> Wed, 26 May 2010 10:51:58 -0300
mutter (2.29.1-1) experimental; urgency=low
* New development release.
* debian/control:
- build-dep on clutter >= 1.2
-- Gustavo Noronha Silva <kov@debian.org> Thu, 08 Apr 2010 20:48:38 -0300
mutter (2.29.0-2) unstable; urgency=low
* debian/control:
- fix gir package name, because the typelib has changed its name
-- Gustavo Noronha Silva <kov@debian.org> Mon, 15 Mar 2010 17:27:59 -0300
mutter (2.29.0-1) unstable; urgency=low
* New upstream development release.
* debian/rules:
- update makeshlibs argument to require >= 2.29.0
-- Gustavo Noronha Silva <kov@debian.org> Tue, 02 Mar 2010 19:19:44 -0300
mutter (2.28.1~git20100129-1) unstable; urgency=low
* Upstream snapshot
-- Gustavo Noronha Silva <kov@debian.org> Fri, 29 Jan 2010 12:04:09 -0200
mutter (2.28.1~git20091208-1) unstable; urgency=low
* New upstream snapshot
-- Gustavo Noronha Silva <kov@debian.org> Sat, 24 Oct 2009 13:16:53 -0200
mutter (2.28.1~git20091024-1) unstable; urgency=low
* Upstream snapshot
* debian/control.in:
- fixed typo in description
- bump Standards-Version to 3.8.3
-- Gustavo Noronha Silva <kov@debian.org> Sat, 24 Oct 2009 12:59:03 -0200
mutter (2.28.0-2) unstable; urgency=low
* debian/control.in:
- adapt for the new GObject introspection policy
-- Gustavo Noronha Silva <kov@debian.org> Mon, 19 Oct 2009 15:59:57 -0200
mutter (2.28.0-1) unstable; urgency=low
* New upstream release
-- Gustavo Noronha Silva <kov@debian.org> Fri, 09 Oct 2009 13:23:25 -0300
mutter (2.27.5-1) unstable; urgency=low
* New upstream release
-- Gustavo Noronha Silva <kov@debian.org> Wed, 30 Sep 2009 21:19:05 +0100
mutter (2.27.3-2) unstable; urgency=low
[ Simon Raven <simon.raven@gmail.com> ]
* debian/control.in:
- adding missing build-dep to fix FTBFS (Closes: #544342)
[ Gustavo Noronha Silva ]
* debian/control.in:
- also add gobject-introspection, gobject-introspection-glib-2.0,
gobject-introspection-freedesktop, which were also missing, to
build-depends
-- Gustavo Noronha Silva <kov@debian.org> Sun, 30 Aug 2009 19:02:46 -0300
mutter (2.27.3-1) unstable; urgency=low
[ Josselin Mouette ]
* Update list of copyright holders.
[ Gustavo Noronha Silva ]
* New upstream release
-- Gustavo Noronha Silva <kov@debian.org> Sat, 29 Aug 2009 21:53:05 -0300
mutter (2.27.2-1) unstable; urgency=low
* First mutter release for Debian
- no ITP since this is in practice a branch of metacity
* debian/control.in:
- adapted descriptions
- added build-deps on gobject-introspection, and clutter >= 1.0
- renamed packages
* debian/patches/10_ignore_callbacks.patch:
- removed; applied upstream
* debian/mutter-common.install:
- this package no longer provides themes and gnome-control-center
keybindings capplet; this will come in a separate module in the
future, it seems, and we may want to make sure it is installed
-- Gustavo Noronha Silva <kov@debian.org> Sun, 26 Jul 2009 13:33:08 +0200
metacity (1:2.26.0-3) unstable; urgency=high
* 10_ignore_callbacks.patch: stolen upstream. Fix a bug leading to
some callbacks being ignored. Closes: #533917.
-- Josselin Mouette <joss@debian.org> Wed, 24 Jun 2009 12:04:26 +0200
metacity (1:2.26.0-2) unstable; urgency=low
* Use patchsys-quilt; build-depend on quilt.
* 01_Wcast-align.patch: don’t use -Wcast-align, it gives incorrect
warnings (errors thanks to -Werror) when some pointers are converted
back and forth to XPointers. Closes: #532655.
* 90_autotools.patch: relibtoolize the whole package.
-- Josselin Mouette <joss@debian.org> Wed, 10 Jun 2009 21:52:35 +0200
metacity (1:2.26.0-1) unstable; urgency=low
[ Josselin Mouette ]
* Fix typo in changelog entry.
[ Loic Minier ]
* Let metacity suggest gnome-themes as it attempts to use the Clearlooks
Metacity theme by default and logs a warning when it can't be used.
* Let metacity suggest xdg-user-dirs as it fails creating the
.config/metacity sub-directory and logs a warning if .config isn't created
by xdg-user-dirs.
[ Josselin Mouette ]
* Set the team as primary maintainer. Closes: #523545.
* Fixup in the descriptions.
* New upstream release.
* Update build-dependencies.
* Bump shlibs for libmetacity-private0.
-- Josselin Mouette <joss@debian.org> Tue, 09 Jun 2009 20:36:03 +0200
metacity (1:2.24.0-2) unstable; urgency=low
* Rename libmetacity0 to libmetacity-private0 because of an
unexpected ABI change. Closes: #510096.
* Remove trailing -1's in build-depends.
* debian/copyright: write complete list of copyright holders.
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Mon, 16 Feb 2009 18:03:57 +0100
metacity (1:2.24.0-1) experimental; urgency=low
* New upstream release.
+ Implements one-way maximisation. Closes: #450837.
+ Fixes issues when disabling the compositor. Closes: #476492.
* Bump shlibs version to 1:2.24.0.
* Standards version is 3.8.0.
* 01_doublefree_maximize.patch: dropped, merged upstream.
* Install the .desktop in the metacity package.
-- Josselin Mouette <joss@debian.org> Sat, 22 Nov 2008 15:57:58 +0100
metacity (1:2.22.0-2) unstable; urgency=low
[ Sven Arvidsson ]
* Add README.Debian, describing how to enable the compositor.
(Closes: #471442)
[ Josselin Mouette ]
* 01_doublefree_maximize.patch: stolen upstream (r3817). Fixes
vertical maximisation bug caused by an invalid free.
Closes: #452139.
* control.in: make metacity the first package so that it gets the
README.Debian.
-- Josselin Mouette <joss@debian.org> Thu, 18 Sep 2008 16:53:19 +0200
metacity (1:2.22.0-1) unstable; urgency=low
[ Bradley Smith ]
* New upstream development release.
[ Sam Morris ]
* Build-depend on libxcomposite-dev for composite manager.
[ Sebastian Dröge ]
* New upstream stable release:
+ debian/rules:
- Drop check-dist include.
- Update shlibs to >= 2.22.0 because of new API.
-- Sebastian Dröge <slomo@debian.org> Fri, 14 Mar 2008 13:54:19 +0100
metacity (1:2.21.5-1) experimental; urgency=low
[ Riccardo Setti ]
* New metacity package.
* build with compositor extension.
[ Bradley Smith ]
* Update Standards Version to 3.7.3. (No changes)
* Add check-dist.
-- Riccardo Setti <giskard@debian.org> Thu, 20 Dec 2007 02:29:13 +0100
metacity (1:2.20.1-2) UNRELEASED; urgency=low
* Let metacity-common replace metacity instead of conflicting to ease
upgrades.
-- Loic Minier <lool@dooz.org> Wed, 28 Nov 2007 19:00:45 +0100
metacity (1:2.20.1-1) unstable; urgency=low
[ Josselin Mouette ]
* Recommend gnome-session | x-session-manager. Closes: #225640.
* Remove metacity.menu. Closes: #397645.
[ Sebastian Dröge ]
* New upstream bugfix release.
-- Sebastian Dröge <slomo@debian.org> Mon, 19 Nov 2007 13:57:21 +0100
metacity (1:2.20.0-1) unstable; urgency=low
* New upstream release:
+ debian/patches/01_session_tolerate_missing_file.patch,
debian/patches/02_fix_crash_on_session_saving.patch:
- Dropped, merged upstream.
+ debian/rules:
- Bump shlibs to >= 2.19.5.
+ debian/metacity-common.install:
- Ship keybinding stuff.
* debian/control.in:
+ Drop duplicated libxinerama-dev build dependency.
-- Sebastian Dröge <slomo@debian.org> Sat, 22 Sep 2007 10:46:36 +0200
metacity (1:2.18.5-1) unstable; urgency=low
* New upstream stable release; no API change.
-- Loic Minier <lool@dooz.org> Tue, 19 Jun 2007 12:07:17 +0200
metacity (1:2.18.3-2) unstable; urgency=low
* 99_ltmain_as-needed.patch: make --as-needed work for the library
too.
-- Josselin Mouette <joss@debian.org> Wed, 06 Jun 2007 23:40:52 +0200
metacity (1:2.18.3-1) unstable; urgency=low
* Drop metacity-common postinst as it was scheduled to be dropped post-etch.
* Rewrite metacity postinst and prerm to use safer individual if tests
instead of trying to list all possible args in a case; reported by
Lior Kaplan; closes: #421206.
* New upstream stable release; no API change.
-- Loic Minier <lool@dooz.org> Mon, 28 May 2007 17:48:18 +0200
metacity (1:2.18.2-3) unstable; urgency=low
* New patch 02_fix_crash_on_session_saving.patch, taken from Ubuntu.
Fix a crash that would occur when the current session is saved and would
corrupt ~/.gnome2/session. Gnome bug #433253
-- Sebastian Dröge <slomo@debian.org> Thu, 26 Apr 2007 15:44:10 +0200
metacity (1:2.18.2-2) unstable; urgency=low
* Add -z defs to LDFLAGS; cleanups.
* Upload to unstable; drop check-dist include.
* Add a ${misc:Depends}.
* Drop useless --enable-xsync=yes from configure flags.
* Wrap build-deps and deps.
* Bump dep on libgtk2.0-dev to >= 2.10.0-1.
-- Loic Minier <lool@dooz.org> Sat, 14 Apr 2007 15:12:50 +0200
metacity (1:2.18.2-1) experimental; urgency=low
* New upstream stable release.
-- Loic Minier <lool@dooz.org> Mon, 09 Apr 2007 08:47:47 +0200
metacity (1:2.18.1-1) experimental; urgency=low
* New upstream stable release; no API change; bug fixes and translations.
* Drop obsolete README.Debian; misc cleanups.
-- Loic Minier <lool@dooz.org> Sun, 08 Apr 2007 09:23:44 +0200
metacity (1:2.18.0-1) experimental; urgency=low
[ Marco Cabizza ]
* New upstream release: not enabling compositor, too unstable, and libcm
seems dead upstream.
[ Riccardo Setti ]
* Updated debhelper compatibility to 5
[ Loic Minier ]
* Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on
cdbs >= 0.4.41.
* Fix metacity-common.install to list the correct dirs.
-- Loic Minier <lool@dooz.org> Mon, 26 Mar 2007 22:27:08 +0200
metacity (1:2.16.5-1) experimental; urgency=low
[ Loic Minier ]
* Add a get-orig-source target to retrieve the upstream tarball.
* Include the new check-dist Makefile to prevent accidental uploads to
unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
[ Josselin Mouette ]
* 01_session_tolerate_missing_file.patch: register differently to the
session, in order to handle gracefully the case where a session file
is missing on the disk (closes: #315169, #391287).
* New upstream release.
-- Josselin Mouette <joss@debian.org> Sun, 4 Mar 2007 10:29:40 +0100
metacity (1:2.16.3-1) experimental; urgency=low
[ Marco Cabizza ]
* New upstream release.
[ Loic Minier ]
* Merge 1:2.14.5-2.
[ Josselin Mouette ]
* Use ${gnome:Version} and ${gnome:NextVersion} to loosen the
dependencies.
* Build-depend on gnome-pkg-tools 0.6.
* Call gnome-version.mk.
* Replace the x-dev build-dependency by x11proto-core-dev.
-- Josselin Mouette <joss@debian.org> Tue, 21 Nov 2006 20:50:05 +0100
metacity (1:2.16.2-1) experimental; urgency=low
* New upstream release, with backwards incompatible changes in internal API.
-- Loic Minier <lool@dooz.org> Mon, 25 Sep 2006 17:47:56 +0200
metacity (1:2.16.1-1) experimental; urgency=low
[ Loïc Minier ]
* Remove superfluous dh_installcatalogs call and bump cdbs build-dep to
>= 0.4.37, thanks Peter Eisentraut. (Closes: #361156)
[debian/control, debian/control.in, debian/rules]
* Don't mention non-existing Info documentation in the metacity and
metacity-message man pages, thanks Piotr Engelking. (Closes: #365450)
[debian/metacity.1, debian/metacity-message.1]
* Fix watch file.
[ Marco Cabizza ]
* New upstream release, target experimental:
- Bumping up libgtk2.0-dev build-dep to 2.10
* Setting myself as the maintainer.
-- Marco Cabizza <marco87@gmail.com> Wed, 13 Sep 2006 18:46:45 +0200
metacity (1:2.14.5-2) unstable; urgency=low
* Remove superfluous dh_installcatalogs call and bump cdbs build-dep to
>= 0.4.37, thanks Peter Eisentraut. (Closes: #361156)
[debian/control, debian/control.in, debian/rules]
* Don't mention non-existing Info documentation in the metacity and
metacity-message man pages, thanks Piotr Engelking. (Closes: #365450)
[debian/metacity.1, debian/metacity-message.1]
* Fix watch file.
* Fix typo in debian/metacity-message.1; thanks Per Bojsen; closes: #397864.
-- Loic Minier <lool@dooz.org> Fri, 10 Nov 2006 09:38:49 +0100
metacity (1:2.14.5-1) unstable; urgency=low
* New upstream release.
-- Loic Minier <lool@dooz.org> Tue, 30 May 2006 15:47:36 +0200
metacity (1:2.14.3-1) unstable; urgency=low
[ Gustavo Noronha Silva ]
* New upstream release.
+ Doesn't steal focus (closes: #361273).
[ Josselin Mouette ]
* Make the package binNMU-safe.
+ Build-depend on dpkg-dev 1.13.19.
+ Use ${source:Version} and ${binary:Version}.
* Standards version is 3.7.2.
* Bump shlibs version to 2.14.
[ Loic Minier ]
* Stop shipping /usr/lib/*.la files in libmetacity-dev.
[debian/libmetacity-dev.install]
-- Josselin Mouette <joss@debian.org> Sun, 14 May 2006 23:30:56 +0200
metacity (1:2.14.1-2) unstable; urgency=low
* Simple rebuild to get rid of references to Xcursor.la / Xrender.la.
-- Loic Minier <lool@dooz.org> Tue, 2 May 2006 16:45:22 +0200
metacity (1:2.14.1-1) unstable; urgency=low
* New upstram version.
* Adds edge resistance. Closes: #191649.
* patches/000_raise-on-click.patch: Fixed upstream; dropped.
-- Dafydd Harries <daf@debian.org> Thu, 30 Mar 2006 19:50:23 +0100
metacity (1:2.12.3-3) unstable; urgency=low
* Also explicitely remove catalogs installed by past metacity packages.
[debian/metacity-common.preinst]
* Move these clenaups to postinst.
[debian/metacity-common.preinst, debian/metacity-common.postinst]
-- Loic Minier <lool@dooz.org> Sun, 12 Feb 2006 16:53:48 +0100
metacity (1:2.12.3-2) unstable; urgency=low
* Clean up metacity's postinst.
[debian/metacity.postinst]
* Clean up /etc/sgml/metacity.cat and .old left over by metacity.
[debian/metacity-common.preinst]
-- Loic Minier <lool@dooz.org> Sun, 12 Feb 2006 16:35:07 +0100
metacity (1:2.12.3-1) unstable; urgency=low
* New upstream release.
* Update patch to support a new raise on click mode and choice of this mode
to apply without fuzz. Also note this patch has been rejected upstream.
[debian/patches/000_raise-on-click.patch]
* New metacity-common package holds arch-independent files and registers
schemas. (Closes: #218365, #234665, #240211)
[debian/metacity.dirs, debian/metacity-common.links,
debian/metacity.install, debian/control, debian/control.in,
debian/metacity-common.postinst, debian/metacity.catalog,
debian/metacity-common.manpages, debian/metacity.postrm,
debian/metacity-common.dirs, debian/metacity-common.install,
debian/metacity-common.catalog, debian/changelog,
debian/metacity-common.postrm, debian/rules, debian/metacity.links,
debian/metacity.postinst, debian/metacity.manpages]
* Actually ship license information.
[debian/copyright]
* Version the metacity and libmetacity dependency on metacity-common with
Source-Version.
[debian/control, debian/control.in]
* Install SGML catalogs with dh_installcatalogs, move them below
/usr/share/sgml/metacity-common, in the metacity-common package.
[debian/control, debian/control, debian/metacity-common.catalog,
debian/metacity-common.postinst, debian/metacity-common.postrm,
debian/metacity-common.sgmlcatalogs, debian/rules]
* Drop the /usr/share/metacity/dtd symlink.
[debian/metacity-common.links]
* Drop /usr/share/sgml/dtd creation.
[debian/metacity-common.dirs]
* Drop useless /usr/share/metacity from metacity-common.
[debian/metacity-common.install]
* Drop obsolete cleanup "rm -rf".
[debian/rules]
* Give .dtd installation to dh_install.
[debian/metacity-common.install, debian/rules]
-- Loic Minier <lool@dooz.org> Sat, 11 Feb 2006 21:10:40 +0100
metacity (1:2.12.2-3) unstable; urgency=high
* Add xorg build-deps (libice-dev, libsm-dev, libx11-dev, libxext-dev,
libxinerama-dev, libxrandr-dev, x-dev) thanks to "xlibs-split".
(Closes: #347000)
[debian/control, debian/control.in]
* Relibtoolizing would get Debian's AC_PATH_XTRA, but I add a libxt-dev
build-dep and pass --as-needed because the patch was like uh 1.1 MB.
[debian/control, debian/control.in, debian/rules]
-- Loic Minier <lool@dooz.org> Mon, 9 Jan 2006 22:47:36 +0100
metacity (1:2.12.2-2) unstable; urgency=low
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 01:49:55 +0100
metacity (1:2.12.2-1) experimental; urgency=low
* New upstream release.
-- Jordi Mallach <jordi@debian.org> Sun, 25 Dec 2005 23:20:10 +0100
metacity (1:2.12.1-1) experimental; urgency=low
* New upstream release.
* watch: update for 2.12.
* 000_raise-on-click.patch: update to make patch apply cleanly.
* rules: bump shlibs for new symbols.
-- Josselin Mouette <joss@debian.org> Sun, 9 Oct 2005 16:50:22 +0200
metacity (1:2.10.3-2) unstable; urgency=low
* debian/control.in:
- don't Build-Depends on xlibs-pic, Build-Depend on libxinerama-dev
(Closes: #320589).
* debian/patches/000_metacity-debian-xinerama-pic.patch:
- not useful with xorg.
-- Sebastien Bacher <seb128@debian.org> Tue, 2 Aug 2005 17:40:43 +0200
metacity (1:2.10.3-1) unstable; urgency=low
* New upstream version.
* Bump Standards-Version to 3.6.2.
* Add CDBS' utils to rules.
-- Loic Minier <lool@dooz.org> Fri, 29 Jul 2005 10:56:05 +0200
metacity (1:2.10.2-1) unstable; urgency=low
* New upstream version.
-- Sebastien Bacher <seb128@debian.org> Tue, 28 Jun 2005 23:09:14 +0200
metacity (1:2.10.1-2) unstable; urgency=low
* Upload to unstable.
-- Jordi Mallach <jordi@debian.org> Sun, 12 Jun 2005 19:03:18 +0200
metacity (1:2.10.1-1) experimental; urgency=low
* New upstream version.
-- Sebastien Bacher <seb128@debian.org> Wed, 13 Apr 2005 17:35:20 +0200
metacity (1:2.10.0-1) experimental; urgency=low
* New upstream version.
* debian/patches/000_raise-on-click.patch:
- updated.
* debian/watch:
- updated.
-- Sebastien Bacher <seb128@debian.org> Fri, 8 Apr 2005 21:33:44 +0200
metacity (1:2.8.8-1) unstable; urgency=low
* GNOME team upload.
* New upstream release.
-- Jordi Mallach <jordi@debian.org> Wed, 29 Dec 2004 17:18:05 +0100
metacity (1:2.8.6-1) unstable; urgency=low
* New upstream release.
* Upload to unstable.
-- Sebastien Bacher <seb128@debian.org> Thu, 18 Nov 2004 13:23:27 +0100
metacity (1:2.8.5-2) experimental; urgency=low
* debian/metacity.postinst:
- removed the static gconf registration.
* debian/metacity-theme-viewer.1:
- manpage written by Jose M. Moya" <josem@die.upm.es> (Closes: #252108).
* debian/metacity-window-demo.1:
- manpage written by Jose M. Moya" <josem@die.upm.es> (Closes: #252110).
* debian/metacity.manpages:
- updated.
-- Sebastien Bacher <seb128@debian.org> Fri, 17 Sep 2004 22:11:51 +0200
metacity (1:2.8.5-1) experimental; urgency=low
* GNOME team upload.
* New upstream release.
* Sebastien Bacher:
- Switched to CDBS.
- debian/rules: converted to CDBS
- debian/*.files: replaced with .install files.
* J.H.M. Dassen (Ray):
- [debian/control.in] Bumped libstartup-notification0-dev as
configure requires 0.7.
* Jordi Mallach:
- debian/control.in: add cdbs to build-deps.
-- Jordi Mallach <jordi@debian.org> Tue, 14 Sep 2004 20:30:36 +0200
metacity (1:2.8.1-4) unstable; urgency=low
* debian/rules:
- added a dh_gconf call.
* debian/metacity.postinst:
- removed the static schemas registration, dh_gconf handles that right.
-- Sebastien Bacher <seb128@debian.org> Fri, 6 Aug 2004 18:17:03 +0200
metacity (1:2.8.1-3) unstable; urgency=low
* GNOME Team Upload.
* Upload in unstable.
-- Sebastien Bacher <seb128@debian.org> Wed, 26 May 2004 14:28:32 +0200
metacity (1:2.8.1-2) experimental; urgency=low
* debian/patches/000_raise-on-click.patch:
+ patch from bugzilla to choose to raise or not the window which has
the focus in mouse and sloppy modes. (Closes: #228768).
The gconf key to use is /apps/metacity/general/raise_on_click.
* Gnome Team Upload.
-- Sebastien Bacher <seb128@debian.org> Wed, 26 May 2004 14:19:51 +0200
metacity (1:2.8.1-1) experimental; urgency=low
* New upstream release.
* debian/patches/000_metacity-debian-xinerama-pic.patch:
+ updated
* GNOME Team Upload.
-- Sebastien Bacher <seb128@debian.org> Wed, 5 May 2004 21:17:15 +0200
metacity (1:2.8.0-3) experimental; urgency=low
* GNOME team upload.
* debian/rules: get the epoch included in the shlib version for
libmetacity0.
-- Jordi Mallach <jordi@debian.org> Tue, 6 Apr 2004 14:04:36 +0200
metacity (1:2.8.0-2) experimental; urgency=low
* Added Build-Depends on gnome-pkg-tools and libxml-parser-perl
(Closes: #240639).
-- Sebastien Bacher <seb128@debian.org> Sat, 3 Apr 2004 23:46:56 +0200
metacity (1:2.8.0-1) experimental; urgency=low
* New upstream release:
+ converts "show desktop mode" to "all windows are minimized" when
you open a new window (Closes: #217467).
+ fixes bug with panel not listed before clicking on them
(Closes: #224054).
+ fixes multi-tab handling (Closes: #227708).
+ includes always on top menu entry (Closes: #204212).
+ includes wireframes support (Closes: #184849).
+ should fix bug with applications changing workspace
(Closes: #224156, #230782).
+ switches window truncates title (Closes: #186324).
* debian/control.in, debian/rules:
+ adapted for the Gnome Team.
* debian/patches/000_metacity-debian-xinerama-pic.patch:
+ updated.
* debian/patches/001_metacity-focus.patch:
+ removed since the changes are included in the new version.
* debian/watch:
+ updated to 2.8 branch.
-- Sebastien Bacher <seb128@debian.org> Sun, 28 Mar 2004 12:26:22 +0200
metacity (1:2.6.3-2) unstable; urgency=low
* debian/patches/001_metacity-focus.patch :
+ new patch to fix focus problem with panels in mouse and sloppy modes
(Closes: #224858).
* Gnome Team Upload.
-- Sebastien Bacher <seb128@debian.org> Sun, 18 Jan 2004 19:31:49 +0100
metacity (1:2.6.3-1) unstable; urgency=low
* New upstream release.
* Gnome Team Upload.
-- Sebastien Bacher <seb128@debian.org> Sat, 20 Dec 2003 23:17:21 +0100
metacity (1:2.6.2-2) unstable; urgency=low
* debian/patches/000_metacity-debian-xinerama-pic.patch:
- updated to fix a link problem (Closes: #216693).
-- Sebastien Bacher <seb128@debian.org> Tue, 21 Oct 2003 13:56:24 +0200
metacity (1:2.6.2-1) unstable; urgency=low
* New upstream release.
* debian/patches/:
- 000_metacity-2.4.34-usage.patch: removed.
- 000_metacity-debian-xinerama-pic.patch: updated.
- 001_metacity-2.4.55-non-weak-symbols.patch: removed.
* Update Build-Depends.
* Gnome Team Upload.
-- Sebastien Bacher <seb128@debian.org> Sat, 18 Oct 2003 19:33:23 +0200
metacity (1:2.4.55-3) unstable; urgency=low
* debian/metacity.1:
- fixed the incorrect option. (closes: Bug#209159)
* debian/metacity.prerm:
- fixed removing alternatives issue. (closes: Bug#211502)
-- Akira TAGOH <tagoh@debian.org> Wed, 8 Oct 2003 18:44:56 +0900
metacity (1:2.4.55-2) unstable; urgency=low
* debian/patches/000_metacity-debian-xinerama-pic.patch:
- update to fix the unnecessary library dependencies in .la.
(closes: Bug#195774)
-- Akira TAGOH <tagoh@debian.org> Thu, 12 Jun 2003 01:25:45 +0900
metacity (1:2.4.55-1) unstable; urgency=low
* New upstream release.
* debian/patches/:
- 000_metacity-2.4.34-save-workspace.patch: removed.
- 001_metacity-2.4.55-non-weak-symbols.patch: updated.
-- Akira TAGOH <tagoh@debian.org> Mon, 2 Jun 2003 02:50:50 +0900
metacity (1:2.4.34-3) unstable; urgency=low
* debian/control:
- suggests gnome-control-center instead of metacity-properties.
(closes: Bug#192752)
- bumped Standards-Version to 3.5.10.0.
* debian/patches/001_metacity-2.4.34-non-weak-symbols.patch:
- applied a backported patch to fix undefined non-weak symbols.
(closes: Bug#187347)
* debian/metacity.postinst:
- set a priority to 60 for x-window-manager according to the latest
policy.
-- Akira TAGOH <tagoh@debian.org> Mon, 19 May 2003 06:30:37 +0900
metacity (1:2.4.34-2) unstable; urgency=low
* Revert to 2.4.34 to use stable release.
- should works now. (closes: Bug#187749, Bug#187387, Bug#187982)
* debian/README.Debian:
- described NVidia drivers issue. (closes: Bug#181056)
* debian/patches/:
- 000_metacity-2.4.34-usage.patch: applied it again.
- 000_metacity-2.4.34-save-workspace.patch: applied a backported patch
from CVS to really fix Bug#186033 in 2.4.34.
- 000_metacity-2.5.0-noframe-window.patch: removed.
-- Akira TAGOH <tagoh@debian.org> Mon, 14 Apr 2003 00:29:52 +0900
metacity (2.5.0-2) unstable; urgency=low
* debian/patches/:
- 000_metacity-debian-xinerama-pic.patch:
use libXinerama_pic.a instead of libXinerama.a.
- 000_metacity-2.5.0-noframe-window.patch:
applied a backported patch from CVS to work no frame window.
(closes: Bug#187316)
* debian/control:
- requires xlibs-pic >= 4.2.1-6.
-- Akira TAGOH <tagoh@debian.org> Fri, 4 Apr 2003 04:26:49 +0900
metacity (2.5.0-1) unstable; urgency=low
* New upsream release.
- Workspace names are saved now. (closes: Bug#186033)
* debian/control:
- bumped Standards-Version to 3.5.9.
- changed a section for libmetacity-dev to libdevel.
* debian/compat:
- use it instead of DH_COMPAT.
* debian/patches/
- 000_metacity-2.4.34-usage.patch: removed.
-- Akira TAGOH <tagoh@debian.org> Wed, 2 Apr 2003 00:16:38 +0900
metacity (2.4.34-1) unstable; urgency=low
* New upstream release.
- contains a fix of 64-bit bug. so should be fixed. (closes: Bug#179698)
- should be fixed. (closes: Bug#177814)
* debian/patches/000_metacity-2.4.34-usage.patch:
applied to fix a typo in usage. (closes: Bug#179699)
-- Akira TAGOH <tagoh@debian.org> Fri, 7 Feb 2003 04:38:32 +0900
metacity (2.4.21-2) unstable; urgency=low
* debian/control:
- suggests metacity-properties instead of gnome-control-center.
* debian/metacity.docs:
- moved from libmetacity0. (closes: Bug#178966)
* debian/metacity.postinst:
- run gconftool-2 with HOME=/root
-- Akira TAGOH <tagoh@debian.org> Sun, 2 Feb 2003 16:50:02 +0900
metacity (2.4.21-1) unstable; urgency=low
* New upstream release.
* debian/patches/:
- 000_metacity-2.4.13-args.patch: removed, because it was merged to the
upstream.
- 000_metacity-2.4.8-properties.patch: removed.
* debian/control: add Suggests: gnome-control-center.
* debian/rules: drop --enable-config-dialog. metacity-properties is
obsolete. use gnome-window-properties in gnome-control-center instead of.
-- Akira TAGOH <tagoh@debian.org> Wed, 29 Jan 2003 00:39:57 +0900
metacity (2.4.13-2) unstable; urgency=low
* debian/docs: add NEWS file (closes: Bug#176317)
-- Akira TAGOH <tagoh@debian.org> Tue, 14 Jan 2003 23:15:48 +0900
metacity (2.4.13-1) unstable; urgency=low
* New upstream release.
* debian/control:
- updated Build-Depends.
- add libgtk2.0-dev to Depends for libmetacity-dev
* debian/rules: enable startup-notification.
* debian/patches/:
- 000_metacity-2.4.8-dont-pass-NULL.patch:
removed.
- 000_metacity-2.4.13-args.patch:
applied to fix the working of configure options.
-- Akira TAGOH <tagoh@debian.org> Sat, 11 Jan 2003 07:06:24 +0900
metacity (2.4.8-4) unstable; urgency=low
* upstream bug was closed. so it should be fixed. (closes: Bug#152075)
* debian/rules: don't use dh_installwm until it will supports the
registration of manpage as slave.
* debian/metacity.postinst: runs update-alternatives. (closes: Bug#175756)
* debian/metacity.prerm: runs update-alternatives.
-- Akira TAGOH <tagoh@debian.org> Thu, 9 Jan 2003 03:40:15 +0900
metacity (2.4.8-3) unstable; urgency=low
* debian/metacity.postinst:
fix the wrong registration. (closes: Bug#173789, Bug#174358)
-- Akira TAGOH <tagoh@debian.org> Fri, 27 Dec 2002 05:01:25 +0900
metacity (2.4.8-2) unstable; urgency=low
* debian/patches/000_metacity-2.4.8-dont-pass-NULL.patch:
applied to fix the segfault at startup. (closes: Bug#173594, Bug#173604)
-- Akira TAGOH <tagoh@debian.org> Fri, 20 Dec 2002 01:08:43 +0900
metacity (2.4.8-1) unstable; urgency=low
* New upstream release.
* debian/patches/000_metacity-2.4.3-stack.patch:
removed, because this release contains it.
* debian/control:
- fix description-synopsis-ends-with-full-stop.
- add libmetacity0 and libmetacity-dev
* debian/rules:
- install metacity-theme.dtd as a sgml catalog. (closes: Bug#170041)
- build with --enable-config-dialog until we upload GNOME 2.2.
* debian/metacity.postinst:
- use gconftool-2 --get-default-source to get GCONF_CONFIG_SOURCE
- runs update-catalog.
* debian/patches/000_metacity-2.4.8-properties.patch:
applied to fix the missing file.
-- Akira TAGOH <tagoh@debian.org> Thu, 12 Dec 2002 09:21:35 +0900
metacity (2.4.3-2) unstable; urgency=low
* debian/patches/000_metacity-2.4.3-stack.patch: backported to fix the
random crashes. (closes: Bug#168653)
-- Akira TAGOH <tagoh@debian.org> Wed, 13 Nov 2002 00:32:14 +0900
metacity (2.4.3-1) unstable; urgency=low
* New upstream release. (closes: Bug#166919)
* debian/rules: support noopt option for DEB_BUILD_OPTIONS.
* debian/control: improve a description. Thanks stephen farrell.
-- Akira TAGOH <tagoh@debian.org> Thu, 7 Nov 2002 23:16:47 +0900
metacity (2.4.1-1) unstable; urgency=low
* New upstream release. (closes: Bug#160535)
- Should be fixed. (closes: Bug#157995)
* Set a priority to 40 for x-window-manager according to Bug#155680.
(closes: Bug#155494)
* debian/metacity.1: updated.
* debian/metacity-message.1: added.
* debian/control:
- bumped Standards-Version to 3.5.7.
- updated Build-Depends.
-- Akira TAGOH <tagoh@debian.org> Sat, 14 Sep 2002 20:01:35 +0900
metacity (2.4.0-1) unstable; urgency=low
* New upstream release.
- switching the workspaces should works now. (closes: Bug#151500)
* debian/control: update Build-Depends for libgtk2.0-dev.
-- Akira TAGOH <tagoh@debian.org> Fri, 9 Aug 2002 02:35:15 +0900
metacity (2.3.987-1) unstable; urgency=low
* New upstream release.
* debian/control: add libglade2-dev to Build-Depends (closes: Bug#149489)
-- Akira TAGOH <tagoh@debian.org> Tue, 11 Jun 2002 14:38:06 +0900
metacity (2.3.610-1) unstable; urgency=low
* New upstream release.
- Should be fixed in this release. (closes: Bug#146127)
-- Akira TAGOH <tagoh@debian.org> Wed, 5 Jun 2002 19:15:41 +0900
metacity (2.3.377-2) unstable; urgency=low
* debian/docs: includes theme-format.txt (closes: Bug#147644)
-- Akira TAGOH <tagoh@debian.org> Tue, 21 May 2002 19:24:00 +0900
metacity (2.3.377-1) unstable; urgency=low
* New upstream release.
-- Akira TAGOH <tagoh@debian.org> Tue, 21 May 2002 11:02:28 +0900
metacity (2.3.233-2) unstable; urgency=low
* debian/control: fix the misleading description. (closes: Bug#145942)
-- Akira TAGOH <tagoh@debian.org> Tue, 7 May 2002 14:29:36 +0900
metacity (2.3.233-1) unstable; urgency=low
* New upstream release.
-- Akira TAGOH <tagoh@debian.org> Sun, 5 May 2002 03:21:05 +0900
metacity (2.3.144-2) unstable; urgency=low
* debian/control: Add Provides: x-window-manager.
-- Akira TAGOH <tagoh@debian.org> Fri, 3 May 2002 07:31:17 +0900
metacity (2.3.144-1) unstable; urgency=low
* New upstream release.
- keybindings are configurable now. (closes: Bug#144657)
-- Akira TAGOH <tagoh@debian.org> Tue, 30 Apr 2002 03:32:36 +0900
metacity (2.3.89-1) unstable; urgency=low
* New upstream release.
* debian/scripts/vars.build: fix bashism.
* debian/rules: add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=yes to install
rule.
* debian/metacity.manpages: remove metacity-restart.1 entry. this command
no longer exists.
-- Akira TAGOH <tagoh@debian.org> Tue, 16 Apr 2002 21:35:19 +0900
metacity (2.3.55-1) unstable; urgency=low
* I have taken over from Thom.
* New upstream release.
* Build against the latest libraries (closes: Bug#139215)
* debian/rules:
- support DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE.
- support debug and nostrip options for DEB_BUILD_OPTIONS.
- copying the latest config.sub and config.guess.
-- Akira TAGOH <tagoh@debian.org> Tue, 26 Mar 2002 02:18:26 +0900
metacity (2.3.34-2) unstable; urgency=low
* Added build-depend on docbook-to-man (Closes: #134433)
-- Thom May <thom@debian.org> Sun, 17 Feb 2002 20:14:28 +0000
metacity (2.3.34-1) unstable; urgency=low
* Initial Release. (Closes: #107181)
-- Thom May <thom@debian.org> Sun, 10 Feb 2002 12:03:22 +0000
|