~townsend/compiz/fix-lp1244754-0.9.10

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
compiz (1:0.9.10-0ubuntu1) UNRELEASED; urgency=low

  [ Sam Spilsbury ]
  * Bump version to 0.9.10

  [ Łukasz 'sil2100' Zemczak ]
  * Remove debian/patches/unity_support_test.patch:
    - Running the support test from compiz has bad side effects, from now
      on we run it from Xsession.d

 -- Sam Spilsbury <smspillaz@interpol>  Thu, 25 Apr 2013 11:13:32 +0800

compiz (1:0.9.9~daily13.02.28-0ubuntu1) raring; urgency=low

  [ Sam Spilsbury ]
  * [nvidia] Moving windows freezes and stutters on nvidia (especially
    if some other window is redrawing). (LP: #1027211)

  [ Brandon Schaefer ]
  * [Regression] Lowering window by middle click doesn't switch focus to
    raised window (LP: #1034616)

  [ Sam Spilsbury ]
  * compiz crashed with SIGSEGV in DecorWindow::moveNotify()
    [decor.cpp:2791] (LP: #1056409)
  * [regression] r3523: Restored windows' contents are offset from (not
    aligned with) their frames (LP: #1089279)
  * Creating windows above just-destroyed windows causes newly created
    windows to receive invalid stack positions (LP: #1088399)

  [ Paul Donohue ]
  * Dim Inactive plugin disabled by default although stated  as enabled
    (LP: #808909)

  [ MC Return ]
  * Dim Inactive plugin disabled by default although stated  as enabled
    (LP: #808909)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3627

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Thu, 28 Feb 2013 04:02:37 +0000

compiz (1:0.9.9~daily13.02.26-0ubuntu1) raring; urgency=low

  [ Sam Spilsbury ]
  * debian/ccp_plugin.patch:
    - Added new option --no-auto-load-ccp to prevent the ccp
      plugin from autoloading. Useful for tests where having
      this behaviour just causes problems from unwanted side-effects
    - Also adjust test framework to pass the new option
    - Fix typo
  * debian/rules:
    - We already auto-load the ccp plugin, no need to add it to the
      default plugins.
  * debian/control:
    - Add xorg-gtest, xserver-xorg-dev, libxi-dev as build-deps
  * debian/ubuntu_config.patch:
    - Adjust EWMH test for new value

  [ Sam Spilsbury <sam.spilsbury@canonical.com>, Brandon Schaefer ]
  * [2013/02/20] compiz/unity don't run, just loading cpp (LP: #1130679)

  [ Sam Spilsbury ]
  * Unity: wrong window dimensions / location in Java applications (LP:
    #1110138)
  * Add copytex to default/unity profiles (LP: #1130160)
  * Closing windows sometimes shows black areas using Nvidia 313.x
    drivers (LP: #1119608)
  * [2013/02/20] compiz/unity don't run, just loading cpp (LP: #1130679)
  * Run xorg-gtest tests in CI (LP: #1120009)

  [ MC Return ]
  * CCSM: No icons and text in main screen, submenus of the plugins work
    normally (LP: #1130941)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3621

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Tue, 26 Feb 2013 04:02:36 +0000

compiz (1:0.9.9~daily13.02.19-0ubuntu1) raring; urgency=low

  [ Sam Spilsbury ]
  * debian/patches/100_workaround_virtualbox_hang.patch
    - VirtualBox uses a shared-memory texture_from_pixmap_implementation
    which is not compatible with our server grab usage, so force
    a different bind method when running with virtualbox and binding
    an externally managed texture

  [ Brandon Schaefer ]
  * Unity rendered behind windows (LP: #906231)

  [ MC Return ]
  * unmaximize_window_key instead of unmaximize_or_minimize_window_key
    exposed in g-c-c (LP: #1115128)

  [ Sam Spilsbury ]
  * [needs-packaging] Please upload: esvn merged (LP: #112433)
  * [nvidia] Windows appear blank white (LP: #729979)
  * Threads not found on CI (LP: #1124133)
  * Unity rendered behind windows (LP: #906231)
  * Compiz hangs in glXBindTexImageEXT in VirtualBox (LP: #1127866)
  * 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
    wrong values (LP: #1063617)
  * Creating windows above just-destroyed windows causes newly created
    windows to receive invalid stack positions (LP: #1088399)

  [ Marco Trevisan (Treviño) ]
  * Calling setOptionForPlugin does not work for core options (LP:
    #1122228)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3611

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Tue, 19 Feb 2013 08:46:08 +0000

compiz (1:0.9.9~daily13.02.08-0ubuntu1) raring; urgency=low

  [ MC Return ]
  * thumbnail.xml.in needs some love (LP: #1113459)
  * Thumbnail plugin: Window title text is rendered into transparency
    and glow/background are too large (LP: #1099100)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3601

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Fri, 08 Feb 2013 04:01:47 +0000

compiz (1:0.9.9~daily13.02.07-0ubuntu1) raring; urgency=low

  [ MC Return ]
  * [regression][GLES] gears plugin does not build any more (LP:
    #1020822)
  * Cube Gears plugin: Cylinders inside the gears are not rendered
    correctly (LP: #1117311)
  * compiz-profile-active-Default.convert and compiz-profile-active-
    Default.convert are referring to refres_rate and detect_refres_rate
    (LP: #1115243)
  * cppcheck static code analysis reveals some true positives (LP:
    #1114525)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3599

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Thu, 07 Feb 2013 06:19:48 +0000

compiz (1:0.9.9~daily13.02.04-0ubuntu1) raring; urgency=low

  [ Marco Trevisan (Treviño) ]
  * Spread - Window glow is incorrectly painted in the screen when
    switching spreaded application (LP: #1109805)

  [ MC Return ]
  * Coverity MISSING_BREAK - CID 12463 (LP: #1101561)
  * Thumbnail plugin: Window title text is rendered into transparency
    and glow/background are too large (LP: #1099100)
  * Showmouse plugin code: Needs cleanup (LP: #1105969)
  * Coverity SECURE_CODING - CID 10019 (LP: #957582)
  * Coverity SECURE_CODING - CID 12511 (LP: #1101605)
  * Coverity SECURE_CODING - CID 12512 (LP: #1101571)
  * Keyboard shortcut overlay says Ctrl+Super+Down "minimises" the
    current window, but it doesn't (LP: #966099)
  * Coverity SECURE_CODING - CID 10020 (LP: #957587)
  * Coverity SECURE_CODING - CID 12529 (LP: #1101641)
  * Coverity MISSING_BREAK - CID 12464 (LP: #1101549)
  * Coverity SECURE_CODING - CID 12519 (LP: #1101565)
  * Coverity SECURE_CODING - CID 12516 (LP: #1101499)
  * [GLES] Showmouse plugin needs port to OpenGL|ES (LP: #1106270)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3594

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Mon, 04 Feb 2013 04:01:58 +0000

compiz (1:0.9.9~daily13.01.25-0ubuntu1) raring; urgency=low

  [ Didier Roche ]
  * Really take default patched hsize and vsize and don't override them
    to fix (LP: #868423)

  [ sampo555 ]
  * [regression] Window resize granularity is lost when restored after
    using Grid (LP: #925867)
  * Window management - Restoring a grid-placed window by dragging the
    title bar downwards does not restore the original window width (LP:
    #878516)

  [ Daniel van Vugt ]
  * Several memory leaks in
    google::protobuf::DescriptorPool::InternalAddGeneratedFile() from
    google::protobuf::protobuf_AddDesc_*() (LP: #1102829)
  * Several leaks in g_settings_new() [g_object_new()] from
    ccsGSettingsNewNoPath() [ccs_gsettings_interface_wrapper.c:184] (LP:
    #1097649)
  * Several memory leaks in g_signal_new() ... from
    ccsGSettingsWrapperNewForSchema()
    [ccs_gsettings_interface_wrapper.c:184] from initBackend()
    [gsettings.c:468] (LP: #1102822)

  [ Sam Spilsbury ]
  * Several memory leaks in strdup() from
    ccsGSettingsIntegratedSettingReadValue() from
    ccsGNOMEIntegrationBackendReadISAndSetSettingForType() from
    ccsGNOMEIntegrationBackendReadOptionIntoSetting() (LP: #1100564)

  [ MC Return ]
  * Coverity MISSING_BREAK - CID 12468 (LP: #1101430)
  * Coverity MISSING_BREAK - CID 12466 (LP: #1101558)
  * Coverity MISSING_BREAK - CID 12467 (LP: #1101465)
  * Showmouse plugin: Possible values of the particle life setting can
    destroy the plugin's functionality (LP: #1098877)
  * Coverity MISSING_BREAK - CID 12465 (LP: #1101557)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3582

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Fri, 25 Jan 2013 04:03:43 +0000

compiz (1:0.9.9~daily13.01.21-0ubuntu1) raring; urgency=low

  [ Brandon Schaefer ]
  * Window Management - Implement maximize and semi-maximise transitions
    (LP: #689792)

  [ Sam Spilsbury ]
  * Several memory leaks in ccsIntegratedSettingListAppend() from
    ccsIntegratedSettingsStorageDefaultFindMatchingSettingsByPredicate()
    from
    ccsIntegratedSettingsStorageDefaultFindMatchingSettingsByPluginAndSe
    ttingName() (LP: #1100539)
  * Several leaks in g_settings_new() [g_object_new()] from
    ccsGSettingsNewNoPath() [ccs_gsettings_interface_wrapper.c:184] (LP:
    #1097649)
  * Compiz reports incorrect _NET_DESKTOP_GEOMETRY until first viewport
    switch (LP: #1096455)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3569

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Mon, 21 Jan 2013 04:01:41 +0000

compiz (1:0.9.9~daily13.01.17-0ubuntu1) raring; urgency=low

  [ Didier Roche ]
  * Launcher - Workspace switcher should not be in the Launcher by
    default (LP: #868423)

  [ MC Return ]
  * Workspacenames plugin: Requires text plugin to work (LP: #1100172)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3564

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Thu, 17 Jan 2013 07:03:41 +0000

compiz (1:0.9.9~daily13.01.14-0ubuntu1) raring; urgency=low

  [ sampo555 ]
  * compiz crashed with SIGSEGV in DodgeAnim::applyDodgeTransform() (LP:
    #1048840)
  * compiz crashing if window un-/minimize animation is "Random" (LP:
    #1098185)

  [ Daniel van Vugt ]
  * Several leaks in new GLProgram from compileProgram() from
    GLScreen::getProgram() from GLWindowAutoProgram::getProgram() (LP:
    #1097644)

  [ Sam Spilsbury ]
  * Several leaks in ccsIntegratedSettingListAppend() ... from
    ccsGNOMEIntegrationBackendGetIntegratedSetting() from readSetting
    (gsettings.c:375) (LP: #1097661)

  [ MC Return ]
  * Thumbnail Window Previews: Flickering of background/glow and window
    title text (LP: #1098758)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3561

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Mon, 14 Jan 2013 04:03:09 +0000

compiz (1:0.9.9~daily13.01.11-0ubuntu1) raring; urgency=low

  [ Jussi Pakkanen ]
  * Build warning "multiple rules generate gtk/gnome/compiz.desktop.
    build will not be correct; continuing anyway" (LP: #1086789)
  * Build uses pyrexc without checking that it exists (LP: #1086704)

  [ Iven Hsu ]
  * KWD: Appmenu always pops up at top-left corner of the screen (LP:
    #1089863)

  [ Matija Skala ]
  * findcompiz_install doesn't work (LP: #1051595)

  [ Michail Bitzes ]
  * [regression-r3320] firepaint doesn't paint any fire any more (LP:
    #1048505)

  [ Timo Jyrinki ]
  * Default blacklist string shouldn't contain double escape (LP:
    #1091103)

  [ Scott Moreau <oreaus@gmail.com>, MC Return <mc.return@gmx.net>, Sam Spilsbury ]
  * [needs-packaging] Wishlist: Missing plug-In: Wizard (LP: #1012330)

  [ Brandon Schaefer ]
  * Window management - When a monitor is disconnected, the windows do
    not move to the remaining monitor and the Launcher pips do not
    update (LP: #1002246)

  [ MC Return ]
  * [regression] thumbnail plugin does not build any more (LP: #1020825)
  * [regression-r3320][GLES]: showmouse plugin does not work anymore at
    all (LP: #1048267)

  [ Robert M <osfan6313@gmail.com>, Sam Spilsbury ]
  * CCSM segfaults if no settings found (LP: #1092651)

  [ Daniel van Vugt ]
  * [regression] Window resize granularity is lost when restored after
    using Grid (LP: #925867)
  * compiz_test_resize_logic: Multiple errors: Conditional jump or move
    depends on uninitialised value(s) (LP: #1097179)
  * Add support for blacklisting some drivers from using unredirected
    fullscreen windows (LP: #1089246)
  * [regression] compiz spends 31% of its CPU time in regexec() (LP:
    #1095001)
  * GLShaderCache::priv [PrivateShaderCache] is leaked (LP: #1097664)
  * [regression] r3523: Restored windows' contents are offset from (not
    aligned with) their frames (LP: #1089279)
  * On ARM lp:compiz defaults to GL instead of GLES and FTBFS unless you
    -DBUILD_GLES=ON (LP: #1088414)
  * [regression][GLES] wallpaper plugin does not build any more (LP:
    #1020830)
  * [regression-r3320] firepaint doesn't paint any fire any more (LP:
    #1048505)
  * findcompiz_install doesn't work (LP: #1051595)
  * [Regression] Minimizing a window creates an input-insensitive area
    if you have unityshell loaded (LP: #1089811)
  * [clang] lp:compiz r3523 FTBFS: unused function
    'ListValueToSettingValueList' [-Werror,-Wunused-function]  (LP:
    #1089250)
  * compiz fails to configure on arm with -DCOMPIZ_BUILD_TESTING=ON
    [package 'gl' not found] (LP: #1088419)
  * PrivateGLScreen::projection is leaked (LP: #1097657)
  * [clang] Multiple segfaults in test: SetSemantics (LP: #1089251)
  * Plugin names are not sorted (they're shown in directory order) when
    cmake is run (LP: #1096780)
  * Windows don't respond to input (mouse clicks) if XShape is disabled
    or unavailable (LP: #1087193)
  * cmake suggests (kind of) expo is disabled but it still builds
    correctly. (LP: #1083027)
  * EGL/GLES compiz builds do a eglWaitGL (synchronous wait) on every
    frame, likely to slow things down (LP: #1086779)
  * Incorrect detection of shader support on fglrx (LP: #1026920)
  * 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
    wrong values (LP: #1063617)
  * resize leaks memory in multiple locations calling
    resize::CompScreenImpl::findWindow() -> operator new() (LP:
    #1097126)

  [ Andrea Azzarone ]
  * Modal dialogs don't appear on the same workspace/monitor as their
    parent window (LP: #754508)
  * Multimonitor: New windows open on the wrong monitor, Place Plugin
    settings silently ignored (LP: #874146)

  [ Sam Spilsbury ]
  * [regression][GLES] cubeaddon plugin does not build any more (LP:
    #1020823)
  * [regression-r3320] Animations and modules/plugins missing in Ubuntu
    12.10 and 13.04 (LP: #1069112)
  * [nvidia] Moving or resizing windows freezes and stutters on nvidia
    (especially if some other window is redrawing). (LP: #1027211)
  * Clicking on semi-maximized windows in a different workspace fails to
    switch to the correct workspace (LP: #1037164)
  * CCSM segfaults if no settings found (LP: #1092651)
  * Building compiz with clang++ on raring fails to build libgtest (LP:
    #1095906)
  * Using grid-resize prevents windows from maximizing correctly (LP:
    #1093757)
  * 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
    wrong values (LP: #1063617)
  * ccp can fail to compile, as CompizPlugin is not included (LP:
    #1090845)
  * opengl plugin FTBFS with clang (LP: #1095915)

  [ Łukasz 'sil2100' Zemczak ]
  * FTBFS after python2.7 upgrade - missing pyconfig.h (LP: #1088996)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3554

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Fri, 11 Jan 2013 04:03:03 +0000

compiz (1:0.9.9~daily12.12.05-0ubuntu2) raring; urgency=low

  * Backport a tentative fix from rev 3387 for LP: #1060327

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 07 Dec 2012 09:28:46 +0100

compiz (1:0.9.9~daily12.12.05-0ubuntu1) raring; urgency=low

  [ Michael Terry ]
  * debian/control:
    - Update Vcs-Bzr
  * debian/patches/100_expo_layout.patch:
    - Fix to apply
  * Automatic snapshot from revision 3451 (bootstrap)
    - Fix crash from writing to static memory (LP: #1065814)
    - Fix maximized windows changing workspaces (LP: #1071791)
    - Respect Zoom Factor setting (LP: #1066187)
    - Respect Show Window Title setting (LP: #1009999)
    - Restore text background transparency (LP: #1042132)
    - Restore screenshot selection rectangle transparency (LP: #1047788)
    - Restore top and bottom cube transparency (LP: #1048272)
    - Fix scaleaddon window highlighting being solid (LP #1068503)
    - Make resize hint overlay disappear when changing edges (LP: #839602)
    - Preserve grid IDs during drag (LP: #1067812, LP: #1048855)
    - Save current display before doing snap preview (LP: #1068173)
    - Ignore inactive keybindings (LP: #1053280)
    - Handle <primary> in keyboard shortcuts (LP: #936840)
    - Make sure showdesktop plugin is loaded after unityshell (LP: #1067534)
    - Fix grid build failure (LP: #1067577)
    - Fix Jenkins test failures (LP: #1058577)
    - Don't allow duplicate static symbols when linking (LP: #1067964)
    - Make external templates C++0x compatible (LP: #1067598)
    - Make sure to initialize class members (LP: #1033877)
    - Don't duplicate templates in plugins (LP: #1066793, LP: #1066803,
      LP: #1066804, LP: #1066805, LP: #1066799, LP: #1066796,
      LP: #1066795, LP: #1066798, LP: #1067218, LP: #1067219)
    - Don't needlessly set gsettings keys (LP: #1064791)
    - Remove unused code (LP: #1037142, LP: #1067234)
    - Fix syntax highlighting for trunk xml files (LP: #1066823)
    - Fix documentation for building with python2 (LP: #1070211)

  [ Stephen M. Webb ]
  * Windows open below panel and launcher, grid does not work at all,
    window animations missing, and general plugin chaos if built on
    raring (cmake >= 2.8.10) (LP: #1085581)

  [ Iven Hsu ]
  * KDE Appmenu doesn't work with compiz decorators (LP: #1082265)
  * compiz 0.9.8.6 fails to build from source in KDE4-window-decorator
    with latest KDE 4.10 beta (LP: #1082152)
  * kde4-window-decorator crashes when starting up with oxygen theme
    (LP: #1050776)

  [ sampo555 ]
  * Grid: Window management - resize preview does not show when moving a
    window from the semi-maximised state to the maximised state in a
    single action (LP: #1071689)

  [ Timo Jyrinki ]
  * HTML5 video in Firefox continues to tear (LP: #1086337)

  [ MC Return ]
  * Workspacenames Plug-in: Wishlist: Default Appearance values not
    ideal (LP: #1075600)
  * Resizeinfo Plug-in: No possibility to change the color and
    transparency of the rounded background outline (LP: #1070297)
  * Resizeinfo Plug-in: Gradient color 2 and 3 settings are ignored and
    no background gradient is rendered (LP: #1070233)
  * Expo animations "Fade + Zoom" & "Vortex" result in a black screen
    (LP: #875311)
  * Workspacenames Plug-in: Wishlist: No default values for
    workspacenames, should be changed (LP: #1075584)

  [ Daniel d'Andrada ]
  * unity build fails if compiz is installed outside /usr (LP: #1084162)

  [ Daniel van Vugt ]
  * [regression] Window decorations ignore brightness/opacity changes in
    expo (LP: #1081425)
  * Unredirected fullscreen windows freeze and stay on top when wall
    sliding (Ctrl+Alt+Left/Right) (LP: #1084401)
  * Test failures:
    ExpoAnimationOffsetTest/ExpoWallOffsetTestAnimations.TestAnimationVa
    lues/21 (from ExpoAnimationOffsetTest_ExpoWallOffsetTestAnimations)
    (LP: #1071238)
  * Window management - Cursor position changes relative to window while
    dragging windows (LP: #201681)
  * Multi-monitor - Maximized windows cast shadows on adjacent monitors
    and workspaces (LP: #928807)
  * "Unredirect Fullscreen Windows" can cause significant tearing on
    fullscreen windows (especially playing video) (LP: #1051802)
  * 100_expo_layout.patch does not apply totally cleanly (LP: #1076876)
  * Tests 1-4 fail with SEGFAULT: CompizConfigPython.test_*
    (SEGFAULT)... (LP: #1080555)
  * Unredirect fullscreen windows should be the default for optimal
    performance (LP: #1063690)
  * lp:compiz r3447 FTBFS: compizconfig_test_ccs_object.cpp:123:9:
    error:        expression result unused [-Werror,-Wunused-value]
    GET_INTERFACE (Dummy2Interface, to);  (LP: #1075048)
  * [regression][GLES] obs opacity no longer applies to all window
    decorations (LP: #1028809)

  [ Andrea Azzarone ]
  * New windows are moved to front but don't take focus (LP: #781931)

  [ Sam Spilsbury ]
  * CompizConfigPython tests not using ini backend (LP: #1080989)
  * CMake Warning in src/tests/CMakeLists.txt:16 This command specifies
    the relative path (LP: #1082633)
  * CCSObjectDeathTest.GetInterface fails (LP: #1085687)
  * make test fails in CompizConfigPython.test_* (OTHER_FAULT)  (LP:
    #1070817)
  * It is possible to write to a plugin in compizconfig that has no
    associated gsettings schema (LP: #1078330)
  * CompizConfigPython tests not using ini backend (LP: #1077787)
  * When building with xorg-gtest, cmake fails to find xorg-gtest
    sources (LP: #1084096)
  * GLib warning - source still attached to context, but ref_count == 0
    on shutdown (LP: #1085590)
  * Can not find target to add properties to:
    compizconfig_gnome_gsettings_integrated_setting (LP: #1070411)
  * Fix LP: #1084796

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 3502

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Wed, 05 Dec 2012 09:27:30 +0000

compiz (1:0.9.8.4+bzr3412-0ubuntu1) raring; urgency=low

  * New upstream snapshot.
    - Avoid duplicate template instantiations of PluginClassHandler<>, at 
      least for those plugins that get re-used by others. (LP: #1065815)
    - Don't try to dereference NULL, which is returned by 
      ccsGConfIntegratedSettingReadValue when it gets unexpected data 
      from gconf. (LP: #1056615)
    - Stop the resize border (Rectangle resize mode) from flickering 
      slightly. (LP: #1068518)

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Fri, 09 Nov 2012 09:52:15 +0200

compiz (1:0.9.8.4+bzr3407-0ubuntu1) quantal-proposed; urgency=low

  * New upstream snapshot.
    - Cherry-picked fixes in Ubuntu merged to development branch
    - Fix leakage of destroyed_pixmaps_table, containing pointers to freed 
      decor_t's which could result in a freed GHashTable being passed into 
      g_hash_table_remove and causing a crash. (LP: #1060171)

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Fri, 12 Oct 2012 13:36:25 +0300

compiz (1:0.9.8.4-0ubuntu3) quantal-proposed; urgency=low

  * debian/config, debian/compiz-gnome.migrations,
    debian/00_remove_unityshell_in_gnome_session.py:
    - add the default gnome_session profile to use gsettings as the migrated
      user are on this profile (LP: #1036752). The existing migration scripts
      will upgrade the user config.
    - For new users and users already on quantal before this fix, remove the
      local config file created if you logged in the classic session hiding the
      system one. Also, as the global default is including the unity* plugins,
      remove them from the list of plugins the first time you log in.

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 17 Oct 2012 12:19:08 +0200

compiz (1:0.9.8.4-0ubuntu2) quantal; urgency=low

  * debian/patches/unity_support_test.patch:
    - force llvmpipe in the unity profile if we are in the grey zone, meaning:
      the card and drivers have opengl support, however, it doesn't met unity
      requirements (opengl < 1.4, no vertex shaders support). Thanks duflu
      (LP: #1039155)
      Note that we already discourage them to upgrade from precise to quantal
      with a warning before the upgrade, however let's get a slow ui rather
      than none on the iso as well.

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 09 Oct 2012 15:26:52 +0200

compiz (1:0.9.8.4-0ubuntu1) quantal-proposed; urgency=low

  * debian/control:
    - Add dependency on gnome-settings-daemon for compiz-gnome, since some
      tests need the g-s-d gsetting schemas
  * New upstream release.
    - FTBFS with -DCOMPIZ_BUILD_TESTING=OFF if libgtest-dev is not installed 
      (LP: #1057421)
    - [performance] glXSwapIntervalEXT called every frame, which is very slow 
      on Nvidia. (LP: #1051286)
    - opacify plugin: opacity isn't reset after switching window (LP: #1050757)
    - cmake fails on python 2.6 as sys.version_info does not contain 
      major_version or minor_version (LP: #1048964)
    - scale mode is not visible if a fullscreen window is unredirected 
      (LP: #1047168)
    - Unredirected fullscreen windows flicker briefly when another window 
      (like a menu) opens above them (LP: #1046664)
    - Week33 - Grid highlight window appears while switching between workspaces
      (LP: #1037142)
    - gtk-window-decorator leaks large numbers of pixmaps and pixmap memory 
      (LP: #1057263)
    - [fglrx] compiz crashed with SIGSEGV in glXDestroyContext() 
      [/usr/lib/fglrx/libGL.so.1] from GLScreen::~GLScreen() (LP: #1054724)
    - Maximized window gets unredirected when it's not fullscreen 
      (LP: #1053902)
    - Double shortcuts conflict with gnome-control-center ones (LP: #1050796)
    - gtk-window-decorator leaking window handles. Window operations become 
      sluggish after a few days of usage (LP: #1050610)
    - [valgrind] Up to 520,000 bytes lost when running 
      CCSGSettingsBackendConceptTest (LP: #1049169)
    - 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to 
      wrong values (LP: #1042041)
    - Compiz r3275 breaks VirtualBox Guest Additions: black screen or just 
      wallpaper (LP: #1030891)
    - Incorrect (low/stuttering) refresh rate with NVIDIA driver (LP: #92599)
    - ARM build broken with 'swapInterval' is not a member of 'GL' 
      (LP: #1056645)
    - compiz.fix_927168 broke ARM building (LP: #1052838)
    - compiz crashed with SIGSEGV in __strcasestr_ia32() from 
      ccsStringToModifiers(binding=NULL) (LP: #1041535)
  * Cherry-picked from upstream:
    - ABI bump due to an ABI change in the composite plugin
    - Removed schema keys still used in keybindings and automated tests 
      (LP: #1057955)

 -- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com>  Thu, 27 Sep 2012 15:43:59 +0200

compiz (1:0.9.8.2+bzr3377-0ubuntu1) quantal-proposed; urgency=low

  [ Sam Spilsbury ]
  * debian/python-compizconfig.install
    - Install compizconfig-python.pc
  * debian/patches/100_expo_layout.patch
    - re-add the expo layout that used to be in precise (LP: #1047067)
    - add some testcases

  [ Timo Jyrinki ]
  * New upstream snapshot.
    - Fix multiple window placement bugs (LP: #974242) (LP: #976032)
    - Don't waste CPU looping through and looking at all the windows if you're
      rendering an output that has no damage on it. (LP: #1014986)
    - Updated convert files to fix some typos in the key names. (LP: #1041631)
    - Fix crash when imgsvg is loaded, due to missing symbol
      (decor_apply_gravity from libdecoration). (LP: #956986)
    - Treat unresolved symbols at link time as an error, rather than letting
      them through and cause strange crashes later. (LP: #1043143)
    - Refactors a little bit of the upgrade code and gets it under test to
      prepare to fix (LP: #1042537)
    - Updated AUTHORS from the full bzr log, and re-sort the list.
      (LP: #1042095)
    - Fixes FTBFS for kde4-window-decorator (LP: #1041310)
    - Fix obvious omissions from the introduction of unminimize_*,
      which were causing the unminimize animation settings to be ignored
      (LP: #1040455)
    - resize plugin: don't crash if resize wasn't initiated externally
      (LP: #1045191)
    - Clean up capitalization (LP: #1045652)
    - Avoid division by zero, if plugins try to deform a window down to size
      zero. (LP: #1045235)
    - Make "Unredirect Fullscreen Windows" more reliable. This fixes the
      problem with unredirection failing to engage at all (LP: #1041066) when
      gtk-window-decorator creates offscreen windows that are stacked on top.
      This also fixes the problem with unredirect hiding all windows,
      because it thinks the desktop window should be stacked on top
      (LP: #980663).
    - Ensure unredirected windows don't stay unredirected if they're no longer
      on top. (LP: #1041047)
    - Fix launching terminal functionality and make show-hud default key 
      visible. Update the defaults to org.compiz.integrated to reflect the
      actual gnome values pre-gnome-3. (LP: #1040081) (LP: #1046199) 
      (LP: #1046190)
    - Fix show-hud, bump COMPIZ_GNOME_INTEGRATED_SETTINGS_LIST_SIZE.
      (LP: #1046212)
    - Fixed: Windows with an alpha-channel, like gnome-terminal, were not
      being considered as possibly covering fullscreen windows. But they most
      certainly can. This ensures such RGBA windows are visible if they're 
      stacked above a fullscreen window. (LP: #1046661)
    - Remove ListToStringList (LP: #1046184)
    - Fix typo causing CMake Error (LP: #1045665)
    - Transitions gtk-window-decorator over to use GSettings. Add a testing 
      framework for the options code. (LP: #1042323)
    - Also need kdeworkspace since kdecorationbridge.h is there
      (LP: #1046770)
    - Implements some cleanup that was suggested on the merge for the original
      port to gsettings. Other issues fixed as well. (LP: #1042323)
    - Fix the case where a new gsettings schema got added for building but
      it wasn't recompiled locally (LP: #1046701)
    - Scale: select the window under the pointer, when the scale animation 
      is over. (LP: #1045127)
    - Fixes the some "Use of uninitialised value" warnings reported by
      valgrind (LP: #1004336))
    - Check if org.gnome.mutter is available before using it (LP: #1048551)
    - We don't need to map our style windows, prevent them from cluttering 
      up the paint queue (LP: #1042552)
    - Migrate profile independent keys separately from the profile 
      dependent keys (LP: #1046190)
    - Don't ever enter the subdir of a plugin that is disabled. (LP: #1049100)
    - Workaround SubBuffer performance regression (LP: #1037411)
    - Changed the default placement of the benchmark window from 0,0 to
      100,50. (LP: #1039406)
    - Ensure window decorations always get rendered after the window, not
      before. This is how it was in compiz 0.9.7, and is required in order 
      to resolve unity panel shadow (LP: #1050704)
    - Fix CMakeLists.txt to bring an xslt file back to compiz-dev
    - Avoid a NULL dereference and give a useful error message instead
      (LP: #944653)
    - Fix (LP: #1050752)
    - Check that pixmaps which aren't managed by us actually exist before
      binding. (LP: #927168)
    - Fix flickering and performance problems with using Unredirect Fullscreen 
      Windows with multiple monitors. (LP: #1050749) (LP: #1051885)
  * debian/compiz-dev.install
    - Remove compizconfig-python.pc, now in python-compizconfig.install
  * Drop dependency on libgconf2-dev, add gconf2 dependency to the 
    transitional package for migrations
  * Add -DUSE_GCONF=OFF to debian/rules
  * debian/libdecoration0.symbols
    - Add decor_shadow_options_cmp
  * Cherry-pick fixes from trunk:
    - Fix FTBFS with BUILD_GLES
  * Restore 'Glide 2' unminimize animation via override

  [ Didier Roche ]
  * debian/libdecoration0.symbols:
    - update the symbols file
  * add and cherry-pick missing ABI breakage bump

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 20 Sep 2012 17:39:05 +0200

compiz (1:0.9.8.0-0ubuntu1) quantal-proposed; urgency=low

  * debian/control, debian/rules: 
    - enable gles on armel and armhf
    - use dh-translations rather than custom code

  [ Sam Spilsbury ]
  * Enable OpenGL ES building 
    - Refresh debian/patches/workaround_broken_drivers.patch
    - Remove non-ported plugins from compiz-plugins
    - Add FindOpenGLES2.cmake to compiz-dev

  [ Timo Jyrinki ]
  * New upstream release.
    - Code to make compiz work on GLES. This includes several changes 
      to the compiz API. (LP: #201342) (LP: #901097) (LP: #1004251)
      (LP: #1037710)
    - Draft first 0.9.8.0 NEWS and bump VERSION
  * debian/patches/compiz-package-gles2.patch:
    - Remove, obsoleted by the upstream GLES work 
  * Disable plugins that don't work on pure GLES on armhf/armel:
    - bench, firepaint, mblur, showmouse, splash, showrepaint, td, widget

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 31 Aug 2012 22:59:50 +0200

compiz (1:0.9.8+bzr3319-0ubuntu3) quantal; urgency=low

  * debian/control.in:
    - Recommends python-gconf for the migration script (lp: #1041498)
  * postinst/convert-files/compiz-profile-active-Default.convert, 
    postinst/convert-files/compiz-profile-Default.convert:
    - updated to fix some key names typos in the list (lp: #1041631)

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 28 Aug 2012 19:50:29 +0200

compiz (1:0.9.8+bzr3319-0ubuntu2) quantal-proposed; urgency=low

  * No change rebuild against the latest metacity

 -- Robert Ancell <robert.ancell@canonical.com>  Fri, 24 Aug 2012 16:36:28 +1200

compiz (1:0.9.8+bzr3319-0ubuntu1) quantal-proposed; urgency=low

  [ Didier Roche ]
  * debian/patches/ubuntu-config.patch:
    - refresh with latest trunk
  * debian/*docs:
    - remove the TODO copy now removed upstream
  * debian/compiz-plugins.install:
    - install stackswitch, trip plugins
  * debian/rules, debian/control:
    - remove the compiz gnome-control-center key sedding through metacity.
      Compiz now directly ships them.
    - we do not need metacity-common anymore as a build-dep then
  * debian/compiz-gnome.migrations, debian/control:
    - build-dep on dh-migrations and ship gconf -> gsettings migration file

  [ Matthieu Baerts (matttbe) ]
  * Update apport hook for python3 ; thanks to Edward Donovan (LP: #1013171)

  [ Timo Jyrinki ]
  * New upstream snapshot.
    - Fix Compiz crash in movementWindowOnScreen (LP: #1015151)
    - Start window decorator when decor plugin starts (LP: #1014461)
    - Fixed: Crash in compiz::wall::movementWindowOnScreen (LP: #1015151)
    - Don't waste memory leaving /bin/sh running (LP: #1015422)
    - Add reliable detection of the compiz bin directory (LP: #1015898)
    - Check if the window would actually paint before painting the shadow, 
      since it is possible that another plugin could be inhibiting paint of 
      the dock   window. (LP: #1012956)
    - Don't insert the window into the server list above the window it was
      created above. (LP: #1008020) (LP: #886605)
    - makes compiz enhanced zoom and show mouse plugins considerably
      smoother to use (LP: #930783)
    - Don't set decoration contexts on undecorated windows, since that 
      might be read later and code will assume the window is decorated when 
      it isn't. (LP: #1015593)
    - Fix potentially unterminated string leading to an uninitialized memory
      read (LP: #1018302)
    - Lift the 31/32 character restriction on key names that was causing so 
      many warnings. It's now 1024 characters according to glib. (LP: #1018730)
    - Don't print the result of BUILD_DEB. It prevents ccsm et al from 
      installing. (LP: #1018916)
    - Use the XDamage extension more efficiently (the way it was designed to be
      used). This dramatically reduces CPU usage, reduces wakeups, and 
      increases frame rates. It also solves at least one observed performance 
      bug (LP: #1007299) and probably several more.
    - Do the initial work to get libcompizconfig under test. (LP: #990690)
    - Add support for initiating window picker in other than nomal mode. For 
      now added only the additional 'All windows' picker (LP: #933776) 
      (LP: #955035)
    - Fixes (LP: #1018602) : An invalid read when using g_variant_iter_loop.
    - Don't allow unbinds of textures kept around for animations in any case, 
      not just resizing. (LP: #1016366)
    - Wait for the server to finish processing requests before doing a bind
      (LP: #1016367)
    - Using the next/previous bindings the wall plugin didn't calculate 
      correctly the next workspace when it reaches the begin or the end of a 
      row of workspaces, so it didn't jump to the next line. (LP: #904205).
    - Added the plug-in "Stack Window Switcher" converted from git to bzr 
      (including full history) to Compiz. (LP: #1012205)
    - Added the unsupported, but fully working plug-in "workspacenames"
    - Added the plug-in "Trip" (LP: #1012213)
    - Add extra checks to avoid passing an invalid xid to XGetWindowProperty 
      which would result in fatal error: BadWindow (invalid Window parameter).
      (LP: #1019337)
    - Fix crash LP: #1019337 properly this time.
    - Added .convert files (for gsettings-data-convert) and a migration python
      script (best for usage with session-migrations) for migrating some compiz
      settings from gconf to gsettings
    - Fix CMake error when USER environment variable is not set (LP: #1023772)
    - Avoid severe artifacts and flickering when using LLVMpipe (LP: #1021104)
    - Fix build failure due to invalid sed expression (LP: #1023738)
    - Generate the CTestFile.cmake using cmake itself (LP: #1024214)
    - Avoid random build failures "_intltool_update-NOTFOUND: not found"
      by verifying intltool-update exists. If not, then fail cmake more 
      cleanly with a nice error message telling the user how to install 
      it. (LP: #1023742)
    - Fixed CompTimerTestCallback.TimerOrder failure on slow 
      systems (like valgrind) (LP: #1021139)
    - Fix incorrect shell expansion, leading to invalid "sed" syntax 
      (LP: #1029383)
    - Install the cmake helper macros and check for them in 
      COMPIZ_CMAKE_MODULE_PATH (LP: #1024179)
    - Fixed: schemas were getting installed to ${DESTDIR} twice
    - Reduced combined filesizes of Compiz' .png resources from 2.2MB to 
      1.5MB by re compression of those with Trimage Image Compressor.
    - Added test module for the migration script created by Francis Ginther
    - Adds a COVERAGE argument to compiz_discover_tests
    - Fixed various problems described in bug 1030473, optimizing 
      performance and style (LP: #1030473)
    - Fixed commands addon desription typo (LP: #1033085)
    - Reduced the scope of the variable 'icccm_version', removed a break 
      that can never be executed, added the variables 'frameType', 
      'frameState' and 'frameActions' to decor_quads_to_property in the 
      #else branch in KWD::Switcher::updateWindowProperties () as well and 
      simplified calc_button_size (decor_t *d) in cairo.c.. (LP: #1030473)
    - Always call terminate callbacks for key bindings. ATM we call just the 
      first callback. (LP: #960652)
    - Make valgrind shut up about some known "leaks" in python and glib.
      Fix some leaks in the tests in the process.
    - Implemented single click exit from expo screen. (LP: #1033531)
    - Restore the fix for avoiding re-entering the glib event loop and 
      crashing. (LP: #1036490)
    - Including rsvg-cairo.h is now deprecated. (LP: #1039482)
    - Add keybinding integration for gnome-control-center
    - Separate the configuration for the minimize and unminimize animations.
      (LP: #1036739)
    - Ignore mouse press and release if it does not happen inside of the expo
      screen. (LP: #1036542). 
    - Additional keys from metacity to convert to GSettings
    - Maximize vertically if pointer reaches top or bottom edges.
    - Explicitly depend on resize-options. (LP: #1039834)
    - Add some docstring warnings about using those classes directly.
    - Fix some memory management issues on the mock objects, namely:
      Make destructor functions virtual where appropriate, so that we can add 
      them to lists polymorphically. Support polymorphic ccs*Unref function.
      Also make some other necessary changes to libcompizconfig.
    - Detect if rsvg 2.36.2 is installed (LP: #1039843)
    - GSettings integration backend, created a testsuite for it. Refactors a 
      bunch of the backend code, adds appropriate testsuites and refactors 
      the integration code to make it more flexible. (LP: #1035261)
  * Update compiz-core.lintian-overrides
  * Enable GSettings backend and install the schema files
  * Switch the default profile to use gsettings 
  * Add dependency on gsettings-desktop-schemas(-dev)
  * Add compiz-gnome.gsettings-override
  * Update gsettings-override to new paths org.compiz.*
  * Add support for disabling gconf schemas installation
    - However, not enabled because of gtk-window-decorator for now
  * Add libcompizconfig_gsettings_backend.so
  * Workaround to install xml files

  [ Łukasz 'sil2100' Zemczak ]
  * debian/control, debian/rules:
    - add dependency and use dh-migrations
  * debian/compiz-gnome.migrations:
    - use a migrations file for installing the script for migrating gconf
      configuration to gsettings
  * debian/patches/ubuntu-config.patch:
    - changed keybinding for initiate window picker, according to the design
      specification

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Thu, 23 Aug 2012 09:56:05 +0300

compiz (1:0.9.8+bzr3249-0ubuntu4) quantal; urgency=low

  * Restore the maintainer script, the profile part is needed

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 15 Aug 2012 17:46:48 +0200

compiz (1:0.9.8+bzr3249-0ubuntu3) quantal; urgency=low

  * Remove unity-2d 2nd fallback mechanism for autologin as unity-2d
    is now deprecated: (part one of LP: #1035261)
    - debian/65compiz_profile-on-session,
      debian/compiz-gnome.install:
      remove conffile and don't install it
    - debian/compiz-gnome.maintscript:
      remove it on upgrade

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 15 Aug 2012 14:58:39 +0200

compiz (1:0.9.8+bzr3249-0ubuntu2) quantal; urgency=low

  * debian/control:
    - take latest libjpeg8 instead of 62
    - fix a missing Replaces: on libcompizconfig0 (LP: #1019270)

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 29 Jun 2012 18:10:50 +0200

compiz (1:0.9.8+bzr3249-0ubuntu1) quantal-proposed; urgency=low

  * New upstream snapshot.
    - Fall back to a refresh rate that is more likely to look correct; 60Hz.
      (LP: #1009338)
    - Benchmark plugin should consume its key binding, and not pass the key to
      the underlying window. (LP: #1009320)
    - Avoid needless STL operations leading to expensive heap operations.
      (LP: #1006335)
    - Fix a typo that was causing (LP: #1002606)
      (widthIncBorders/heightIncBorders)
    - Check if the window is decorated before trying to change its event window
      states (which won't exist if not decorated) (LP: #1007754)
    - Use the XDamage extension more efficiently (the way it was designed to be
      used). This dramatically reduces CPU usage, reduces wakeups, and
      increases frame rates. It also solves at least one observed performance
      bug (LP: #1007299) and probably several more.
    - Avoid constructing and destructing lots of strings on every single event,
      which was wasting lots of CPU (LP: #1005569)
    - md LINGUAS doesn't exist, it's mnk (Mandinka in ISO 639-3)
    - Move grid plugin to google test and don't depend on the plugin for the
      test (LP: #1005009)
    - Don't read plugin.Initialized and test the value. (LP: #1004848)
    - libcompizconfig's install () commands were still using the old includedir
      and libdir variables rather than their libcompizconfig_* variants.
      (LP: #1005176)
    - Execute the cmake files separately to ensure that DESTDIR is respected.
      (LP: #1005177)
    - Don't set_target_properties on a target that might not exist
      (LP: #1005008)
    - Don't allow windows which we weren't even tracking as decoratable to
      become decorated if they try and change their hints. (LP: #963794)
    - Change the mouse pointer while dragging windows in expo. Just like the
      ubuntu branches do. (LP: #987647)
    - Fix uninitialized memory use (LP: #1004338)
    - Fix uninitialized variable (LP: #1004335)
    - Delay unbinding of pixmaps until then next rebind (LP: #729979)
      (LP: #1002602)
    - Don't drop plugins from the list to try and load before you've even tried
      to load them. Doing so makes missing plugins silently ignored instead of
      an error message (LP: #1002715). It also means valid plugins in more
      unusual, but real locations in LD_LIBRARY_PATH will never get loaded
      (LP: #1002721).
    - If running test cases under a real X server, we don't care if Xvfb is
      missing (LP: #994841)
    - Don't assume pkg_check_modules always sets _PREFIX (LP: #993608)
    - Don't clear selections in ~PrivateScreen because it causes a race between
      the existing and the new compiz instances, breaking --replace and
      non-replace behaviour. (LP: #988684) (LP: #989545)
    - Always paint with infiniteRegion as the clip region if the window is
      transformed and always use the supplied region if painting with offset or
      on transformed screen. (LP: #987639)
    - Add synchronization primitives to the decoration protocol so that there
      isn't a race where we bind a texture that's being freed. (LP: #454218) 
      (LP: #929989)
    - fix a crash in the first attempt at this (LP: #996901)
    - Reintroduce the fix for LP: #994841 which was accidentally reverted by
      revision 3133. (LP: #999019)
  * Cherry-pick some post-snapshot crasher fix:
    - rev for Crash in compiz::wall::movementWindowOnScreen (rev 3255)
      (LP: #1015151)
    - Don't set decoration contexts on undecorated windows, since that might be
      read later and code will assume the window is decorated when it isn't.
      (LP: #1015593). rev 3261
  * debian/control:
    - clean build-deps, removing some suggests and rewritting some descriptions
      to fit the reality
    - change Vcs-Bzr to canonical branch
  * add libcompizconfig package:
    - debian/control:
      - add some build-deps
      - add the new packages
    - debian/libcompizconfig0.install, debian/libcompizconfig0-dev.install:
      - added the install files,
      - removed some unused profiles
    - add debian/config for default profile (wasn't shipped anymore upstream)
  * merge compiz-plugins-main, compiz-plugins-main-default,
    compiz-plugins-main-dev and compiz-plugins-extra to this package
    both .install and .install.armhf, .install.armel):
    - compiz-plugins-main-default plugins are now in compiz-plugins-default
    - compiz-plugins-main plugins are now in compiz-plugins
    - compiz-plugins-extra plugins are now in compiz-plugins-extra
    - compiz-plugins-main-dev and some part of compiz-plugins-extra content
      is now in compiz-dev
    - the gconf configuration part is now in compiz-gnome (won't appear if the
      .so file isn't installed in ccsm)
    - debian/control:
      * add the necessary build-dep
      * add the needed replaces
      * add transitional compiz-plugins-main-default, compiz-plugins-main,
        compiz-plugins-main-dev and compiz-plugins-extra packages
  * add python-compizconfig to the package:
    - debian/control:
      add the necessary build-dep, remove cython as in universe and adapt
      upstream code to only use pyrexc
    - debian/rules:
      build with dh_python2
    - add debian/python-compizconfig.install
  * add compizconfig-settings-manager to the package:
    - debian/control:
      * drop some deps
      * add a recommends on -default instead of compiz-plugins
    - add debian/compizconfig-settings-manager.install
  * Remove compiz-kde:
    - not anymore supported upstream
    - remove the build-deps as well
    - remove some reference to -kde in description and depends
    - remove the install file
  * compiz-core:
    - remove and don't install debian/compiz-decorator wrapper anymore
    - same with debian/compiz-decorator.1
    - run gtk-window-decorator in debian/patches/ubuntu-config.patch by default
    - put some dev files in compiz-dev now
  * removing compizconfig-backend-gconf, making this package (as well as the
    new gsettings backend) part of compiz-gnome:
    - added to the .install files
    - added the C/R/P to compiz-gnome
    - added the transitional package
  * debian/patches/ccp_plugin.patch:
    - adapted to new upstream code and style
  * Misc:
    - remove a lot of compiz-fusion and compiz-wrapper references (deprecated,
      upgrade path not supported anymore) in debian/control
    - remove a lot of breaks: replaces: pre-12.04
    - update debian/libdecorator0.symbols
    - set python-compizconfig section to python
    - set some lintian non applicable warnings in *.lintian-overrides
    - merging every patches for every independent sources in this source
    - add debian ccsm manpage (debian/compizconfig-settings-manager.manpages,
      debian/patches/ccsm.1)
    - enable building compiz in parallel
    - switch to dh9
    - build on unversionned boost -dev
    - shipped new workspacename plugin
    - adding some replaces for locale installation support as well
  * debian/patches/99_valid_ccsm_desktop_file.patch:
    - create a valid ccsm desktop file
  * debian/copyright, debian/watch:
    - redone, as new packaging, new source content, new host (launchpad)
  * debian/patches/ubuntu-config.patch:
    - don't expose on edge
  * debian/source/format:
    - remove v3 (quilt) format: it doesn't work well with merge-upstream
      workflow
  * Note that right now, armhf/armel are building with opengl as opengles is
    not yet backed into upstream and opengles drivers are broken in quantal
    kernel

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 19 Jun 2012 12:25:07 +0100

compiz (1:0.9.7.8-0ubuntu3) quantal; urgency=low

  * drop -Werror temporary on armel/hf builds until the GLES patch does 
    not produce warnings anymore which cause compiz to FTBFS

 --  Oliver Grawert <ogra@ubuntu.com>  Mon, 04 Jun 2012 17:38:35 +0200

compiz (1:0.9.7.8-0ubuntu2) quantal; urgency=low

  * debian/control:
    - rebuild with new boost

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 31 May 2012 09:41:01 +0200

compiz (1:0.9.7.8-0ubuntu1) precise-proposed; urgency=low

  [ Didier Roche ]
  * New upstream bug fix release:
    - [fglrx] Title bar does not update on non-maximized windows (LP: #770283)
    - Some apps (like Remmina) can't full-screen under Compiz (or Unity)
      (LP: #946388)
    - Compiz-core fails to compile with gcc-4.7 - 'cc1plus: all warnings
      being treated as errors' (LP: #972519)
    - Menu shadow clipping flickers while switching menubar items/indicators
      (LP: #978900)
    - Compiz should not move windows to workspace 0,0 when restarted
      (LP: #980026)
    - regression / unable to interact with window-titlebar (window decoration)
      after minimizing/unminimizing gnome-terminal (LP: #981703)
  * debian/patches/workaround_770283.patch,
    debian/patches/fix_976467.patch:
    - removed, upstreamed

  [ Oliver Grawert ]
  * update the GLES2 patch for the new upstream release.

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 26 Apr 2012 09:19:51 +0200

compiz (1:0.9.7.6-0ubuntu2) precise-proposed; urgency=low

  [ Łukasz 'sil2100' Zemczak ]
  * debian/patches/workaround_770283.patch:
    - Workaround a problem with fglrx not refreshing window decoration textures
      on pixmap modification (LP: #770283)

  [ Oliver Grawert ]
  * update GLES patch for new quilt patch, fix issue with GLES patch that
    forcefully unapplied other quilt patches and resulted in
    gtk-window-decorator to not be started.

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 20 Apr 2012 18:25:13 +0200

compiz (1:0.9.7.6-0ubuntu1) precise; urgency=low

  [ Didier Roche ]
  * New upstream release:
    - Memory leak in dlloaderListPlugins (LP: #968985)
    - priv->invisible is not updated when the window is mapped (LP: #969102)
    - window management, multi-monitor - In multi-monitor environment, windows
      should spread on the monitor in which they reside (LP: #919139)
    - Drop-down menus look disembodied from their titles (LP: #659816)
    - Improve performace of the shadow clipping code (LP: #931883)
    - DecorWindow::computeShadowRegion called way too much (LP: #969101)
    - white box randomly shows up at top left corner blocking application
      from using stuff under it (LP: #940603)
  * Rebuild against latest metacity to get the HUD key configuration
    exposed in unity 3D as well (LP: #969256)
  * debian/patches/ubuntu-config.patch:
    - set multioutput_mode to all outputs (windows to be scaled on each the
      monitor they are on only) (LP: #919139)
  * debian/patches/fix_976467.patch:
    - Fix shadows being clipped incorrectly (LP: #976467)

  [ Oliver Grawert ]
  * update the GLES2 patch for the new upstream release.

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 11 Apr 2012 18:35:39 +0200

compiz (1:0.9.7.4-0ubuntu3) precise; urgency=low

  * fix typo in copying of the cmake files, so FindOpenGLES2.cmake ends up in
    the right place for other packages (i.e. compiz-plugins-main on GLES2
    capable arches)
  * make copying the GLES2 cmake file architecture specifc instead of ignoring
    if it is not found on arches that do not have it.

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 06 Apr 2012 13:55:13 +0200

compiz (1:0.9.7.4-0ubuntu2) precise; urgency=low

  * enable Linaros compiz-package-gles2.patch for armhf(/el) builds, thanks
    to Alexandros Frantzis <alexandros.frantzis@linaro.org> for creating it.
  * enable quilt in debian/rules
  * apply patches based on debian architecture via series.<arch> file
    (stolen from eglibc)
  * add build deps to libgl1-mesa-dev and libgl-dev for armhf builds
  * add armel/armhf specific .install files since only a subset of modules can
    be built yet.

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 05 Apr 2012 19:09:27 +0200

compiz (1:0.9.7.4-0ubuntu1) precise; urgency=low

  * New upstream release
    - compiz crashed with SIGSEGV in CompositeScreen::compositingActive()
    - Window management - Closing one window sends others to the
      background (LP: #888704)
    - [regression] Invisible resize border is now only 1px wide (LP: #953839)
    - Coverity REVERSE_INULL - CID 10888 (LP: #957572)
    - Unity dash opens and immediately closes if you tap Super+A
      quickly (LP: #960831)
    - Unity 5.8: Flickering and corruption on Unity UI elements (LP: #963093)
    - Unity 5.8: Can't login to Unity since upgrade to 5.8 (LP: #963465)
    - [regression] Unity 5.8+Compiz 0.9.7.2: Pressing Super+Tab or
      Super+W works, but unity does not respond to when Super is
      released. (LP: #963470)
    - Unity 5.8: Login to blank screen (all black or just wallpaper)
      (LP: #963633)
    - Tests do not build when libgtest-dev is installed but libgtest
      isn't (LP: #964248)
    - Note that this fix is REMOVED for stability reasons:
       Unity/compiz intercepts Super and Alt keypresses from grabbed
       windows like VMs. (806255)
  * debian/patches/ubuntu-config.patch:
    - tweak slightly the shadow border for both active/inactive windows.
    - change the shortcuts as per design request: (LP: #969235)
      Ctrl + Super + D Minimises all windows
      Ctrl + Super + Cursor up Maximises the current window
      Ctrl + Super + Cursor down Restores or minimises current window
  * debian/rules, debian/compiz-gnome.gconf-defaults:
    - move the default for the unity-less default profile from DEFAULT_PLUGINS
      list as it seems compiz tries to load that list, then ccp, then the
      profile list.
    - put the active_plugins list back to the Default profile in gconf then.
  * debian/control:
    - set Standards-Version to latest
  * remove debian/patches/always_replace.patch,
    debian/patches/exit_1_if_composite_cant_init.patch,
    debian/patches/reset_active_plugin_list.patch,
    debian/reset-compiz-gconf, debian/compiz-gnome.install:
    - the 3 bad hacks are now not necessary anymore (LP: #963264)
  * remove as now in upstream tarball:
    - debian/patches/fix_953839.patch
    - debian/patches/revert_lim.patch
    - debian/patches/fix_953089_2.patch
    - debian/patches/fix_960831.patch

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 03 Apr 2012 15:43:16 +0200

compiz (1:0.9.7.2-0ubuntu4) precise; urgency=low

  * No-change upload to the release pocket instead of to -proposed, so we can
    get the package built on all archs immediately instead of it blocking on
    gtk+3.0's build on armel.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Mon, 26 Mar 2012 14:57:30 -0700

compiz (1:0.9.7.2-0ubuntu3) precise-proposed; urgency=low

  * debian/reset-compiz-gconf:
    - Fix crash in a new session

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 26 Mar 2012 20:35:33 +0200

compiz (1:0.9.7.2-0ubuntu2) precise-proposed; urgency=low

  * debian/patches/reset_active_plugin_list.patch:
    temporary wrapper from resetting the plugin list to the default.
    Uncorrect and unknown plugin makes various side effects, like removing
    plugins, creating hanging at startup and also creating on screen
    corruption. (LP: #963633)

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 26 Mar 2012 18:41:09 +0200

compiz (1:0.9.7.2-0ubuntu1) precise-proposed; urgency=low

  [ Łukasz 'sil2100' Zemczak ]
  * New upstream snapshot:
    - Fix global menu not being ergonomical on large screens (LP: #682788)
    - Fix Alt+Right arrow key (LP: #943612)
    - Fix key bindings for actions while doing tap detection (LP: #944631)
    - Window movement is erratic and buggy, backport (LP: #923683)
    - CompScreenImpl::addAction(CompAction*): Assertion `priv->initialized'
      failed (LP: #946118)
    - gtk-window-decorator crash with SIGSEGV in max_window_name_width()
      (LP: #937815)
    - Finish the implementation of the locally integrated menubars
      (LP: #931245)
    - Unity/compiz intercepts keystrokes from grabbed windows (LP: #806255)
    - Pressing alt doesn't show the menu title bar in top panel (LP: #943194)
    - Fix Alt stealing focus from widgets (LP: #943851)
    - Fix Alt + drag (LP: #945373)
    - lp:compiz-core fails parallel builds (make -jN) (LP: #938417)
    - Changing the HUD shortcut disables all Alt-based combinations. And
      changing the Dash shortcut disables all Super-based shortcuts
      (LP: #945816)
    - Fix key bindings (such as Super) not working on empty workspace or on 
      slow/loaded systems (LP: #953089)
    - compiz crashed with signal 5 in Glib::exception_handlers_invoke()
      (LP: #808007)
    - Fix segfault caused by r3043 (LP: #958540)
  * Removed cherry-picked patches:
    - debian/patches/fix_806255.patch
    - debian/patches/fix_923683.patch
    - debian/patches/fix_943194.patch
    - debian/patches/fix_944631.patch
    - debian/patches/fix_alt_pressing.patch
    - debian/patches/additional_alt_tapping_fix.patch

  [ Didier Roche ]
  * pick upstream fix, debian/patches/fix_953839.patch:
    [regression] Invisible resize border is now only 1px wide (LP: #953839)
  * debian/patches/revert_lim.patch:
    - revert the integrated menu patch. It won't be released in precise and
      triggers a regression (in bug #962085)
  * debian/patches/fix_953089_2.patch:
    - second trial to fix remaining corner cases
  * debian/patches/exit_1_if_composite_cant_init.patch:
    - try to workaround a crasher which seems to happen when the composite
      plugin failed to initialize. Hopefully exiting 1 will make gnome-session
      respawning compiz and then the init will work. (LP: #833729)
  * debian/patches/always_replace.patch:
    - right now, always replace the current WM as it seems that some people
      got another compositor running at the start of the session. This will
      hopefully workaround the issue that some people experience.

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 23 Mar 2012 09:13:51 +0100

compiz (1:0.9.7.0+bzr3035-0ubuntu1) precise; urgency=low

  [ Łukasz 'sil2100' Zemczak ]
  * New upstream snapshot:
    - Fix gtk-window-decorator crash upon demaximizing a window (LP: #930071)
    - Fix core keybindings (LP: #930412)
    - Fixes compiz crash with SIGSEGV on shutdown (LP: #931283)
    - Plugins can't tell the difference between a key-tap and modifier
      key-release (LP: #925293)
    - compiz-core r3001 (and 3002) ftbfs (LP: #933226)
    - Semi-maximized windows have no shadow or frame (LP: #924736)
    - Untranslated strings in gtk-window-decorator (LP: #780505)
    - Initialize the _NET_WM_STATE_FOCUSED (LP: #932087)
    - [regression] Customized shortcuts don't work (LP: #931927)
    - Window stacking problem (LP: #936675)
    - Quickly demaximized windows can receive maximized window decorations if 
      they were initially maximized (LP: #936778)
    - Maximized windows do not get shadows at all (LP: #936774)
    - [regression] Launcher, top panel and keyboard un-responsive after using 
      any Super-x shortcut (LP: #934058)
    - No draggable border if mutter isn't installed (LP: #936781)
    - Fix compiz crash with SIGSEGV in XDefineCursor() (LP: #936487)
    - Fixes memory leak at DecorWindow::updateSwitcher() (LP: #940115)
    - Unresolved symbols in plugins cause compiz to exit (LP: #938478)
    - Fix compiz spending about 51% of its CPU time in CompRegion 
      construction/destruction (LP: #940139)
    - Fix Conditional jump or move depends on uninitialised value(s) in 
      decor_match_pixmap (LP: #940066)
    - Fix 'show desktop' behaviour (LP: #871801)
    - Tweak algorithm used to cast shadows on maximized windows (LP: #936784)
    - "Svg" and "Png" should be "SVG and "PNG" (LP: #942890)
    - Fix invalid memory usage after free() in DecorWindow (LP: #943116)
    - Fix alt + F10 (LP: #943223)
  * Removed cherry-picked patches
  * debian/patches/fix_944631.patch:
    - Always replay the keyboard if something was grabbed and didn't trigger 
      an action and don't trigger actions which aren't added accidentally 
      (LP: #943612) (LP: #944631)
  * debian/patches/fix_923683.patch:
    - Backports a patch which prevents the shift race condition

  [ Didier Roche ]
  * debian/patches/fix_alt_pressing.patch:
    - Patch from ddv to fix all the regressions with the alt key fix and other
      (LP: #943851, #945373)
    - Fix Quicklist are not showing if right-clicking a launcher icon in Expo
      mode if triggered by Super + S (LP: #944979)
  * debian/patches/fix_806255.patch:
    - Unity/compiz intercepts keystrokes from grabbed windows (LP: #806255)
  * debian/patches/fix_943194.patch:
    - second part for the alt key fix (LP: #943194)
  * debian/patches/additional_alt_tapping_fix.patch:
    - again another alt tapping related fix for some regressions from the
      previous branch. Taken from "tapping-panacea" upstream branch.

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 12 Mar 2012 10:22:10 +0100

compiz (1:0.9.7.0~bzr3025-0ubuntu1~ppa1) precise; urgency=low

  * New upstream snapshot:
    - Fix gtk-window-decorator crash upon demaximizing a window (LP: #930071)
    - Fix core keybindings (LP: #930412)
    - Fixes compiz crash with SIGSEGV on shutdown (LP: #931283)
    - Plugins can't tell the difference between a key-tap and modifier
      key-release (LP: #925293)
    - compiz-core r3001 (and 3002) ftbfs (LP: #933226)
    - Semi-maximized windows have no shadow or frame (LP: #924736)
    - Untranslated strings in gtk-window-decorator (LP: #780505)
    - Initialize the _NET_WM_STATE_FOCUSED (LP: #932087)
    - [regression] Customized shortcuts don't work (LP: #931927)
    - Window stacking problem (LP: #936675)
    - Quickly demaximized windows can receive maximized window decorations if 
      they were initially maximized (LP: #936778)
    - Maximized windows do not get shadows at all (LP: #936774)
    - [regression] Launcher, top panel and keyboard un-responsive after using 
      any Super-x shortcut (LP: #934058)
    - No draggable border if mutter isn't installed (LP: #936781)
    - Fix compiz crash with SIGSEGV in XDefineCursor() (LP: #936487)
    - Fixes memory leak at DecorWindow::updateSwitcher() (LP: #940115)
    - Unresolved symbols in plugins cause compiz to exit (LP: #938478)
    - Fix compiz spending about 51% of its CPU time in CompRegion 
      construction/destruction (LP: #940139)
    - Fix Conditional jump or move depends on uninitialised value(s) in 
      decor_match_pixmap (LP: #940066)
    - Fix 'show desktop' behaviour (LP: #871801)
  * Removed cherry-picked patches:
    - debian/patches/fix_871801.patch
    - debian/patches/fix_924736.patch
    - debian/patches/fix_925293.patch
    - debian/patches/fix_930412.patch
    - debian/patches/fix_931283.patch
    - debian/patches/fix_931473.patch
    - debian/patches/fix_931927.patch
    - debian/patches/fix_931958.patch
    - debian/patches/fix_932087.patch
    - debian/patches/fix_933226.patch
    - debian/patches/fix_gtk_w_d_crash.patch

 -- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com>  Mon, 27 Feb 2012 14:53:05 +0100

compiz (1:0.9.7.0~bzr2995-0ubuntu5) precise; urgency=low

  * Change some keybindings as per design (LP: #878820, #891757, #751050)
    debian/patches/ubuntu-config.patch:
    - Show desktop is now Super + d
    - Super + Up maximize the window
    - Super + Down restore the window
    - Super + W initiate scale for all windows on current ws
    - Control + Alt + NumPad 5 is used to switch/restore maximize state
    - Control + Alt + NumPad 0 is used to minimize current window
    - Ensure we don't have any conficting keys anymore (LP: #922354)
  * 01_ctrl_alt_*tea*.patch:
    - Merged into ubuntu-config.patch, no reason to keep it separated
  * debian/compiz-gnome.gconf-defaults, debian/rules, debian/unity.ini:
    - Set the new plugin order with the incoming unity change as the default

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 22 Feb 2012 13:44:25 +0100

compiz (1:0.9.7.0~bzr2995-0ubuntu4) precise; urgency=low

  * debian/patches/fix_925293.patch:
    - rollback that patch as well, not ready for wide consumption
      (triggered side effects)

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 17 Feb 2012 10:00:16 +0100

compiz (1:0.9.7.0~bzr2995-0ubuntu3) precise; urgency=low

  * debian/patches/series:
    - rollbacking fix_931473.patch which was supposed to fix
      "Rendering menus leaves transparent areas". Apparently, the fix does
      the opposite effect on most configurations. Reverted it put it back in
      the previous state and the ghost menus are way less common.

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 16 Feb 2012 20:47:35 +0100

compiz (1:0.9.7.0~bzr2995-0ubuntu2) precise; urgency=low

  * debian/compiz-kde.install, debian/control, debian/rules:
    - disable right now kde build for compiz-kde package. It's using
      deprecated kde libraries and fails to build on armel. It's
      probably as well not needed anymore as most of kde users are using
      kwin which is better integrated to kde than compiz. There is not
      anymore upstream compiz maintenance on this plugin as well.
      (LP: #931500)
  * debian/patches/fix_931958.patch:
    impossible to click on keyring dialog since the upgrade. Doesn't really
    fix 931958 as per say, but another issue impacting seahorse.
  * debian/patches/fix_871801.patch:
    window management, alt-tab - After using 'show desktop' to minimise
    all windows, opening any new window also incorrectly restores all
    the minimised windows (LP: #871801)
  * debian/patches/fix_925293.patch:
    Add support for key "tap" detection (LP: #925293)
  * debian/patches/fix_933226.patch:
    Fix FTBFS in previous commit (LP: #933226)
  * debian/patches/fix_932087.patch:
    Initialize the _NET_WM_STATE_FOCUSED (LP: #932087)
  * debian/patches/fix_931473.patch:
    - Menus don't fully appear (LP: #931473)
    - Rendering menus leaves transparent areas (LP: #932813)
  * debian/patches/fix_931927.patch:
    - Customized shortcuts don't work in compiz 1:0.9.7.0~bzr2995-0ubuntu1
      (LP: #931927). Breaks API/ABI.

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 16 Feb 2012 15:11:51 +0100

compiz (1:0.9.7.0~bzr2995-0ubuntu1) precise; urgency=low

  [ Didier Roche ]
  * New upstream snapshot:
    - Fix slow/stuttering display with fglrx (LP: #763005)
    - Don't dynamically link to compiz_core
    - Fix build failures with glib 2.30 (oneiric) (LP: #921406)
    - Fix uninitialized variable warnings in valgrind (LP: #921451)
    - Fixes up a bunch of boost::variant edge cases
    - Fixes a race condition where the xig restart test would fail spuriously
    - Incorrect (low/stuttering) refresh rate with NVIDIA driver (LP: #92599)
    - Benchmark window slows the system and degrades graphics resources
      (LP: #254561)
    - Windows that hide themselves when closed don't appear in any
      "this workspace" switcher  (LP: #684731)
    - hang in g_spawn_sync and select()  (LP: #690239)
    - word misspelled - bunding  (LP: #694169)
    - sometimes, restored window placed too high.  (LP: #716521)
    - Compiz clears the root window in the installer session  (LP: #720679)
    - unity-window-decorator: When switching between windows, Orca does
      not speak the title of the focused window.  (LP: #724093)
    - Cannot open a window that starts iconified  (LP: #732997)
    - Minimize animation flickr when for maximized apps  (LP: #737125)
    - Pixmap memory leak in gtk-window-decorator  (LP: #740258)
    - Windows should not automatically be focused when opened if the
      focus is on another application  (LP: #748840)
    - [sandybridge] Graphics tearing when playing video  (LP: #755841)
    - Compiz's "Sync to Vblank" makes display stutter/slow with fglrx
      (LP: #763005)
    - [regression] Moving windows lags behind the mouse by 1-2 seconds;
      appear to freeze when dragging.  (LP: #764330)
    - Launcher - Spread should not affect the state of window  (LP: #764673)
    - Clicking on a tweet/message link sometimes does not work  (LP: #790565)
    - scrolling on top of a close animation switches viewports  (LP: #795065)
    - unity video tearing when moving windows in oneiric with
      nvidia-current  (LP: #798868)
    - dialogs really slow to be displayed since the compiz update (LP: #812711)
    - It is possible to stack windows relative to windows that are
      destroyed  (LP: #837252
    - Should keep list of windows last sent to server and last recv
      from server  (LP: #841727)
    - compiz and X can disagree on the stacking order  (LP: #845719)
    - A minimized window 'remains' behind on the desktop if
      /apps/compiz-1/plugins/unityshell/screen0/options/
      show_minimized_windows is set to true  (LP: #847967)
    - maximized windows fail to update their input extents when
      undecorated  (LP: #853734)
    - resizing bugs with xterm  (LP: #854725)
    - crash on closing a window  (LP: #856015)
    - Java application windows cut-off/truncated/not displayed properly
      (LP: #857201)
    - compiz crashed with SIGSEGV in CompScreen::insertServerWindow()
      (LP: #857487)
    - compiz crashed with SIGABRT in raise()  (LP: #857738)
    - Applications which create multiple windows that are transients of
      each other can be given invalid stack positions  (LP: #858625)
    - Windows move to 0,0 on compiz restarts  (LP: #858629)
    - Crash when selecting Evolution in alt-tab  (LP: #859431)
    - invisible window when a window is mapped but not yet drawn on by
      the process mapping it  (LP: #860286)
    - race condition in configureXWindow causes unpredicatable window
      geometry changes  (LP: #860304)
    - windows that are decorated while resizing can cause incorrect
      resize results  (LP: #860306)
    - Moving a window while it is being resized by core caused
      unpredictable movement  (LP: #860309)
    - Windows which are marked transients of docks should be treated
      like docks  (LP: #860397)
    - can't maximize windows on second monitor and Qt windows displayed
      in wrong place  (LP: #861341)
  * debian/compiz-decorator, debian/compiz-gnome.install,
    debian/compiz-plugins-default.install,
    debian/compiz-plugins.install,
    debian/compiz-gnome.gconf-defaults, debian/rules, debian/unity.ini:
    - no more unity-window-decorator, switch back to gtk-window-decorator
    - remove plugins that are not shipped anymore
    - don't set in the default list plugins that are not shipped anymore
  * debian/libdecoration0.symbols:
    - upated to latest
  * Removed cherry-picked patches:
    - debian/patches/02_fix_autofocus_minimize_window.patch
    - debian/patches/03_fix_configureframe.patch
    - debian/patches/04_fix_insertServerWindow_crash.patch
    - debian/patches/05_fix_reconfigureXWindow_crash.patch
    - debian/patches/fix-748840.patch
    - debian/patches/fix-832150.patch
    - debian/patches/fix-863328.patch
    - debian/patches/fix-864330.patch
    - debian/patches/fix-864478.patch
    - debian/patches/fix-865863.patch
    - debian/patches/fix-866752.patch
    - debian/patches/fix-869316_869919.patch
    - debian/patches/fix-869967.patch
    - debian/patches/fix-886978.patch
    - debian/patches/fix_slow_vsync_lp763005.patch
    - debian/patches/rev_2821_fix_807487.patch
    - debian/patches/rev_2847_bug_796594.patch
    - debian/patches/rev_2878_bug_865696.patch
    - debian/patches/rev_2884_fix_874004.patch
    - debian/patches/rev_2890_fix_879253.patch
  * debian/rules:
    - the abi file is now renamed to core/abiversion.h
    - remove the .a
    - Remove -Bsymbolic-functions from LDFLAGS as it causes libcompiz_core to
      be loaded once per plugin when dlopened
    - don't run tests, they don't run on headless server anymore
  * debian/compiz-core.install:
    - contain new libcompiz-core lib
  * debian/compiz-kde.install:
    - do not ship kde part for now, it's broken upstream
  * debian/patches/ubuntu-config.patch:
    - default configuration is here now.
  * debian/patches/fix_gtk_w_d_crash.patch:
    - additional backport for gtk-w-d crash (LP: #930071)
  * debian/patches/fix_930412.patch:
    - backport to fix keybindings not working (LP: #930412)
  * debian/patches/fix_931283.patch:
    - trunk commit to fix a crash on shutdown (LP: #931283)
  * debian/patches/fix_924736.patch:
    - additional fix for getting the shadow active on maximized window
      (LP: #924736)

  [ Sam Spilsbury ]
  * Remove unused plugins, disable tests by default
  * debian/patches/ccp_plugin.patch : force load the cpp plugin if not
    specified
  * debian/patches/workaround_broken_drivers.patch : workaround broken
    drivers that do binary detection
  * debian/patches/default_drag_key.patch : add a default in case mutter
    isn't installed

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 13 Feb 2012 15:28:06 +0100

compiz (1:0.9.6+bzr20110929-0ubuntu8) precise; urgency=low

  * Drop build dependency on libdecoration0-dev (built from this very same source).

 -- Matthias Klose <doko@ubuntu.com>  Sun, 04 Dec 2011 22:21:08 +0100

compiz (1:0.9.6+bzr20110929-0ubuntu7) precise; urgency=low

  * Upload to precise

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 10 Nov 2011 09:11:57 +0100

compiz (1:0.9.6+bzr20110929-0ubuntu6) oneiric-proposed; urgency=low

  * debian/patches/rev_2821_fix_807487.patch:
    - unity-window-decorator crashed with SIGSEGV in
      g_datalist_id_set_data_full() (LP: #807487)
  * debian/patches/rev_2847_bug_796594.patch:
    - Window behaviour - pressing the 'restore' window indicator on a
      semi-maximised window should return it to the restored state
      (LP: #796594)
  * debian/patches/rev_2878_bug_865696.patch:
    - Windows from other workspaces missing decorations in window spread 
      (LP: #865696)
  * debian/patches/rev_2884_fix_874004.patch:
    - When a window is minimized on another workspace it doesn't appear
      in the spread (LP: #874004)
  * debian/patches/rev_2890_fix_879253.patch:
    - Makes the previous patch building and not crashing.
  * Add some upstream missing bits from previous fixes:
    - debian/patches/fix-864330.patch
    - debian/patches/fix-864478.patch
  * debian/patches/fix-886978.patch:
    - compiz crashes with SIGSEGV in PrivateWindow::configure (LP: #886978)

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 20 Oct 2011 14:23:52 +0200

compiz (1:0.9.6+bzr20110929-0ubuntu5) oneiric-proposed; urgency=low

  * debian/patches/fix-864330.patch:
    - fix windows which can have towed moving (LP: #864330)
  * debian/patches/fix-864478.patch:
    - Window shading is broken (LP: #864478)

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 12 Oct 2011 10:44:49 +0200

compiz (1:0.9.6+bzr20110929-0ubuntu4) oneiric-proposed; urgency=low

  * debian/control:
    - don't suggest nvidia-glx, it's part of the old initial packaging
      and probably a bad hint on non nvidia system (LP: #844218)
  * Cherry-pick upstream patches:
    - Windows should not automatically be focused when opened if the focus
      is on another application (LP: #748840)
    - Launcher - If a spread contains minimised windows, when the spread
      exits, the minimised windows momentarily appear on the desktop
      before disappearing (LP: #863328)
    - reproducible stacking bug in compiz (LP: #869316)
    - Click-dragging a window that's stacked above a fullscreen window will
      cause it to go underneath the fullscreen window (LP: #869919)
    - sometimes the keyboard input doesn't go to the apparently focussed
      dialog (LP: #869967)
    - Opening mumble can cause it to be stacked above the dash if you
      open the dash at the same time (LP: #865863)
    - Sometimes configure events are missed and windows move slow as a result
      (LP: #866752)
    - Workaround ubuntu desktop unity. Mouse at the left side doesn't reveal
      launcher (LP: #832150)

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 06 Oct 2011 17:57:36 +0200

compiz (1:0.9.6+bzr20110929-0ubuntu3) oneiric; urgency=low

  * debian/patches/04_fix_insertServerWindow_crash.patch:
    - compiz crashed with SIGSEGV in CompScreen::insertServerWindow()
      (LP: #857487)
  * debian/patches/05_fix_reconfigureXWindow_crash.patch:
    - compiz crashed with SIGABRT in raise() (LP: #857738)

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 04 Oct 2011 13:49:01 +0200

compiz (1:0.9.6+bzr20110929-0ubuntu2) oneiric; urgency=low

  * debian/patches/02_fix_autofocus_minimize_window.patch:
    - closing a window gives focus to last minimized window (LP: #862719)
  * debian/patches/03_fix_configureframe.patch:
    - compiz crashed with SIGSEGV in PrivateWindow::configureFrame()
      (LP: #861909)

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 04 Oct 2011 08:29:38 +0200

compiz (1:0.9.6+bzr20110929-0ubuntu1) oneiric; urgency=low

  * New upstream snapshot:
    - Workspace switcher makes windows lose decorations (LP: #853951)
    - compiz crashed with SIGSEGV in PrivateWindow::addWindowStackChanges()
      (LP: #861793)
    - sometimes, restored window placed too high (LP: #716521)
    - can't maximize windows on second monitor and Qt windows displayed in
      wrong place (LP: #861341)
  * 091_no_use_gnome_but_desktop_file.patch:
    - partially committed upstream, no more needed

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 29 Sep 2011 09:21:42 +0200

compiz (1:0.9.6-0ubuntu1) oneiric; urgency=low

  * New upstream release 0.9.6:
   - Windows which are marked transients of docks should be treated like docks (LP: #860397)
   - Applications which create multiple windows that are transients of each other can be given invalid stack positions (LP: #858625)
   - race condition in configureXWindow causes unpredicatable window geometry changes (LP: #860304)
   - invisible window when a window is mapped but not yet drawn on by the process mapping it (LP: #860286)
   - resizing bugs with xterm (LP: #854725)
   - Cannot open a window that starts iconified (LP: #732997)
   - maximized windows fail to update their input extents when undecorated (LP: #853734)
   - Clicking on a tweet/message link sometimes does not work (LP: #790565)
   - crash on closing a window (LP: #856015)
   - Windows move to 0,0 on compiz restarts (LP: #858629)
   - windows that are decorated while resizing can cause incorrect resize results (LP: #860306)
   - remove transient window handling from unity-window-decorator (LP: #856096)

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 28 Sep 2011 14:15:21 +0200

compiz (1:0.9.5.94+bzr20110919-0ubuntu1) oneiric; urgency=low

  * New upstream snapshot:
    - "maximized windows fail to update their input extents when undecorated"
      (LP: #853734)
    - Panel shadow conflicts with Window shadow in Ubuntu Classic Desktop
      Session (LP: #731685)
    - "unity-window-decorator: When switching between windows, Orca does not
      speak the title of the focused window (LP: #724093)
    - Dash and launcher appear underneath windows (LP: #805087)
    - A minimized window 'remains' behind on the desktop if
      /apps/<…>/show_minimized_windows is set to true (LP: #847967)
    - compiz and X can disagree on stacking order (LP: #845765)
    - Should keep a list last sent and last recv from server (LP: #841727)
    - Minimize animation flickr when for maximized apps (LP: #737125)
    - Dash and launcher appear underneath windows (LP: #805087)
    - Stacking problem when switching between apps with multiple windows
      (LP: #802527)

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 22 Sep 2011 14:49:10 +0200

compiz (1:0.9.5.94+bzr2803-0ubuntu5) oneiric; urgency=low

  * debian/compiz-gnome.install:
    - install the upgrade profile as well

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 15 Sep 2011 20:10:48 +0200

compiz (1:0.9.5.94+bzr2803-0ubuntu4) oneiric; urgency=low

  * debian/profile_upgrades/com.canonical.unity.unity.02.upgrade:
    - upgrade the settings for the expo changes (LP: #837545)
  * debian/patches/01_ctrl_alt_*tea*.patch:
    - make Ctrl + Alt + T the default in compiz too as if you unity --reset
      to reset all the keys in gconf, it will revert the associated key
      for metacity in gnome-control-center

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 15 Sep 2011 19:59:40 +0200

compiz (1:0.9.5.94+bzr2803-0ubuntu3) oneiric; urgency=low

  * debian/profile_upgrades/com.canonical.unity.unity.01.upgrade,
    debian/compiz-gnome.install:
    - upgrade configuration to remove uneeded staticswitcher and add
      pause to spread as default for the switcher (LP: #838075)
  * debian/control:
    - breaks on unpatched libcompizconfig as it would otherwise lead to
      a desktop with only "staticswitcher" enabled

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 14 Sep 2011 17:21:35 +0200

compiz (1:0.9.5.94+bzr2803-0ubuntu1) oneiric; urgency=low

  [ David Barth ]
  * New upstream release 0.9.5.94
    - Merge in change to have a serverWindows () this break the API
    - "mumble fix", ie "It is possible to stack windows relative to windows that are destroyed" (LP: #837252)
    - fix for "Severe screen corruption after rotate the screen" (LP: #833549)
    - Remove inactive API
    - Fix for "vp switch causes windows to move further offscreen" (LP: #831987)
    - Debug messages removed
    - Memory leak fix in gtk and unity window decorators
    - Fix further issues with shaped windows mapping/unmapping (rev. 2793)
  * removed patches that were integrated into the new upstream release
    - debian/patches/100_core-fix-rev-2794.patch
    - debian/patches/101_memleak-fix-rev-2794.patch
    - debian/patches/102_attrib-fix-rev-2796.patch
    - debian/patches/103_driver_workaround.patch

  [ Didier Roche ]
  * debian/rules, debian/compiz-gnome.install, debian/compiz-keybindings.sed:
    - readd and tweak some compiz keys for g-c-c and Gnome integration
      This fixes Ctrl + Alt + T to open a terminal (LP: #820266)

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 12 Sep 2011 08:09:46 +0200

compiz (1:0.9.5.92+bzr2791-0ubuntu1) oneiric; urgency=low

  * debian/65compiz_profile-on-session:
    - the default profile is "ubuntu" (that fix missed in the vcs it seems)
  * debian/compiz-decorator:
    - go back to the unity decorator, the unitydialog work got rolled back
  * debian/rules:
    - don't use gsettings, it needs testing and is not ready for Oneiric
  * debian/patches/103_driver_workaround.patch:
    - backported new revision from trunk to fix ati binary drivers issue

  [ David Barth ]
  * Re-apply some distro-patches that were dropped upstream
  * debian/compiz-gnome.install:
    - remove gsettings schemas
  * debian/compiz-core.install:
    - add additional decorator files
  * debian/libdecoration0.symbols: update
  * debian/compiz-core.install: remove references to:
    -debian/tmp/usr/bin/simple-decorator
    -debian/tmp/usr/bin/decoration_inspector
    -debian/tmp/usr/share/simple-decorator/simple-decoration.png
    -debian/tmp/usr/share/decoration_inspector/decoration_inspector.xml
  * debian/patches/100_core-fix-rev-2794.patch: core fix to avoid decoration
    problems
  * debian/patches/101_memleak-fix-rev-2794.patch: memleak fix
  * debian/patches/102_attrib-fix-rev-2796.patch: fix for window getting lost
    when cycling thru workspaces

  [ Didier Roche ]
  * New upstream release
  * debian/control:
    - remove the build-dep on cdbs

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 23 Aug 2011 18:19:11 +0200

compiz (1:0.9.5.0-0ubuntu5) oneiric; urgency=low

  * Make compiz-dev deps on libdecoration0-dev as compiztoolbox is using it.

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 11 Aug 2011 21:21:23 +0200

compiz (1:0.9.5.0-0ubuntu4) oneiric; urgency=low

  * debian/compiz-gnome.gconf-defaults, debian/unity.ini:
    - remove Static Application Switcher plugin as now handled by unity.

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 11 Aug 2011 16:28:49 +0200

compiz (1:0.9.5.0-0ubuntu3) oneiric; urgency=low

  * debian/control:
    - build-dep on boost 46
  * debian/65compiz_profile-on-session:
    - set ubuntu as the default unity session

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 10 Aug 2011 10:22:16 +0200

compiz (1:0.9.5.0-0ubuntu2) oneiric; urgency=low

  * debian/compiz-decorator:
    - use gtk-window-decorator for alpha3 by default. Too many bugs with u-w-d
      right now (the side effect is that the decorator isn't removed and we
      don't get the invisible resize area anymore)
  * debian/compiz-gnome.gconf-defaults, debian/unity.ini
    - remove the unity dialogs from oneiric, it's not ready, we won't ship it
      for now.

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 01 Aug 2011 14:38:26 +0200

compiz (1:0.9.5.0-0ubuntu1) oneiric; urgency=low

  * New upstream release:
    - unity window decorator needs to support different metacity frame types
      (LP: #795048)
    - firefox window mapped fullscreen gets mapped under gnome-panel
      (LP: #800592)
  * Switch to dpkg-source 3.0 (quilt) format
  * remove all debian/patches/*:
    - upstream now directly deliver with our patches
  * debian/control:
    - replace kdebase-workspace-dev build-dep by kde-workspace-dev
    - build on libdecoration0-dev to build the unity window decorator
    - make compiz-dev dep on gtk-3
  * debian/compiz-plugins-default.install:
    - grid is now in -main
  * debian/libdecoration0.symbols:
    - add new symbols
  * debian/patches/01_don_t_init_a11y.patch:
    - don't initialize the GAIL and AT bridges when comipz initialize
      (LP: #810045)

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 19 Jul 2011 08:00:29 +0200

compiz (1:0.9.4+bzr20110606-0ubuntu6) oneiric; urgency=low

  * debian/control:
    - don't build with g-c-c integration (broken with gnome 3)
      removed dep on libgnome-window-settings-dev, libgnomeui-dev,
      libgnome-desktop-dev
  * debian/patches/091_no_use_gnome_but_desktop_file.patch,
    debian/rules, debian/compiz-gnome.install:
    - don't install anymore previous files, but still build
      /usr/share/applications/compiz.desktop for starting compiz with
      gnome-session
  * debian/65compiz_profile-on-session:
    - use DESKTOP_SESSION now

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 07 Jul 2011 16:15:23 +0200

compiz (1:0.9.4+bzr20110606-0ubuntu5) oneiric; urgency=low

  * debian/patches/090_run_gtk_init.patch:
    - run gtk_init_check in compiz core (needed for unity and unity dialogs, and
      there is no good upgrade story with the current backend to add a new
      plugin)
  * debian/control:
    - add a libgtk-3-dev dep
    - breaks against previous unity version (gtk_init should run be once with
      ldopen)
    - bump standards-version
  * debian/compiz-gnome.gconf-defaults, debian/unity.ini:
    - add unity dialogs by default (doesn't support upgrade though, need to
      reset the profile manually)

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 04 Jul 2011 18:33:26 +0200

compiz (1:0.9.4+bzr20110606-0ubuntu4) oneiric; urgency=low

  * debian/patches/00_bzr_fix_727143.patch:
    - Fix unity-window-decorator crashes with SIGSEGV when closing Java
      windows (LP: #727143)

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 24 Jun 2011 10:46:01 +0200

compiz (1:0.9.4+bzr20110606-0ubuntu3) oneiric; urgency=low

  * Separate plugins we install by default from others:
    - create compiz-plugins-default which is a subpart of what compiz-plugins
      depended on
    - compiz-plugins install compiz-plugins-default
    - compiz, compiz-core, compiz-gnome, compiz-kde now depends on
      compiz-plugins-default and recommends compiz-plugins-main-default
    - compiz-dev still depends on compiz-plugins as shipping the compiztoolbox
      and cube headers
    - reshuffle the replaces to handle transitions
  * move /usr/share/compiz/kde.xml wrongly set in compiz-plugins to compiz-kde

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 07 Jun 2011 14:01:18 +0200

compiz (1:0.9.4+bzr20110606-0ubuntu2) oneiric; urgency=low

  * debian/rules, debian/compiz-gnome.install:
    - generate g-c-c keybindings from new metacity package
    - don't generate schema for gconf bindings, not sure we will ship them or
      should switch to gsettings

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 06 Jun 2011 17:58:54 +0200

compiz (1:0.9.4+bzr20110606-0ubuntu1) oneiric; urgency=low

  * New bug fix release:
    - Switcher window borders are not properly unmapped with
      (unity|gtk)-window-decorator (LP: #789580)
    - maximized window is displaced (LP: #772612)
    - Unity launcher gets visible while screensaver is active (LP: #771391)
    - 1 pixel icons in notification-area-applet when compiz is the windows
      manager (LP: #767095)
  * debian/patches/00_bzr_fix_apps_without_startupid.patch:
    - removed: upstream

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 06 Jun 2011 16:18:08 +0200

compiz (1:0.9.4+bzr20110415-0ubuntu2) natty; urgency=low

  * debian/patches/00_bzr_fix_apps_without_startupid.patch:
    - from upstream trunk, fix crash on applications removing _NET_STARTUP_ID
      (LP: #759363)

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 19 Apr 2011 11:40:43 +0200

compiz (1:0.9.4+bzr20110415-0ubuntu1) natty; urgency=low

  * New upstream snapshot
    - Focus problem with Thunderbird (LP: #753951)
    - Chromium fullscreen + Alt-TAB confuses the launcher (LP: #757434)
    - compiz hangs randomly several times per day (LP: #740126)
  * debian/patches/00_*:
    - removed as part of upstream tarball

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 15 Apr 2011 17:08:40 +0200

compiz (1:0.9.4+bzr20110411-0ubuntu2) natty; urgency=low

  * 00_bzr_fix_crash_with_some_apps.patch
    - Fix inkscape/unison and other applications crashes (LP: #758307)

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 14 Apr 2011 14:37:39 +0200

compiz (1:0.9.4+bzr20110411-0ubuntu1) natty; urgency=low

  * New upstream snapshot, including all 01_bzr* patch:
    - compiz crashed with SIGSEGV in PluginClassHandler<DecorWindow, CompWindow,
      0>::get() (LP: #743807)
    - Animation for Grid Previews is broken (LP: #754088)
    - Grid plugin: Maximizing a window from left or right edge loses original
      size (LP: #753051)
  * add 00_remove_printf.patch: remove debug printf
  * 02_add_debug_spewer_for_apport.patch:
    - refreshed

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 11 Apr 2011 13:25:14 +0200

compiz (1:0.9.4+bzr20110407-0ubuntu2) natty; urgency=low

  * New upstream snapshot:
    - fix unity-window-decorator crashed with SIGSEGV in event_filter_funct
      (LP: #711561)
  * debian/patches/086_new_grid_defaults.patch:
    - change threshold to 15 on sides and 20 on top to work well with the new
      animtion
  * debian/patches/01_bzr_fix_grid_on_multimonitor.patch,
    01_bzr_fix_resize.patch, 01_bzr_fix_grid_premultiply.patch:
    - from upstream bzr, fix grid on multimonitor and colors handling
  * debian/patches/086_new_grid_defaults.patch,
    debian/patches/029_default_options.patch:
    - set the resize grid shadow to orange (LP: #752711)

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 07 Apr 2011 18:06:44 +0200

compiz (1:0.9.4+bzr20110406-0ubuntu1) natty; urgency=low

  * new upstream bzr tarball:
    - display/size problems with xterm (LP: #748137)
    - fix crashes on tcl/tk applications (LP: #741074, #747439)
    - fix grab on compose keys (LP: #747323)
    - resync stack at regular interval to avoid invisible windows
      (LP: #723014, #743011, #736876, #740465, #684590)
    - fix weird order in alt + tab (LP: #175874)
    - fix crash in gitk (LP: #743011, #741074)
    - avoid compiz detection by fglrx driver (LP: #740298)
    - Wrong window moves (LP: #741656, #743634)
    - Unity Grid is broken for multi-monitor setups (LP: #709221)
    - Feature Freeze Exception: Animation for Grid Plugin Previews (LP: #744104)
    - unity-window-decorator crashed with SIGSEGV in gdk_window_get_events()
      (LP: #725284)
    - fix xterm (LP: #692463)
    - start the decorator on a secondary screen (LP: #730495)
  * debian/patches/090_git_fix_new_invisible_windows.patch,
    debian/patches/100_bump_core.h.patch:
    - upstreamed
  * debian/patches/01_unity_window_decorator.patch
    debian/patches/085_add_grid_plugin.patch:
    - in bzr upstream tarball

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 06 Apr 2011 19:37:45 +0200

compiz (1:0.9.4git20110322-0ubuntu5) natty; urgency=low

  * debian/patches/080_fix_session_handling.patch:
    reverted, seems to break more people that it fixes it. Not commited to
    compiz trunk as well

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 24 Mar 2011 12:03:47 +0100

compiz (1:0.9.4git20110322-0ubuntu4) natty; urgency=low

  * 080_fix_session_handling.patch:
    - fix respawn on crash (LP: #716462)

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 23 Mar 2011 23:38:35 +0100

compiz (1:0.9.4git20110322-0ubuntu3) natty; urgency=low

  * 90_git_fix_new_invisible_windows.patch:
    from git, fix a case with new invisible windows (LP: #741072)

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 23 Mar 2011 17:36:06 +0100

compiz (1:0.9.4git20110322-0ubuntu2) natty; urgency=low

  * debian/patches/01_unity_window_decorator.patch:
    - fix frequent crash (LP: #740480)
  * debian/compiz-decorator:
    - reset the unity window decorator by default 

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 23 Mar 2011 08:55:46 +0100

compiz (1:0.9.4git20110322-0ubuntu1) natty; urgency=low

  * New upstream bug fix snapshot:
    - Application windows can sometimes fail to display and will
      mask regions of the screen (LP: #709461)
    - Compiz switcher Alt-Tab order is not predictable - should
      maintain LIFO ordering in application switcher (LP: #175874)
    - after compiz crashed, gnome-panel isn't mapped again (LP: #711378)
    - invisible windows border problem (LP: #710271)
    - Compiz thinks you are clicking in an edge window when you
      are not (LP: #734250)
    - Add test case for invisible window regressions (LP: #736876)
    - often can't alt-click-dnd to move the focussed dialog (LP: #711911)
    - When windows open for the first time they should not hide (LP: #723878)
    - Unity Grid is broken for multi-monitor setups (LP: #709221)
    - Pixmaps trashed during animations when window is unmapped (LP: #733331)
    - Windows have blank decorations when rapidly closing and
      reopening (LP: #733328)
    - Unity is not restored on unity/compiz crash: compiz doesn't register
      properly with gnome-session (LP: #716462)
  * remove the patch taken from upstream
  * refresh u-w-d patch with latest upstream work
  * debian/compiz-core.install:
    - image move to the final destination
  * debian/patches/100_bump_core.h.patch:
    - bump for ABI breakage
  * debian/compiz-decorator:
    - use gtk-window-decorator and not unity-window-decorator as it's really
      crashy for now (will probably redo an upload tomorrow with a fixed
      decorator)

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 22 Mar 2011 21:45:34 +0100

compiz (1:0.9.4-0ubuntu7) natty; urgency=low

  * debian/control:
    - breaks on old simple-ccsm until a new one for 0.9 is available
  * debian/patches/029_default_options.patch: 
    - don't enable showing desktop while scale is triggered (LP: #736947)

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 17 Mar 2011 17:13:32 +0100

compiz (1:0.9.4-0ubuntu5) natty; urgency=low

  * debian/patches/029_default_options.patch: (LP: #723273)
    - remove Super W change for the "Initiate Window Picker for current
       workspace". The default is now compiz default: Shift + Alt + Up
    - transforming the Super A change to Super W for "Initiate Window Picker
      For All Windows"
  * debian/compiz-gnome.gconf-defaults:
    - disable Alt + F1/F2 in the gnome-compat plugin for the unity profile only
      (those keys are handled by unity itself now)
  * debian/source_compiz.py:
    - add xorg info in case of crash

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 16 Mar 2011 19:28:01 +0100

compiz (1:0.9.4-0ubuntu4) natty; urgency=low

  * Fix crashes in unity-window-decorator
    (LP: #724874, #728563, #728383)
  * Fix grid plugin not working with snap (LP: #716313)

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 07 Mar 2011 16:31:04 +0100

compiz (1:0.9.4-0ubuntu3) natty; urgency=low

  * debian/rules:
    - don't run unitymtgrabhandles and unityshell by default

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 01 Mar 2011 13:31:32 +0100

compiz (1:0.9.4-0ubuntu2) natty; urgency=low

  * Force libdecoration0 to have the same version than compiz-plugins
  * debian/patches/01_unity_window_decorator.patch
    - fix a crash in unity-window-decorator (LP: #726063, #725284, #726101)
  * Backport some patches from upstream to fix other crashes and bring
    support to the unity plugin (LP: #726702)
  * debian/compiz-core.install:
    png are now installed in /usr/share/compiz
  * add the future unity mt plugin by default

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 28 Feb 2011 20:51:00 +0100

compiz (1:0.9.4-0ubuntu1) natty; urgency=low

  * New upstream release:
    - Fix no windows receiving the focus if someone got the focus then was
      destroyed
    - Fix crash when resizing using keybindings
    - Fix unresponsive inactive decorations (LP: #703755) 
    - Fix the long awaited gconf crash (LP: #691561)
    - gtk-window-decorator doesn't respect special decoration styles
      (LP: #290835)
  * debian/compiz-core.links,
    debian/source_compiz.py,
    debian/compiz-core.install:
    - install again a richer apport hook to redirect nux/libunity/unityshell
      crash. It also asks the user to redirect unity issues against unity (still
      incuding xorg info when needed)
  * Removed a bunch of patches either cherry-picked or pushed upstream. With the
    other fixes, the gconf workaround is hopefully not needed anymore.
  * refresh existing patches to still apply
  * debian/control:
    - rename dep on compiz-fusion* to compiz*
  * debian/patches/085_add_grid_plugin.patch:
    - refresh the grid plugin from new release
  * debian/patches/086_new_grid_defaults.patch
    - separate tweaking the default settings to only have the effect that were
      specified:
      top -> maximize, left (top or bottom left) -> window half left of the
      screen, right (top or bottom right) -> window half right of the screen,
      bottom -> do nothing

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 24 Feb 2011 17:31:29 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu11) natty; urgency=low

  * debian/patches/18_really_fix_stacking_issues.patch:
    - hopefully, this time, the invisible window is dead (LP: #709461)

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 11 Feb 2011 13:00:01 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu10) natty; urgency=low

  * debian/patches/080_migrate_gconf_from_alpha1.patch
    debian/reset-compiz-gconf, debian/compiz-gnome.install:
    - remove the additional python wrapper now that people who installed
      alpha1 are considerated to be transitionned to the new schema.
  * debian/patches/17_fix_stacking_issue.patch:
    - backport from upstream. This seems to fix the random invisible window
      (LP: #709461)

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 08 Feb 2011 10:31:06 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu9) natty; urgency=low

  * debian/patches/086_fix_unreachable_options_crash.patch:
    getOptions is broken at start as some initialized options aren't map when
    calling from the core. Use direct call instead (LP: #708812).
    Fixes crashes at start.

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 02 Feb 2011 15:17:02 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu8) natty; urgency=low

  * debian/patches/14_fix_empathy_list_vanish.patch:
    - fix the buddy list disappearing (LP: #682781)
  * debian/patchs/15_hidden_maximized_decoration.patch:
    - fix sometimes invisible decoration on maximized window still decorated
  * 16_display_unfocused_state.patch:
    - fix unfocused state not being displayed properly in the decoration
      (LP: #704413)

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 31 Jan 2011 15:50:17 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu7) natty; urgency=low

  * debian/patches/000_workaround_gconfbackend_init_hang.patch:
    - readd the workaround. Seems that slow machines really have a problem with
      the new init order

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 28 Jan 2011 19:07:35 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu6) natty; urgency=low

  * debian/control:
    - compiz-gnome replaces compiz-fusion-plugins-extra (grid gconf schema file
      is hosted there) (LP: #708835)
  * debian/patches/029_default_options.patch:
    - set the spacing to 68 temporary as a workaround to avoid the spread mode
      to overlap the launcher (LP: #702822)

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 28 Jan 2011 15:46:20 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu5) natty; urgency=low

  * debian/patches/000_workaround_gconfbackend_init_hang.patch:
    - remove the workaround (commented in debian/patches/series). It seems to
      work for others without it, I still have it hanging there, but maybe
      that's a system issue, let's see if people reports hangs at start.
  * debian/patches/060_move_checks_to_compiz.patch:
    - adapt to new version

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 27 Jan 2011 17:42:04 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu4) natty; urgency=low

  * debian/patches/000_fix_stacking.patch:
    - so awaited patch to fix menu stacking issue
      (LP: #693073, #695638, #690461) (congrats smspillaz)
  * debian/patches/065_add_bailer_and_detection_plugins.patch:
    - remove zenity message, now handled in the session level
  * debian/patches/029_default_options.patch:
    - set back to opacity to 100 when dragging windows, seems to have a lot of
      perf issues on some graphic card. (LP: #703458)
  * debian/patches/03_git_fix_maprequest.patch
    debian/patches/04_git_fix_override_redirect_window.patch
    debian/patches/06_git_fix_unmapped_then_remapped_window.patch
    debian/patches/07_git_fix_click_to_focus_issue.patch
    debian/patches/08_make_qt_wine_appearing.patch
    debian/patches/09_git_valgrind_cleanage.patch
    debian/patches/10_git_set_vp_before_window_initialization.patch:
    - misc fixes backported from upstream git head. Fixing flash and gnome-panel
      crash (LP: #683100, #690461)
  * debian/patches/000_workaround_gconfbackend_init_hang.patch:
    - adapt to new version
  * debian/patches/029_default_options.patch:
    - disable ligthning by default on the opengl plugin as it's not really used
      and conflict with unity (LP: #703140)
  * debian/patches/11_git_fix_windows_jumping.patch
    debian/patches/12_fix_warning.patch
    debian/patches/13_fix_window_geometries_and_properties.patch:
    - last minute fix due to regression introduced by the patch above, fix wrong
      geometry and wrong startup position (LP: #707853, #707852)
  * debian/patches/085_add_grid_plugin.patch,
    debian/rules, debian/control, debian/unity.ini,
    debian/compiz-gnome.gconf-defaults
    - add to main (as upstream is doing in the git repository) the grid plugin
      and activate it by default. Replaces the -extra package with a previous
      version
    - tweak the default settings to only have the effect that were specified:
      top -> maximize, left (top or bottom left) -> window half left of the
      screen, right (top or bottom right) -> window half right of the screen

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 27 Jan 2011 13:05:18 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu3) natty; urgency=low

  * debian/patches/01_unity_window_decorator.patch:
    - dont dep on system libdecoration but on built one
  * debian/control:
    - remove circular build-dep on libdecoration0-dev
    - build against new libmetacity ABI

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 19 Jan 2011 17:52:09 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu2) natty; urgency=low

  * debian/control:
    - temporary depends on libdecoration0-dev as the unity-window-decorator
      needs it. The correct fix will need to shuffle the order of build around
      and take the current library.

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 14 Jan 2011 03:17:38 +0100

compiz (1:0.9.2.1+glibmainloop4-0ubuntu1) natty; urgency=low

  [ Didier Roche ]
  * New upstream release:
    - Fixed a high number of wakeups (LP: #681696)
    - Fixed links not working in some gtk windows
    - Raise the window when it is moved if raise on click is enabled
    - Fix crash when loading plugins on the command line
    - Fix focus issues on window close and reopen rapidly
    - Fix focus issues with multiple X screens
    - Glib plugin removed
    - Fix bug where not moving the mouse and clicking button 2 or 3 in
      scale addon would close the current active window, not the window the
      mouse hovers over
    - Add unity-window-decorator
    - Move window doesn't raise window (LP: #695570)
    - gtk.Label <a href> link-activate signal broken with compiz in natty
      (LP: #687732)
  * debian/patches/060_move_checks_to_compiz.patch:
    - remove GNOME failsafe detection as now handled as a session type in
      gnome-session
  * Remove deprecated or now merge upstream patches:
    - 01_backport_trunk_fix.patch
    - 002_ship_splited_gconf_cmakeext_files.patch
    - 004_packagemode_is_release_debug_for_plugins.patch
    - 005_no_glib_plugin.patch
    - 017_always_unredirect_screensaver_on_nvidia.patch
    - 080_migrate_gconf_from_alpha1.patch
  * debian/compiz-gnome.gconf-defaults,
    debian/patches/029_default_options.patch:
    - new settings for natty. Also set the 2x2 layout by default
  * unity-decorator:
    - debian/compiz-decorator:
      launch unity-compiz-decorator in gnome sessions
    - debian/compiz-gnome.install:
      install it
    - debian/control:
      depends on latest metacity having the right extension
    - debian/patches/01_unity_window_decorator.patch:
      add unity-window-decorator
  * debian/patches/02_add_debug_spewer_for_apport.patch:
    - new plugin (not activated for now) to get additional info for apport

  [ Bryce Harrington ]
  * compiz-core.install, compiz-core.links, source_compiz.py:
    Replace the compiz apport hook with a link to xorg's apport script.

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 13 Jan 2011 21:50:27 +0100

compiz (1:0.9.2.1+glibmainloop3-0ubuntu5) natty; urgency=low

  * Restore the workaround to avoid crashes (lp: #691561)

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 17 Dec 2010 21:08:43 +0100

compiz (1:0.9.2.1+glibmainloop3-0ubuntu4) natty; urgency=low

  * debian/patches/000_workaround_gconfbackend_init_hang.patch:
    - drop the workaround, the issue has not been confirmed but the update
      broke the menus in unity (lp: #690461)
  * debian/patches/060_move_checks_to_compiz.patch:
    - adapted regarding previous patch

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 16 Dec 2010 22:19:50 +0100

compiz (1:0.9.2.1+glibmainloop3-0ubuntu3) natty; urgency=low

  * debian/patches/080_migrate_gconf_from_alpha1.patch,
  debian/reset-compiz-gconf,
  debian/compiz-gnome.install:
  - temporary wrapper from new gconf path not transitionned from alpha1
    (allscreens became screen0). This will reset the current compiz profiles
    (LP: #690011)

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 14 Dec 2010 19:25:03 +0100

compiz (1:0.9.2.1+glibmainloop3-0ubuntu2) natty; urgency=low

  * debian/patches/000_workaround_gconfbackend_init_hang.patch:
    - workaround in delaying the plugin init as the gconf backend hangs when
      trying to contact/launch the gconf daemon. This only happens when you
      don't change your current profile, at session start.
  * debian/patches/060_move_checks_to_compiz.patch:
    - adapted regarding previous patch

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 14 Dec 2010 02:57:50 +0100

compiz (1:0.9.2.1+glibmainloop3-0ubuntu1) natty; urgency=low

  * new glibmainloop branch snapshot:
    - fix launching an application set it to the wrong place (LP: #683273)
    - Can't resize windows to be displayed on several monitors (LP: #455378)
    - Scale All Windows gets its suffixes wrong for a 3x3 layout (LP: #683063)
    - Compiz sometimes loses focus when closing some windows (LP: #671459)
    - Fix hanging when session exit (LP: #683121)
  * debian/patches/000_fix_OOo_crash1.patch
    debian/patches/000_fix_OOo_crash2.patch
    debian/patches/001_fix_gconf_path.patch
    debian/patches/003_more_gconf_parser_fix.patch:
   - remove, upstreamed.
  * debian/patches/060_move_checks_to_compiz.patch:
    - adapt to new version
  * debian/patches/01_backport_trunk_fix.patch:
    - backport some additional fixes from trunk, otherwise compiz crash at start
  * debian/source_compiz.py:
    - fix gconf path
  * debian/compiz-gnome.gconf-defaults, debian/rules, debian/unity.ini,
    debian/patches/030_no_fade_in_staticswicher.patch:
    - change order to load fade before staticswichter to avoid the fade effect
      when alt + tabbing (LP: #683635)
    - add snap and workarounds by default as well
  * debian/compiz-gnome.gconf-defaults,
    debian/compiz-keybindings.sed,
    debian/patches/021_hide_tooltip_on_decorator.patch,
    debian/patches/057_update_gnome_bindings.patch:
    - update the gconf path from allscreens to screen0 as new gconf path in the
      gconf backend
  * debian/control:
    - handle the ABI breakage with other compiz components

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 13 Dec 2010 16:38:10 +0100

compiz (1:0.9.2.1+glibmainloop2-0ubuntu4) natty; urgency=low

  * debian/patches/065_add_bailer_and_detection_plugins.patch:
    - fix the fallback not launching gnome-panel when no 3D support
      (LP: #683356, #683531)
  * debian/patches/000_fix_OOo_crash{1,2].patch:
    - cherry-pick fix crashes with random applications (LP: #675506)

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 01 Dec 2010 13:10:41 +0100

compiz (1:0.9.2.1+glibmainloop2-0ubuntu3) natty; urgency=low

  * debian/rules:
    - use our own keybindings with new Compiz wm_name
      (note, upstream one faily try to install them ignoring DESTDIR, keep in
       mind when fixed to keep ours)

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 29 Nov 2010 19:37:41 +0100

compiz (1:0.9.2.1+glibmainloop2-0ubuntu2) natty; urgency=low

  * debian/rules:
    - build with RelWithDebInfo cmake flag to get debug info and release
      optimisation
  * debian/patches/004_packagemode_is_release_debug_for_plugins.patch:
    - when compiz plugin built in "Package" mode, add optimization + debug
      symbols for stripping in dbgsym. Thanks RAOF for pointing at it
      (LP: #682574)
  * debian/patches/005_no_glib_plugin.patch:
    - remove glib plugin as conflicting with the glibmainloop branch
  * debian/source_compiz.py:
    - grab new gconf path in apport bug report

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 29 Nov 2010 12:23:15 +0100

compiz (1:0.9.2.1+glibmainloop2-0ubuntu1) natty; urgency=low

  * new upstream snapshot with glibmm experimental branch:
    - Compiz crashes when scrolling in Openoffice (LP: #675506)
    - Compiz sometimes loses focus when closing some windows (LP: #671459)
    - Fix --replace hang (LP: #680165)
  * debian/65compiz_profile-on-session:
    - add unity profile to default session
  * debian/rules:
    - add bailer, detection, regex and animation and fade plugin to both
      profiles
    - get an optimized plugin default order
  * debian/patches/060_move_checks_to_compiz.patch:
    - start stripping it down as now we have a detection and bailer plugins
      for that. The failsafe session should be moved in the detection plugin.
  * debian/patches/055_fix_COMPIZ_DEFAULT_PLUGINS.patch,
    debian/patches/056_Preserve-DESTDIR-if-no-override-in-COMPIZ_DESTDIR.patch
    debian/patches/057_update_gnome_bindings.patch:
    - removed, upstreamed
  * debian/patches/065_add_bailer_and_detection_plugins.patch:
    - add bailer and detection plugins to fallback to 2D session or run in
      degraded mode.
  * debian/compiz-gnome.install, debian/unity.ini,
    debian/compiz-gnome.gconf-defaults:
    - add the unity profile to ini and gconf backend
  * debian/patches/001_fix_gconf_path.patch:
    - fix the path when generating the gconf keys (compiz-1)
  * debian/patches/002_ship_splited_gconf_cmakeext_files.patch:
    - ship and link the splited gconf extension schema builder
  * debian/control:
    - add libglibmm-2.4-dev build-dep and to -dev dep
  * debian/patches/003_more_gconf_parser_fix.patch:
    - fix parser breakage with some plugins

 -- Didier Roche <didrocks@ubuntu.com>  Fri, 26 Nov 2010 20:30:56 +0100

compiz (1:0.9.2.1+glibmainloop-0ubuntu3) natty; urgency=low

  * debian/rules:
    - add gnomecompat as a default plugin (LP: #675774)
    - add vpswitch too
  * debian/libdecoration0.symbols:
    - add a symbol file
  * debian/patches/057_update_gnome_bindings.patch:
    - update wmname to get the keybindings shown in GNOME capplet

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 18 Nov 2010 14:35:04 +0100

compiz (1:0.9.2.1+glibmainloop-0ubuntu2) natty; urgency=low

  * debian/patches/065_glib_mainloop.patch:
    - removed as part of make dist
  * debian/control:
    - make compiz-dev dep on libglib2.0-dev

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 11 Nov 2010 21:52:26 +0100

compiz (1:0.9.2.1+glibmainloop-0ubuntu1) natty; urgency=low

  * New upstream snapshot with glib mainloop support needed for unity compiz
  * debian/rules:
    - use the ezoom plugin rather than the zoom one
  * debian/patches/055_fix_COMPIZ_DEFAULT_PLUGINS.patch,
    debian/patches/056_Preserve-DESTDIR-if-no-override-in-COMPIZ_DESTDIR.patch:
    - refresh to new upstream snapshot

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 11 Nov 2010 18:20:59 +0100

compiz (1:0.9.2.1-0ubuntu2) natty; urgency=low

  * debian/control:
    - add missing replaces with latest natty version

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 10 Nov 2010 10:40:29 +0100

compiz (1:0.9.2.1-0ubuntu1) natty; urgency=low

  [ Travis Watkins ]
  * debian/patches/010-disable-child-window-clipping.patch,
    debian/patches/013-add-cursor-theme-support.patch,
    debian/patches/016_call_glxwaitx_before_drawing.patch,
    debian/patches/035_ignore_workspaces,
    debian/patches/037_fullscreen_stacking_fixes.patch,
    debian/patches/061_KWD_stubs.patch,
    debian/patches/090_profiling,
    - removed as they are applied upstream or obsolete
  * debian/patches/017_always_unredirect_screensaver_on_nvidia.patch
    debian/patches/018_use_metacity_settings.patch
    debian/patches/021_hide_tooltip_on_decorator.patch
    debian/patches/029_default_options
    debian/patches/060_move_checks_to_compiz.patch
    - updated for 0.9 and added DEP-3 comments
  * comment debian/patches/014_fix-no-border-window-shadow.patch
  * debian/kde4-window-decorator.1:
    - renamed kde-window-decorator.1 with name fixups
  * debian/compiz-decorator.1,
    debian/compiz-core.manpages:
    - add compiz-decorator manpage
  * debian/compiz.1,
    debian/kde4-window-decorator.1:
    - refreshed
  * debian/compiz-decorator:
    - remove support for kde-window-decorator as it no longer exists
  * debian/compiz-gnome.gconf-defaults:
    - strip down to just gtk-window-decorator defaults, we set the rest in
      other places already
  * debian/rules:
    - switch to debhelper 7 style rules, much easier to understand
  * debian/control:
    - add cmake and boost build-depends, remove automake

  [ Didier Roche ]
  * new upstream release
  * remerge and adapt travis' work to latest release in natty
  * debian/patches/029_default_options.patch:
    - retake latest patch and refresh to new version
  * debian/patches/060_move_checks_to_compiz.patch:
    - remove all plugins and not use the DEFAULT plugin list (just load cpp)
  * debian/compiz-gnome.gconf-defaults:
    - keep some needed value. With gsetting port, we should only push default,
      don't be evil and avoid patching the schema
  * debian/control:
     - bump all dep to 0.9 for compiz components
     - add libboost-serialization1.42-dev build-dep
     - add some sanity check as well (lintian warnings)
     - additional dependency on compiz-plugins from compiz-dev
  * debian/patches/015_optional-fbo.patch:
    - removed as the new version doesn't seem to handle that natively
  * debian/patches/014-fix-gtk-window-decorator-no-argb-crash.patch:
    - removed as seems to be upstreamed
  * debian/patches/015_draw_dock_shadows_on_desktop.patch:
    - removed from now, let's revert to upstream behavior
  * debian/patches/020_disable_gdk_gtk_disable_deprecated:
    - removed, upstream
  * disable debian/patches/021_hide_tooltip_on_decorator.patch for now
  * debian/compiz-core.install,debian/compiz-dev.install,
    debian/compiz-gnome.install:
    - changed the path according to new upstream layout and remove some
      libraries and re-ad /usr/share/gnome/wm-properties/compiz.desktop to
      make the gnome-window-properties work again (LP: #269805)
    - compiz-gnome install gconf schemas, not compiz-plugins
    - also some cleanage to make things easier to read
  * debian/compiz-kde.manpages:
    - adapt to kde4 new manpage
  * convert to quilt format
  * remove debian/patches/562027-fix-gconf-ftbfs.patch,
     debian/patches/635258-fix-pixmap-size-calculations.patch,
     debian/patches/111_link-kde-window-decorator-with-x11:
    - not relevant in the context
  * debian/compiz-kde.install, debian/compiz-plugins.install:
    - put likde in compiz-kde package
  * debian/rules:
    - a lot of cleanage, try to make the rule easy to read
    - force to build in release mode
    - compile the default plugins list
    - force copying to cmake install dir. Don't use findcompiz_install which is
      broken upstream when using DESTDIR and COMPIZ_DESTDIR
    - add some switch to ensure we build in package mode not in debug one
  * add debian/patches/055_fix_COMPIZ_DEFAULT_PLUGINS.patch:
    - use COMPIZ_DEFAULT_PLUGINS from debian/rules
  * debian/patches/056_Preserve-DESTDIR-if-no-override-in-COMPIZ_DESTDIR.patch:
    - make compiz respect env variable
  * debian/patches/065_glib_mainloop.patch:
    - added but not activated yet: need some work with tip of compiz 0.9.2.1

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 19 Oct 2010 12:23:51 +0200

compiz (1:0.8.6-0ubuntu12) natty; urgency=low

  * Merge patch 110_link-gtk-windows-decorator-with-xcursor into
    013-add-cursor-theme-support as that's where the bug was introduced.
  * Remove bogus dh_install -pcompiz-wrapper call in rules leaving a
    debhelper.log over; presumably left over from the removal of this package.

 -- Loïc Minier <loic.minier@ubuntu.com>  Mon, 18 Oct 2010 00:13:28 +0200

compiz (1:0.8.6-0ubuntu11) natty; urgency=low

  * New patch, 110_link-gtk-windows-decorator-with-xcursor, fix configure.ac
    to require the xcursor pkg-config file/libs etc. for gtk/window-decorator
    which calls XcursorSetTheme(); fixes FTBFS.
  * New patch, 111_link-kde-window-decorator-with-x11, fix configure.ac to
    require the x11 pkg-config file/libs etc. for kde/window-decorator which
    calls XGetWMProtocols(); fixes FTBFS.

 -- Loïc Minier <loic.minier@ubuntu.com>  Sun, 17 Oct 2010 23:19:57 +0200

compiz (1:0.8.6-0ubuntu10) natty; urgency=low

  * New patch, 635258-fix-pixmap-size-calculations, from commit
    0f95c41a0aa175ddf7947ba18b01f746c95594a9 in the 0.8 branch; thanks
    Paul Donohue; LP: #635258.

 -- Loïc Minier <loic.minier@ubuntu.com>  Sun, 17 Oct 2010 22:02:58 +0200

compiz (1:0.8.6-0ubuntu9) maverick; urgency=low

  * debian/compiz-gnome.gconf-defaults: /apps/gwd/metacity_theme_opacity
    is a float (1.0), not int (1).

 -- Anders Kaseorg <andersk@mit.edu>  Fri, 24 Sep 2010 21:09:32 -0400

compiz (1:0.8.6-0ubuntu8) maverick; urgency=low

  * debian/compiz-gnome.gconf-defaults
    - move the shadow 4 pixels down, in order to reduce the shadow between 
      menubaritems and the menu frame (LP: #634417)

  * debian/patches/029_default_options.patch
    - get rid of the transparency on the unfocused window frame. (LP: #634417)

 -- Ken VanDine <ken.vandine@canonical.com>  Tue, 21 Sep 2010 16:59:27 -0400

compiz (1:0.8.6-0ubuntu7) maverick; urgency=low

  * 060_move_checks_to_compiz.patch: Remove Sandybridge bridge devices from
    the blacklist, they were preventing compiz from loading on machines
    with discreet GPU's as well. (LP: #644372)

 -- Robert Hooker <robert.hooker@canonical.com>  Tue, 21 Sep 2010 09:46:36 -0400

compiz (1:0.8.6-0ubuntu6) maverick; urgency=low

  * Update 060_move_checks_to_compiz.patch to add Intel Sandybridge pci id's
    to the blacklist, the mesa dri driver claims it instead of swrast so 
    compiz tries to use it but does not work currently. (LP: #633376)

 -- Robert Hooker <robert.hooker@canonical.com>  Wed, 08 Sep 2010 13:10:11 -0400

compiz (1:0.8.6-0ubuntu5) maverick; urgency=low

  * Fix LP: #622195 - dh_install can't rename files. In trying to do so,
    compiz-wm.desktop is installed one folder too deep, breaking
    gnome-{appearance,window}-properties
    - update debian/compiz-gnome.install

 -- Chris Coulson <chris.coulson@canonical.com>  Thu, 26 Aug 2010 21:33:53 +0100

compiz (1:0.8.6-0ubuntu4) maverick; urgency=low

  * debian/control: Argh, also reduce the libcompizconfig0 dependency to the
    version that actually rebuilt against 0.8.6.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 03 Aug 2010 10:40:30 +0200

compiz (1:0.8.6-0ubuntu3) maverick; urgency=low

  * debian/control: Reduce libcompizconfig0 breaks to << the version that
    actually rebuilt against 0.8.6.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 03 Aug 2010 00:13:46 +0200

compiz (1:0.8.6-0ubuntu2) maverick; urgency=low

  * control: Don't build-depends on libdbus-qt-1-dev, it's deprecated

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 02 Aug 2010 17:49:08 +0200

compiz (1:0.8.6-0ubuntu1) maverick; urgency=low

  * New upstream release:
    - Maintenance release.
    - Various focus and window placement fixes.
    - Fixed handling of windows that have a (server-drawn) border.
    - Fixed handling of window icons that have a colour depth of 1 bit.
    - Added KDE 4.4 support to KDE4 window decorator.
  * debian/control:
    - Build-depend on libx11-dev, libxext-dev
  * debian/patches/020_fix_focus.patch:
  * debian/patches/030_from_git_crash_fix_multiscreen.patch:
  * debian/patches/031_from_git_fix_gnome_keybindings.patch:
  * debian/patches/070_remove_deprecated_gtk_symbol.patch:
    - Applied upstream

 -- Robert Ancell <robert.ancell@canonical.com>  Tue, 27 Jul 2010 17:23:05 +0200

compiz (1:0.8.4-4ubuntu1) maverick; urgency=low

  * Merge with Debian unstable, remaining Ubuntu changes:
  * debian/control:
    - Build-depend on cdbs for strip-schemas
    - Add version on libmetacity-dev build-depend
    - Add KDE build-depends
    - Add metacity-common build-depends (for getting keybindings)
    - Add gnome-control-center-dev build-depends (may not be required)
    - Add libx11-xcb-dev build-depend
    - Add Vcs-Bzr link
    - compiz provides x-window-manager
    - compiz-core does not provide mesa-utils
    - compiz-core breaks old version of compiz-fusion-plugins-main and
      compiz-fusion-plugins-extra
    - compiz-core replaces old compiz-wrapper
    - compiz-dev depends on libx11-xcb-dev
    - compiz-gnome and compiz-kde depend on compiz-plugins and their backends
  * debian/rules:
    - Compile a subset of the plugins
    - Do not build the kconfig plugin (in favior of libcompizconfig)
    - Build with --enable-gconf
    - Build translations/language packs
    - Install compiz-decorator wrapper
    - Install apport hook
    - Copy keybindings from metacity
    - Exclude some files from compiz-plugins
  * debian/compiz-core.install:
    - Don't install plugin files
    - Install apport hooks
  * debian/compiz-decorator:
    - Script to run the appropriate decorator for the current session
  * debian/compiz-dev.install:
    - Install XSLT file
  * debian/compiz-gtk.*:
    - Not required, merged into compiz-gnome
  * debian/compiz-gnome.gconf-defaults:
    - Set Ubuntu defaults
  * debian/compiz-gnome.install:
    - Rename wm-properties desktop file, don't know why
    - Install gnome-control-center keybindings files
    - Add files from compiz-gtk
  * debian/compiz-gnome.manpages:
    - Add files from compiz-gtk
  * debian/compiz-keybindings.sed:
    - Script to add keybindings
  * debian/compiz-plugins.install:
    - Install XML files for the plugins
  * debian/source_compiz.py:
    - Apport hook
  * debian/patches/012_snap-by-default.patch:
    - Not enabled, not sure if we want this in Ubuntu
  * debian/patches/021_hide_tooltip_on_decorator.patch:
    - Make decorator tooltips optional
  * debian/patches/029_default_options.patch:
    - Updated with additional changes over Debian
  * debian/patches/090_profiling.patch:
    - Timing profiling patch (disabled)
  * debian/watch:
    - Update download location

 -- Robert Ancell <robert.ancell@canonical.com>  Thu, 17 Jun 2010 10:12:18 +1000

compiz (0.8.4-4) unstable; urgency=low

  * Drop libdbus-qt-1-dev from Build-Depends, as kindly requested by
    Michael Biebl (Closes: #581788). Qt3 is going away, we already use
    --disable-kde and --enable-kde4 to that effect, so libdbus-qt-1-dev
    can be kicked away.
  * Add libglu1-mesa-dev, needed for <GL/glu.h>.

 -- Cyril Brulebois <kibi@debian.org>  Sun, 16 May 2010 20:44:51 +0200

compiz (0.8.4-3) unstable; urgency=high

  [ Brice Goglin ]
  * Remove Thierry Reding from Uploaders, closes: #572540.

  [ Cyril Brulebois ]
  * Add patch to prevent FTBFS due to deprecated GDK/GTK stuff:
    * 020_disable_gdk_gtk_disable_deprecated (Closes: #577352).
  * Add myself to Uploaders.
  * Set urgency to high due to RC bugfix.

 -- Cyril Brulebois <kibi@debian.org>  Thu, 15 Apr 2010 03:29:29 +0200

compiz (0.8.4-2) unstable; urgency=low

  * Bump the dh_makeshlibs call to (>= 0.8.4)

 -- Sean Finney <seanius@debian.org>  Thu, 11 Feb 2010 23:08:16 +0100

compiz (0.8.4-1) unstable; urgency=low

  * New upstream release.

  [ Sean Finney ]
  * Fix FTBFS: "gconf/gconf-client.h: No such file or directory"
    - thanks to Sebastian Harl <tokkee@debian.org> (Closes: #562027, #562438) 
  * Add compiz-decorator symlink for compatibility with ubuntu systems.
  * Make all patches DEP-3 formatted.
  * No longer keep the ubuntu patches logically separated from ours
  * Enable 010-disable-child-window-clipping.patch, as there's an ABI bump.
    Also, massage the patch a little so that it applies cleanly.
  * Synchronize ubuntu patches from 0.8.4-0ubuntu10
    * 015_draw_dock_shadows_on_desktop.patch:
      - change decoration plugin to draw dock shadows only on the
        desktop window instead of on top of all other windows
    * 016_call_glxwaitx_before_drawing.patch:
      - Call glXWaitX before we start drawing to make sure X is done
        handling rendering calls. Suggested by Michel Dänzer to ensure
        we don't have any rendering glitches.
    * 017_always_unredirect_screensaver_on_nvidia.patch:
      - always unredirect gnome-screensaver when using nvidia, workaround
        for LP #160264 while still disabling unredirect fullscreen
        windows for nvidia users
    * 020_fix_focus.patch:
      - give back the focus to the previous focused window (LP: #455900)
    * 030_from_git_crash_fix_multiscreen.patch:
      - merge commit 24dea72a395071b533dcf66b2eef37b20522cbba to fix
        crash with wobbly windows in a multi screen setup
    * 031_from_git_fix_gnome_keybindings.patch:
      - fix gnome keybindings (terminal key)
    * 060_move_checks_to_compiz.patch:
      - add all relevant checks from compiz-manager to compiz itself
        Compiz already checks for almost everything it needs so there is no
        need to check twice.
    * 061_KWD_stubs.patch (updated locally to remove fuzz):
      - Horrible hack to define empty stubs for some new pure virtual
        functions in KWD::Window, to fix FTBFS.
  * The following patches have been updated to cleanly apply:
    * 014-fix-gtk-window-decorator-no-argb-crash.patch
    * 015_optional-fbo.patch
    * ubuntu/010-disable-child-window-clipping.patch
    * ubuntu/013-add-cursor-theme-support.patch
    * ubuntu/018_use_metacity_settings.patch
    * ubuntu/029_default_options
    * ubuntu/035_ignore_workspaces
    * ubuntu/037_fullscreen_stacking_fixes.patch
    * ubuntu/049-damage-report-non-empty.patch
    * ubuntu/050_stacking.patch
  * Transition from compiz-manager to compiz binary for /usr/bin/compiz
  * Remove all patches to the embedded compiz-manager script
    * 028_compiz_manager_blacklist
    * 029_compiz_manager_decoration.patch
    * 029_compiz_manager_nvidia_settings.patch
    * 030_compiz_manager_multi_display
    * 031_compiz_manager_extra_blacklist_support
    * 032_compiz_manager_add_gnomecompat
    * 033_compiz_manager_xdg_dirs
    * 042-compiz-manager-default-plugin
    * 046_compiz_manager_second_screen.patch

 -- Sean Finney <seanius@debian.org>  Thu, 11 Feb 2010 20:17:39 +0100

compiz (0.8.2-6) unstable; urgency=low

  * Add libxcursor-dev build-dep as required by patch
    ubuntu/013-add-cursor-theme-support; also let compiz-dev pull it as it's
    referenced in the .pc file; closes: #525240, #524943.
  * Add a virtual compiz-core-abiversion-2009xxyy provides to compiz-core to
    allow for strict dependencies of plugins on the compiz-core
    CORE_ABIVERSION they were built with, as read from include/compiz-core.h.
  * Use the new Breaks feature for the compiz-core -> libcompizconfig0 dep.
    This makes upgrades smoother than Conflicts.
  * Bump the compiz-core Breaks on libcompizconfig0 to 0.8.0 as the last
    CORE_ABIVERSION bump happened between 0.7.8 and 0.8.0; closes: #523514.
  * Add a missing libxml2-dev build-dep and update the compiz-dev deps to
    match what compiz.pc requires and use the same versions as the build-deps.
  * Build-dep on libcairo2-dev instead of libcairo-dev.
  * Add missing libstartup-notification0-dev (>= 0.7) bdep and version the
    compiz-dev dep to match.
  * Use the same version in the libdecoration0-dev dep on libxrender-dev as
    in the libxrender-dev bdep.

 -- Loic Minier <lool@dooz.org>  Fri, 24 Apr 2009 15:15:24 +0200

compiz (0.8.2-5) unstable; urgency=low

  * remove obsolete --enable-gconf-dump configure option
  * add build-dependency on libgnomeui-dev to fix new FTBFS (Closes: #524446)
  * add Vcs-Git and Vcs-Browser headers to debian/control

 -- Sean Finney <seanius@debian.org>  Sun, 19 Apr 2009 18:45:39 +0200

compiz (0.8.2-4) unstable; urgency=low

  * disable child window clipping patch: it breaks the abi

 -- Sean Finney <seanius@debian.org>  Sat, 11 Apr 2009 18:55:35 +0200

compiz (0.8.2-3) unstable; urgency=low

  * import of some ubuntu patches for 0.8.2 with some modifications
    - see debian/patches/ubuntu for patches
    - see debian/patches/series for which patches are used and which
      are not.
    - includes patch to copy gnome/metacity keyboard shortcuts
      (Closes: #503442, #454922).

 -- Sean Finney <seanius@debian.org>  Sat, 11 Apr 2009 14:26:06 +0200

compiz (0.8.2-2) unstable; urgency=low

  * upgrading compiz-manager backed out some locally modified but not
    quilt-using changes in paths.  so, new patch compiz-debian-paths.patch
    should fix this (closes: #522985).

 -- Sean Finney <seanius@debian.org>  Wed, 08 Apr 2009 23:13:19 +0200

compiz (0.8.2-1) unstable; urgency=low

  * new upstream release.
  * update location of compiz-gnome desktop file
  * add new app desktop file for compiz to compiz-core
  * update build-deps to use kdebase-workspace-dev
  * add build-dep on libxslt1-dev
  * disable kde3 decorator and enable kde4 decorator
  * include a gbp.conf for use with git-buildpackage
  * bump the libdecoration0 shlibs version to 0.8.2
  * update compiz-manager to upstream's 223180bf
  * Obsolete patches now removed:
    - disable-libx11-xcb-support.patch
    - xscreensaver-damage-fix.patch
    - compiz-manager-posixly-correct.patch
  * Lintian fixes: 
    - update Standards-Version to 3.8.1
    - add misc:Depends to compiz

 -- Sean Finney <seanius@debian.org>  Wed, 01 Apr 2009 00:00:10 +0200

compiz (0.7.6-8) unstable; urgency=low

  * Don't run glib-gettextize, to fix FTBFS caused by intltoolize changes
    (closes: #518909).
  * Rebuild against new metacity (closes: #518910).

 -- Julien Cristau <jcristau@debian.org>  Mon, 09 Mar 2009 18:44:13 +0100

compiz (0.7.6-7) unstable; urgency=medium

  * refresh quilt patches to apply with no fuzz/offsets. 
  * add fglrx driver to compiz-manager whitelist (closes: #495539).

 -- Sean Finney <seanius@debian.org>  Mon, 01 Sep 2008 08:00:56 +0200

compiz (0.7.6-6) unstable; urgency=high

  * backport commit aed97c441881d9c382c7865d0305fc8f884c10ac to fix the 
    problems that seem to come up with certain xscreensavers the Right Way.
    (closes: #483170).

 -- Sean Finney <seanius@debian.org>  Sat, 30 Aug 2008 11:39:17 +0200

compiz (0.7.6-5) unstable; urgency=high

  * Brown paper bag: remove shlibs.local and libdecoration0.shlibs, call
    dh_makeshlibs with the proper flags to actually fix dependencies on
    libdecoration0.

 -- Julien Cristau <jcristau@debian.org>  Fri, 01 Aug 2008 18:57:30 +0200

compiz (0.7.6-4) unstable; urgency=low

  [ Julien Cristau ]
  * Bump libdecoration0 shlibs to >= 0.7.6 (closes: #485775).

  [ Sean Finney ]
  * Include fix for posixly-incorrect usage of ENV (closes: #484225).

 -- Julien Cristau <jcristau@debian.org>  Sat, 26 Jul 2008 21:44:51 +0200

compiz (0.7.6-3) unstable; urgency=high

  * Add a versioned Replaces on older compiz-plugins to compiz-gtk, to prevent
    file conflicts.  Thanks to Daniel Burrows for the report (closes: #485436).

 -- Sean Finney <seanius@debian.org>  Mon, 09 Jun 2008 18:39:57 +0200

compiz (0.7.6-2) unstable; urgency=low

  * Add Conflicts against xscreensaver-data-extra as an unfortunately
    heavy handed workaround to prevent graphical lockups with an as-of-yet
    unknown bug somewhere in the screensaver-compiz-driver-xserver chain.
    (See: #483170, and other bugs/urls referenced in that report)

 -- Sean Finney <seanius@debian.org>  Sat, 07 Jun 2008 14:22:15 +0200

compiz (0.7.6-1) unstable; urgency=low

  * New upstream release

  [ Sean Finney ]
  * Special-case the gconf and kconfig plugins to go into the -gtk and -kde
    packages respectively, as they are semi-obsoleted by the ccp plugin anyway
    and cause potentially problematic dependencies.  Thanks to Fabiano 
    Manoel de Andrade for the report (closes: #482150).
  * Add versioned Conflicts on libcompizconfig0 to compiz-core, to reflect
    ABI breakage without introducing a circular dependency.  Thanks
    to Mike Hommey for the report (closes: #482646).
  * Make debian/rules stricter about catching uninstalled files.
  * Make debian/rules able to build/clean/build again.
  * Misc cleanups in debian/rules.
  * Lintian fixes:
    - Spelling correction in debian/control
    - Fix for build-depends-on-1-revision for x11proto-gl-dev

  [ Julien Cristau ]
  * Add Depends: libxslt1-dev, libxml2-dev to compiz-dev, as they are required
    by compiz.pc (closes: #482192).

 -- Sean Finney <seanius@debian.org>  Mon, 26 May 2008 23:04:24 +0200

compiz (0.7.4-1) unstable; urgency=low

  * New upstream release
  * Incorporate xcb-disabling patch from
    http://gitweb.opencompositing.org/?p=users/3v1n0/compiz-patches

 -- Sean Finney <seanius@debian.org>  Sun, 18 May 2008 19:15:13 +0200

compiz (0.6.3~git20080115.0ea58487-1) unstable; urgency=low

  * New upstream (git snapshot) release.  Refreshed quilt patches.
  * Contains upstream fix for kde-window-decorator problems with not properly
    mapping/rendering titlebars.  closes: #458464, #460186.
  * Remove timestamps from quilt patches (package maintainers, you 
    should put QUILT_NO_DIFF_TIMESTAMPS=1 in your ~/.quiltrc).
  * add compizconfig-settings-manager to Suggests field for compiz.
  * don't blindly assume that the nvidia-settings program is present.
    patch: compiz-manager-nvidia-settings-optional.patch.  closes: #463645.

 -- sean finney <seanius@debian.org>  Tue, 26 Feb 2008 20:08:31 +0100

compiz (0.6.3~git20071222.061ff159-1) unstable; urgency=low

  * New upstream (git snapshot) release.  Refreshed quilt patches.
  * Remove build-dependency on libfuse-dev, since we explicitly disable the
    fuse plugin and it causes FTBFS on non-linux arches.  It should also make
    backporting easier (closes: #451149, #455516).
  * compiz-manager-posixly-correct.patch: fix from Brian Carlson to get
    compiz-manager to run when POSIXLY_CORRECT is set (always pass
    options before arguments closes: #456628).
  * Remove libmetacity entry from shlibs override (closes: #455515) Thanks to
    Rober Millan for noticing this.
  * Remove outdated info in README.Debian for compiz-core (closes: #454340).
  * lintian:
    - Standards-Version to 3.7.3
    - libdecoration0-dev to section libdevel

 -- Sean Finney <seanius@debian.org>  Sat, 22 Dec 2007 12:01:54 +0100

compiz (0.6.3~git20071208.25941d14-1) unstable; urgency=low

  [Sean Finney]
  * New upstream (git snapshot) release.
  * Remove autofoo generated content and create/remove it as part of the
    standard build process instead.
  * Similarly, add Build-Deps on autoconf and similar stuff.
  * Remove the old/buggy compiz.wrapper script and now use Kristian Lyngstol's
    compiz-manager script as a drop-in replacement for it.  This should fix
    numerous problems with plugin settings and window decorators not behaving
    properly.  specifically, it closes: #449389, #390929, #400583, #440095.
    it also closes: #446901, #447345 closes: #393501, #445026.  
  * Update copyright file accordingly.

 -- Sean Finney <seanius@debian.org>  Sun, 16 Dec 2007 17:29:03 +0100

compiz (0.6.3~git20071104.c9009efd-1) unstable; urgency=low

  [Sean Finney]
  * New upstream (git snapshot) release.
  * Disable the (unused?) fuse plugin, explicitly enable the gconf plugin
  * lintian: update FSF address

  [Brice Goglin]
  * Make compiz dependencies on compiz-* packages versioned,
    closes: #440494.
  * Make the build-dependency on libfuse-dev require >= 2.7.0.

 -- Sean Finney <seanius@debian.org>  Sun, 04 Nov 2007 21:20:17 +0100

compiz (0.5.2-2) unstable; urgency=low

  * oops, shipping copies of a few .h and .pc files in both compiz-dev
    and libdecoration0-dev.  fixed.

 -- sean finney <seanius@debian.org>  Wed, 29 Aug 2007 21:06:29 +0200

compiz (0.5.2-1) unstable; urgency=low

  * New upstream release.
  * updated/massaged various quilt patches
  * make sure configure is executable at build time.  seems that this
    causes problems in a pbuilder environment
  * new build-dependencies on libxml-parser-perl and xsltproc
  * modify compiz-dev.install to install all the extra .h/.pc files
    being generated in this new version.

 -- sean finney <seanius@debian.org>  Wed, 22 Aug 2007 22:58:09 -0700

compiz (0.5.0.dfsg-3) UNRELEASED; urgency=low

  * Restore all ${misc:Depends} in debian/control so that for instance
    compiz-gtk and compiz-plugins gets the required dependency on gconf2
    (for gconf-schemas in postinst), closes: #436432.

 -- Brice Goglin <bgoglin@debian.org>  Tue, 07 Aug 2007 15:10:49 +0200

compiz (0.5.0.dfsg-2) unstable; urgency=low

  * Drop the now obsolete Source-Version in favour of binary:Version in
    debian/control.
  * Replace --strict-binding and --use-cow documentation by --loose-binding
    and --use-root-window respectively in the compiz.real manpage. Thanks
    Michael Gilbert. (Closes: 432920)
  * Rearrange and add missing command-line options in the compiz.real manpage.
  * compiz-gtk needs to conflict with libmetacity0 (<< 1:2.15.21) because of
    an incompatible ABI change. This should really be fixed in libmetacity. A
    shlibs bump should do the trick. (Closes: 425631)
  * Add upstream patch that fixes non-tfp textures (icons, cube top image
    etc.) on big endian platforms. Thanks Michel Dänzer.
  * Run dh_makeshlibs with -V. (Closes: 425463)
  * Use package-local shlibs override file to depend on libmetacity0 (>=
    1:2.15.21) and libdecoration0 (>= 0.5.0). Thanks Sune Vuorela.

 -- Thierry Reding <thierry@gilfi.de>  Fri, 13 Jul 2007 11:25:13 +0200

compiz (0.5.0.dfsg-1) unstable; urgency=low

  [ Thierry Reding ]
  * New upstream development release:
    - Remove stencil buffer requirement.
    - Focus stealing prevention support.
    - Better occlusion detection and more efficient rendering.
    - Added plugins:
      + blur: blur windows and contents behind translucent windows
      + fuse: map compiz options to a file-system
      + ini: flat file configuration backend
      + inotify: file change notification
      + video: composited video interface for efficient playback
  * Forward-port patches:
    - Dropped 012_debian-kde-includes-dir.patch, no longer needed.
    - Dropped 013_set-qtdir-fallback.patch, no longer needed.
    - Refresh other patches.
  * Use compiz' default set of plugins.
  * Add build-dependency on libfuse-dev needed by the fuse plugin.
  * No longer conflict with metacity >= 2.15.21, now that metacity 2.18 is in
    unstable. (Closes: #411012)
  * Add symlink to the compiz-core README to the compiz package.
    (Closes: #408605)
  * Drop po/*.gmo and kde/window-decorator/*.moc.cpp from the original
    tarball. Add a note to debian/copyright.
  * Pass QTDIR=/usr to the configure script so that the moc can be found.
  * shlibs bump for libdecoration because it contains added symbols.
    Thanks Julien Cristau.

  [ Julien Cristau ]
  * Don't remove .cvsignore files and autogen.sh in clean.

 -- Thierry Reding <thierry@gilfi.de>  Sat, 19 May 2007 17:34:51 +0200

compiz (0.3.6-1) experimental; urgency=low

  [ Thierry Reding ]
  * New upstream release:
    + Drop 002_tfp-server-extension.patch, obsolete.
    + Drop 005_glfinish.patch, fixed upstream.
    + Refresh 011_snap-by-default.patch.
  * Replace build-dependency on libdbus-1-dev by libdbus-glib-1-dev.
  * Add build-dependency on kdebase-dev and libdbus-qt-1-dev for the KDE
    window decorator.
  * Add patch 012_debian-kde-includes-dir to correctly detect the KDE include
    directory on Debian systems.
  * Add patch 013_set-qtdir-fallback to set the QTDIR variable to /usr if it
    has not explicitly been set before. This allows the configure script to
    correctly detect the moc compiler.
  * Add the compiz-kde package which provides a window decorator for KDE.
    Closes: #390338.
  * Add the libdecoration0 and libdecoration0-dev packages. libdecoration0 is
    needed by both Gtk and KDE window decorators while libdecoration0-dev can
    be used to write additional decorators.
  * Add patch 015_optional-fbo which adds a command-line option for disabling
    the use of FBOs (work around buggy drivers). Add the --no-fbo option to
    command-line in the compiz wrapper.
  * Remove the --strict-binding and --use-cow options from the command-line in
    the compiz wrapper. These are now the defaults.
  * Add png and svg to the list of default plugins. They are needed to load
    PNG and SVG images (e.g. for the cube's top face).
  * Check whether the GLX_EXT_texture_from_pixmap extension is available in
    direct or indirect rendering contexts. If it is available only in indirect
    rendering contexts, force compiz to use indirect rendering.

 -- David Nusinow <dnusinow@debian.org>  Wed, 17 Jan 2007 23:46:34 -0500

compiz (0.3.4-1) experimental; urgency=low

  * New upstream release:
    + Drop 012_metacity-theme-support.patch, fixed upstream.
    + Drop 013_fix-default-plugins.patch, fixed upstream.
    + Refresh all other patches.
  * Don't use xsfbs anymore until there's an easy way to keep it up-to-date
    in git repositories. For now using quilt works just fine.
  * Drop build-dependencies on automake1.9 and libtool because we don't run
    the complete autotools stack anymore.
  * Add missing dependencies to the compiz-dev package. It needs to pull in
    all packages required by its pkgconfig file.
  * Add a dependency on libgl1-mesa-dev | libgl-dev to compiz-dev because
    compiz.h includes files provided in that package.

 -- Thierry Reding <thierry@gilfi.de>  Sun, 26 Nov 2006 00:36:39 +0100


compiz (0.3.2-1) experimental; urgency=low

  * New upstream release. Closes: #396770.
    + Remove 010_snap-inverted.patch, applied upstream.
    + Refreshed other patches to apply cleanly again.
    + Remove gtk-window-decorator.schemas and use the one provided by
      upstream (gtk/window-decorator/gwd.schemas).
  * Targetted at experimental until the release of etch.

 -- Thierry Reding <thierry@gilfi.de>  Tue, 14 Nov 2006 02:36:40 +0100

compiz (0.2.2-1) unstable; urgency=low

  [ Thierry Reding ]
  * New upstream release:
    + Drop 013_dont-fail-if-theme-not-found.patch, applied upstream.
  * Make 012_metacity-theme-support also patch the configure script, not only
    configure.ac.
  * Add 013_fix-default-plugins.patch which fixes upstream's handling of the
    default plugins configuration variable.
  * Make all plugins that were enabled in previous versions default plugins so
    compiz' behaviour doesn't change. Drop the 'water' plugin because our X
    server does not support it yet.
  * Drop --disable-kde from the configure flags because it is now disabled by
    default.
  * Add a dependency on mesa-utils to compiz-core to provide glxinfo that is
    needed by the compiz wrapper. Thanks Per Bojsen.
    Closes: #393113.
  * Conflict with libmetacity0 (>= 1:2.15.21) because it would currently make
    gtk-window-decorator segfault.

  [ David Nusinow ]
  * Add myself to uploaders. Thierry is still the primary maintainer.

 -- David Nusinow <dnusinow@debian.org>  Mon,  6 Nov 2006 23:13:41 -0500

compiz (0.2.0-1) unstable; urgency=low

  [ Thierry Reding ]
  * New upstream release.
    + Drop 011_plane-plugin-schema.patch, applied upstream.
    + Drop 012_freedesktop-schema.patch, applied upstream.
  * Replace 010_snap-by-default by the upstream patch 010_snap-inverted and
    add 011_snap-by-default to enable snapping by default.
  * Add 012_metacity-theme-support.patch which uses an older version of the
    metacity library for theme support so that compiz can be built for Debian
    unstable.
  * Install a schemas file for the Gtk window decorator which is used to
    enable the use of metacity themes.
  * Suggest nvidia-glx (>= 1.0.9625-1). (Closes: #390326).
  * Add code to the compiz wrapper to handle the NVIDIA GLX implementation
    Closes: #390814.
  * No longer build static versions of the plugins.
  * Remove .la files manually because they are not needed.
  * Clean up build-dependencies:
    + Remove unnecessarily versioned build-dependencies.
    + Tighten the build-dependency on libxcomposite-dev to (>= 1:0.3-2).
      Closes: 390304, 390416.
  * Add a manpage documenting the compiz wrapper.
  * Check if the gconf plugin is installed before trying to load it in the
    wrapper.
  * Enable building the gconf-dump plugin.
  * Add a README file to the compiz-core package.
  * List copyright holders and contributors in the copyright file.
    Closes: #392422.
  * Add 013_dont-fail-if-theme-not-found.patch which will make compiz use its
    default theme if the metacity theme cannot be found.
  * Make compiz-gtk suggest gnome-themes so people can take advantage of the
    metacity theme support.

  [ David Nusinow ]
  * Tighten up all the X library build-depends by explicitly using current
    versions. Thanks aj.

 -- David Nusinow <dnusinow@debian.org>  Fri, 13 Oct 2006 16:22:17 -0400

compiz (0.0.13+git20060928-2) unstable; urgency=low

  * Change the maintainer field to the Debian X Strike Force.
  * Add myself to the uploaders field.
  * Move compiz.{docs,install,manpages} to compiz-core.{docs,install,manpages}
    so the installed files end up in the correct package.
  * Rename compiz.1 to compiz.real.1, because it's actually documenting the
    real compiz binary.

 -- Thierry Reding <thierry@gilfi.de>  Fri, 29 Sep 2006 09:24:30 +0200

compiz (0.0.13+git20060928-1) unstable; urgency=low

  * Initial release. (Closes: #352151)
  * Install the compiz schema during postinst and removes it during prerm
    (using dh_gconf).
  * Add patches by Kristian Høgsberg to make compiz work on AIGLX:
    + 002_tfp-server-extension.patch
    + 005_glfinish.patch
  * No longer build the compiz-kde package, because it is unusable.
  * Add gtk-window-decorator.1 manpage.
  * Install the window settings configuration plugin into the right location
    (/usr/lib/libgnome-window-settings1/libcompiz.so).
  * Bump build-dependency on libxcomposite-dev (>= 0.3) because it provides
    the XComposite{Get,Release}OverlayWindow functions.
  * Install a compiz wrapper as /usr/bin/compiz to call compiz.real with
    required arguments (load gconf plugin).
  * Add 010_snap-by-default.patch to turn snapping on by default.
  * Add a versioned build-dependency on x11proto-gl-dev (>= 1.4.8-1) to make
    sure compiz gets built with the correct opcodes for the GLX_EXT_tfp
    extension.
  * Add build-dependency on libmetacity-dev, which is needed for metacity
    theme support.
  * Add the compiz-gtk package containing the former gnome-window-decorator.
    The compiz-gnome package provides the files necessary to integrate compiz
    and compiz-gtk with the GNOME desktop environment.
  * Add a build-dependency on libxinerama-dev, needed to build compiz with
    support for the xinerama extension.
  * Revise the compiz.1 manpage.
  * Rename the compiz package to compiz-core and make compiz a meta-package
    pulling in everything necessary to run compiz from within GNOME.
  * Add 011_plane-plugin-schema.patch by Eugene Konev      gconf settings
    for the plane plugin.
  * Add 012_freedesktop-schema.patch that fixes a typo in compiz.schema.in.

 -- Thierry Reding <thierry@gilfi.de>  Fri, 29 Sep 2006 07:56:05 +0200