~sil2100/compiz/precise_SRU-1

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

  [ Łukasz 'sil2100' Zemczak ]
  * Cherry-pick upstream patches:
    - CMake Error at FindCompiz.cmake:84 (include): include could not find load
      file: CompizDefaults (LP: #993608)
    - compiz (decor) - Warn: failed to bind pixmap to texture (LP: #929989)
    - gtk-window-decorator crashed with SIGFPE in 
      _decor_blend_horz_border_picture() (LP: #963794)
    - [callgrind] compiz spends ~25% of its time constructing/destructing 
      strings in PrivateScreen::handleActionEvent (LP: #1005569)
    - gtk-window-decorator crashed with SIGSEGV in meta_get_decoration_geometry
      (LP: #1007754)
    - composite refresh rate falls back to 50Hz, which is wrong in most cases
      (LP: #1009338)
    - [callgrind] compiz spends ~7% of its time inserting into and destructing 
      the events list in PrivateScreen::processEvents() (LP: #1006335)

  [ Timo Jyrinki ]
  * Cherry-pick upstream patches:
    - gtk-window-decorator crashes with BadWindow (invalid Window parameter),
      from XGetWindowProperty() from get_frame_type() (LP: #1019337)
    - Fix gtk-window-decorator crash in meta_get_button_position 
      (LP: #1015593)
    - If running test cases under a real X server, we don't care if Xvfb is
      missing (LP: #994841)

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Wed, 11 Jul 2012 15:44:48 +0300

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

  * Revert SRU because of last minute regression being reported. (LP: #1019337)

 -- Stéphane Graber <stgraber@ubuntu.com>  Tue, 10 Jul 2012 14:18:18 -0400

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

  [ Łukasz 'sil2100' Zemczak ]
  * Cherry-pick upstream patches:
    - CMake Error at FindCompiz.cmake:84 (include): include could not find load
      file: CompizDefaults (LP: #993608)
    - compiz (decor) - Warn: failed to bind pixmap to texture (LP: #929989)
    - gtk-window-decorator crashed with SIGFPE in 
      _decor_blend_horz_border_picture() (LP: #963794)
    - [callgrind] compiz spends ~25% of its time constructing/destructing 
      strings in PrivateScreen::handleActionEvent (LP: #1005569)
    - gtk-window-decorator crashed with SIGSEGV in meta_get_decoration_geometry
      (LP: #1007754)
    - composite refresh rate falls back to 50Hz, which is wrong in most cases
      (LP: #1009338)
    - [callgrind] compiz spends ~7% of its time inserting into and destructing 
      the events list in PrivateScreen::processEvents() (LP: #1006335)

  [ Didier Roche ]
  * debian/control:
    - change Vcs-Bzr to point to precise branches

 -- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com>  Wed, 20 Jun 2012 15:02:31 +0100

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