1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
|
compiz (1:0.9.10+13.10.20131011-0ubuntu1) saucy; urgency=low
[ Chris Townsend ]
* Remove seemingly useless code in the SnapWindow::resizeNotify()
method where a snapped window that is being resized on the opposite
side of the snap would cause orders of magnitude more calls to
window->resize() and kill performance. (LP: #1019139)
[ Marco Trevisan (Treviño) ]
* debian/patches/ubuntu-config.patch: Don't use Ctrl+Alt+KP_0 for grid
maximize Otherwise this clashes with default minimize key. (LP:
#1236899)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3797
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 11 Oct 2013 06:16:27 +0000
compiz (1:0.9.10+13.10.20131004-0ubuntu1) saucy; urgency=low
[ Chris Townsend ]
* Fix issue where non-resizable windows and semi-maximized window
would have an area near the top of the title bar that could not be
grabbed. (LP: #1228507)
[ Marco Trevisan (Treviño) ]
* ActionMenu: weak ref the action menu on creation, and unref it on
destroy Also, now the widget destruction automatically unset the
menu. This makes the object to be correctly finalized (not only
disposed) making sure the internal idle into WnckActionMenu gets
stopped. (LP: #1191853)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3794
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 04 Oct 2013 05:23:02 +0000
compiz (1:0.9.10+13.10.20130927.1-0ubuntu1) saucy; urgency=low
[ Chris Townsend ]
* Fix regression when selecting apps on a different viewport than the
current one will no longer automatically switch the viewport. (LP:
#1228352)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3791
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 27 Sep 2013 11:10:15 +0000
compiz (1:0.9.10+13.10.20130920-0ubuntu1) saucy; urgency=low
[ Chris Townsend ]
* Work done by Sam Spilsbury: - Ensure that the frame region is always
set as soon as the window is decorated. - Further ensure that the
window decoration isn't needlessly reset if the window already had
one. - Refactored XShape usage into a common function. - Added tests
to verify the behaviour of shape set on initially creating a
decorated window and also upon changing the input frame window
shape. (LP: #1158267)
* Alt-Tabbing or Launcher selecting a window that is over 50% in a
different viewport should not switch the viewport nor change the
placement of the window. The fix is to add an option to turn this
behavior on or off. By default, the option is on, but Ubuntu is
patched to turn it off to fix this bug. (LP: #1092323)
[ Marco Trevisan (Treviño) ]
* debian/patches/ubuntu-config.patch: remove grid custom keybindings
for window management We handle these directly in unity. (LP:
#992697)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3789
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 20 Sep 2013 11:18:01 +0000
compiz (1:0.9.10+13.10.20130828.2-0ubuntu1) saucy; urgency=low
[ Chris Townsend ]
* Removed logic in the calculateWallOffset() function in the Expo
plugin that only accounted for offsetting the expo animation on the
left-most and top-most monitor. Also removed the
TestNoOffsetIfOutputIsNotOrigin test since this test is now invalid.
(LP: #1031710)
* Ctrl-Alt-Del should open the gnome-system-monitor at the processes
tab. This fix uses the commands plugin to override the default
action. This includes: - Install the commands plugin by default. -
Breaks/Replaces the compiz-plugins package for versions earlier than
0.9.10. - Patch commands.xml and integrated.xml to map gnome-system-
monitor to Ctrl-Alt-Del by default. - Start the command plugin upon
Compiz starting. (LP: #890747)
[ Łukasz 'sil2100' Zemczak ]
* Fix the Replaces/Breaks version in the default plugin
[ Ubuntu daily release ]
* Automatic snapshot from revision 3785
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 28 Aug 2013 19:13:51 +0000
compiz (1:0.9.10+13.10.20130822-0ubuntu1) saucy; urgency=low
[ Sam Spilsbury ]
* Bump version to 0.9.10
[ Łukasz 'sil2100' Zemczak ]
* Remove debian/patches/unity_support_test.patch:
- Running the support test from compiz has bad side effects, from now
on we run it from Xsession.d
* Automatic snapshot from revision 3644
[ Iven Hsu ]
* Opacify: Only dim the windows above the active window.(LP:
#1189374). (LP: #1189374)
* KWD: Fix compile errors with KDE 4.11. The KWin developers made
kdecorationbridge.h private. See:
http://lists.freedesktop.org/archives/compiz/2013-March/003479.html
(LP: #1193792). (LP: #1193792)
[ Nikolay Martynov ]
* When static switcher is enabled and has an option to show
application icon turned on the icons are expected to be ~1/3 of a
thumbnail (48px). Instead they are displayed in 512px size and
completely cover everything. This change addresses this issue. See
LP #1173914. (LP: #1173914, #1186426)
[ BryanFRitt ]
* Fixed the non-working Annotate 'Clear' Button. Moved this option's
CCSM position upwards to keep the button shortcuts together. (LP:
#1202907). (LP: #1202907)
[ Mehrdad Afshari ]
* Added "move window to previous monitor" feature to compiz Put
plugin. (LP: #1178581)
[ Hu Kang ]
* gtk-window-decorator: destroy action menu when any of the (close,
min, max) buttons on the title bar is pressed. (LP: #1101648)
* Remove redundant src/logmessage/include/core/logmessage.h (LP:
#1067246). (LP: #1067246)
[ Steve Langasek ]
* Fix for bug #763148 (with added test cases): when the desktop is
resized, windows should stay on their original workspace. (LP:
#763148)
[ Brandon Schaefer ]
* Unrevert 3728, fix failing tests. Change the behaviour of
undecorating windows. Previously when a window was undecorated, we
would shift it back to an appropriate position according to its
gravity member. That behaviour was problematic because in the
StaticGravity case the window has to just stay in the same place.
But then if you had a window with StaticGravity which then did get a
decoration and later removed it, it would be placed as though it was
decorated and appear to be in the wrong place. The correct behaviour
is to place all windows as though they have decorations, and then
when decorations are removed, to move the window back to the corner
as indicated in its gravity and then expand its size to cover the
obscured regions no longer hidden because the decorations went away.
(LP: #1165343). 1. Completely remove decorOffsetMove and other
related code from decor.cpp. Put the logic to handle the
window->input () - window->border () placement offset inside of
setWindowFrameExtents instead. Now the window will always be
offset from its original non-decorated position to the new
decorated position, rather than having to guess between
decoration sizes. 2. Make saveGeometry and restoreGeometry work
relative to window->border () as opposed to including it in the
saved geometry. It is possible that the border size might
change during maximization, as such, we don't want to save the
position with the border before maximizing. Instead save the
position as if it were never decorated so that when the window
is restored it can be restored to its original position and
then adjusted for its new border size. 3. Fix a few typoes in the
tests. 4. Moved some commonly used matchers into compiz::testing
5. Make COMPIZ_PLUGIN_DIR accept multiple directories and look in
each one of them for the plugin 6. Set COMPIZ_PLUGIN_DIR
appropriately for each plugin that we wish to load on startup
so that we load locally built plugins as opposed to installed
ones. 7. Uncomment compiz_discover_tests for the acceptance
tests. Now they are run by default. (LP: #1195522). (LP:
#1195522, #1165343)
* If we receive a stateNotifyChange, we check if we are in a max
state. If so, overwrite the xwc with either X | W, or Y | H
depending on the semi max state with the orig position before we
went into a semi max state. This way when we leave any sort of max
state the orig position is restored. If the window is being grabbed
we do not overwrite the position, which it gets its own value at
that point (instead of the orig pos). (LP: #892012)
[ Marco Trevisan (Treviño) ]
* OpenGL Screen: Ignore the MSAA configs during initialization This
fixes a crash with new MESA drivers and high monitor resolutions
caused by the fact that we're accidentally using some MSAA configs
with some drivers in Mesa 9.0. Taking in account the values of
GLX_SAMPLES and GLX_SAMPLE_BUFFERS fixes the issue. See mesa bug
https://bugs.freedesktop.org/show_bug.cgi?id=61182. (LP: #1174495)
* OpenGLES Screen: Ignore the MSAA configs during initialization.
* GLScreen: break the iteration as soon as we've found a valid egl
config.
[ Michail Bitzes ]
* Plugin wizard ported to OpenGL|ES. Use GLVertexBuffer. Enable
building for GLES. Enable architectures armel and armhf. (LP:
#1196003). (LP: #1196003)
[ Chris Townsend ]
* Fixed issue where minimizing an unredirect full screen window would
repaint the full screen window after minimizing it even though it
isn't really there. . (LP: #1053895)
[ Sami Jaktholm ]
* *Grid code: Prevent center and corner gridded windows from jumping
viewports. (Thanks and credits for this go to Sami Jaktholm) Prevent
top and bottom gridded windows from jumping viewports by making
those semi-maximize horizontally. As those are actually semi-
maximized horizontally, we will treat them as such and let core
handle the restoring, just like we already do for vertically semi-
maximized grid windows (left/right). Now "Strg+Super+Down" will
restore top and bottom gridded windows correctly as well. Also
multiple gridding to top, bottom, left or right will not overwrite
the stored original size anymore. Restore windows also when
workspace switcher (expo) is active. (Thanks and credits for this go
to Sami Jaktholm) Allow cycling for all gridded windows if
explicitly specified by the user in CCSM. Forbid cycling through
different sizes for corner and center-gridded windows also per
default, now fully fixing bug #878820 and following the design
specification by Ayatana Design there, making behaviour consistent.
Introduced 3 new bools: horzMaximizedGridPosition,
vertMaximizedGridPosition, anyMaximizedGridPosition Used these bools
inside the if condition checks. Simplified complicated if condition
by removing redundant additional size check. Cleanup all around.
*Grid xml: Added cycle_sizes bool option, which allows the user to
choose the prefered behaviour (fixed versus flexible sizes on
multiple presses on the same grid keyboard shortcut). Default of
this option is off, cycling disabled as specified by design. Added
punctuation where missing and removed it where usually is none.
Fixed typos, improved description and titles. *Expo code: Tell grid
when viewport change is in progress. (Thanks and credits for this go
to Sami Jaktholm) (fixes: LP: #878820, LP: #879218, LP: #882754 and
LP: #1082001, partially fixes: #1116538, #1164332). (LP: #882754,
#878820, #1164332, #1082001, #879218, #1116538)
* Grid: Check that composite and opengl ABIs are COMPIZ_COMPOSITE_ABI
and COMPIZ_OPENGL_ABI instead of CORE_ABIVERSION. (LP: #1181461)
* Fade: Fix a typo that causes fade to constantly damage windows with
a modified saturation. (LP: #1159054)
* Grid: Fix window misplacement if a window is restored but the size
doesn't change. - Set isGridResized to false before configuring the
window in GridScreen::restoreWindow. If the restored geometry is the
same as current geometry, configureXWindow will trigger moveNotify
instead of resizeNotify. As isGridResized is still true,
GridWindow::moveNotify blocks the restoration movement and the
pointer detaches from the decoration. - Don't use pointerBufs when
calculating position of the restored window with snapback windows
disabled. The window will be positioned a bit too high (or low) and
the pointer detaches from decoration if the movement was actually
tracked. This was a workaround for the first point and can be safely
removed. (LP: #1115344)
* Fix memory leaks in titleinfo plugin. (LP: #1101569, #1101454)
* Expo plugin: 1) Always fetch the dndButton action in dndFini. The
action given to dndFini might be a key or edge binding action if
expo was terminated during window DnD. We shouldn't set their state
to CompAction::StateInitButton or the bindings break. 2) Pass NULL
action to termExpo if invoked from handleEvent Previously we passed
the action of expoKey to termExpo which in turn passed it to
dndFini. DndFini changed the action state to
CompAction::StateInitButton that broke the keybinding. Now that
dndFini fetches the dndButton action itself, there's no need to
fetch it in handleEvent too as dndFini is the only one using the
action. (LP: #1131106)
* Expo: Cast denominators of integer divisions to floats before
performing a matrix translation to viewports with the results.
Otherwise rounding errors in cases the results are not an integers
cause the viewports to be painted offscreen. (LP: #438580)
* Port dbus introspection to compiz 0.9. - move xml creation to a
separate class (IntrospectionResponse) for easier memory management
(allocate buffer and writer in ctor, free in dtor). - move
duplicated response sending code to a separate method that takes
IntrospectionResponse and sends the resulting xml. - Refactor
handle*IntrospectMessage to work with compiz 0.9 interfaces. This
also fixes the broken list method which was a result of logic error.
The code to invoke list handler was never reached. This fixes most
of the issues noted in bug 749084. (LP: #749084)
* Bias the current viewport in addWindowSizeChanges. If window is
visible in the current viewport, use that viewport when calculating
geometries in addWindowSizeChanges. Otherwise the current method is
used. This way visible windows are maximized in the current
viewport. However, offscreen windows won't jump back to the active
viewport if window maximizes by itself or addWindowSizeChanges is
called for some other reason. (LP: #776435)
* Expo: Recompute glow quads if a desktop window is resized. (LP:
#1090713). (LP: #1090713)
* Decor: Use maximized border extents only if window is fully
maximized. The decorator draws a normal border around semi-maximized
windows. When maximized border extents were used for semi-maximized
windows, compiz didn't reserve any space for the border in its
geometry calculations. At least following problems are a result of
this behavior: - Semi-maximized windows have 1px borders drawn on
adjacent workspaces (LP: #986051). - Grid placed window overlaps the
adjacent viewport (LP: #898870). (LP: #986051, #898870)
[ gebner@2b7e.org ]
* Adding a uniform to a GLVertexBuffer that uses AutoProgram causes
compiz to segfault. Example: gWindow->addShaders("cms", "",
fragment_shader); gWindow->vertexBuffer()->addUniform("cms_lut",
unit); // segfault happens later in PrivateVertexBuffer::render The
patch modifies PrivateVertexBuffer::render to set the uniform on the
generated AutoProgram instead of the provided program, which in this
case is NULL, causing a segfault. (LP: #1162598). (LP: #1162598)
[ MC Return ]
* Cube-addon (Cube Reflection and Deformation): If the user disables
"Draw top face"/"Draw bottom face" we do not want to draw anything
(LP: #1162484). The original, non-deformed caps will only work for
the non-deformed cube, so we can just use the original function in
that case. We need to clear the texture if no texture files are
specified in "Image files", otherwise the old texture would still be
drawn, even if all image files are removed (LP: #1162711). Now we
will default back and use the cube cap colors and opacities defined
in the "Desktop Cube" plugin (if "Draw top/bottom face" are enabled
only, see above). This way the user can choose between (for
top/bottom): 1. Do not draw a cube cap face at all ("Draw top/bottom
face" option disabled) 2. Use color and opacity specified in
"Desktop Cube" (empty images list) 3. Use a texture for the cap
(image is in the list, which is default) Removed redundant mCurrent
= mCurrent % mFiles.size (); calculation, this has already been
done: cap->mCurrent = (cap->mCurrent + change + count) % count;
count and change both need to be != 0 for mCurrent to change. Fixed
indentation, removed redundant brackets and newlines, declaration
and assignment of local variables in one line, if possible, minor
cleanup. (LP: #1162484, LP: #1162711). (LP: #1162484, #1162711)
* Stack (Window) Switcher (currently excluded from compilation): Fixed
window title drawn although "Show Window Title" is disabled. (LP:
#1070782). (LP: #1070782)
* *Grid code: Prevent center and corner gridded windows from jumping
viewports. (Thanks and credits for this go to Sami Jaktholm) Prevent
top and bottom gridded windows from jumping viewports by making
those semi-maximize horizontally. As those are actually semi-
maximized horizontally, we will treat them as such and let core
handle the restoring, just like we already do for vertically semi-
maximized grid windows (left/right). Now "Strg+Super+Down" will
restore top and bottom gridded windows correctly as well. Also
multiple gridding to top, bottom, left or right will not overwrite
the stored original size anymore. Restore windows also when
workspace switcher (expo) is active. (Thanks and credits for this go
to Sami Jaktholm) Allow cycling for all gridded windows if
explicitly specified by the user in CCSM. Forbid cycling through
different sizes for corner and center-gridded windows also per
default, now fully fixing bug #878820 and following the design
specification by Ayatana Design there, making behaviour consistent.
Introduced 3 new bools: horzMaximizedGridPosition,
vertMaximizedGridPosition, anyMaximizedGridPosition Used these bools
inside the if condition checks. Simplified complicated if condition
by removing redundant additional size check. Cleanup all around.
*Grid xml: Added cycle_sizes bool option, which allows the user to
choose the prefered behaviour (fixed versus flexible sizes on
multiple presses on the same grid keyboard shortcut). Default of
this option is off, cycling disabled as specified by design. Added
punctuation where missing and removed it where usually is none.
Fixed typos, improved description and titles. *Expo code: Tell grid
when viewport change is in progress. (Thanks and credits for this go
to Sami Jaktholm) (fixes: LP: #878820, LP: #879218, LP: #882754 and
LP: #1082001, partially fixes: #1116538, #1164332). (LP: #882754,
#878820, #1164332, #1082001, #879218, #1116538)
* *Resizeinfo, xml changes: Added option for bold/normal font, default
is still bold. Added option to change the font size (10-14), default
is still 12 pixel. Enhanced and corrected a few tooltips.
*Resizeinfo, code changes: Choose between PANGO_WEIGHT_BOLD and
PANGO_WEIGHT_NORMAL. Use individual font size specified by the user
in CCSM. Fixed computation of wrong damageRegion, it was
additionally adding the window size, making it way too large.
Removed useless declaration of int width and height. Declaration and
assignment of local variables in one line, if possible. Minor
indentation fixes. (LP: #1166195, LP: #1166196 and LP: #1166245).
(LP: #1166195, #1166196, #1166245)
* *Move xml: Implemented options to configure: "Snapoff Distance"
"Snapback Semimaximized Windows" and "Snapback Distance" Improved a
few tooltips. *Move code: Replaced SNAP_BACK and SNAP_OFF hardcoded
constants and made those configurable. Implemented a strategy to
snap off horizontally maximized windows by dragging them along the x
axis. Implemented snapping back of horizontally maximized windows
and fixed the snapping for vertically maximized windows (wrong
cursor calculation). Fixed a few wrong calculations in the if
condition checks responsible for snapping off and back. Merged if
condition checks. Just compute various local variables if we do not
return false. Removed redundant brackets, fixed indentation and
improved readability. (LP: #1165198, LP: #1167933). (LP: #1167208,
#1167933, #1165198)
* Freewins xml: Fixed False->false and True->true typos. Credits and
thanks for finding cause and fix go to raveit65 ! (LP: #1163606).
(LP: #1163606)
* Screenshot code cleanup: Used standard bool for mGrab. Merged a few
if condition checks. Declaration and assignment of local variables
in one line. Removed redundant brackets. Added and removed newlines
to improve readability. Added a missing break (just a style issue).
Fixed indentation. C++ style for comments.
* *Move xml: Slightly improved long description of the move plugin.
Implemented option to change the key move increment size. Removed
<precision> settings as they just work for floats. *Move code:
Removed hardcoded KEY_MOVE_INC variable. Introduced int
moveIncrement to not have to execute optionGetKeyMoveInc () to get
the value twice. (LP: #1167933, part 2). (LP: #1167933)
* Shift Switcher code cleanup: Merged a few if-if condition checks.
Declaration and assignment of local variables in one line. Removed
redundant brackets. Added and removed newlines to improve
readability. Fixed indentation.
* Composite code cleanup: Merged a few if-if condition checks.
Declaration and assignment of local variables in one line. Removed
redundant brackets. Added and removed newlines to improve
readability. Fixed indentation.
* *Grid code: Simplified bool GridScreen::restoreWindow (...): If Grid
has not touched the window we return false and let core do the dirty
work. (Thanks go to Sam Spilsbury for suggesting this solution.)
*Grid xml: Improved the CCSM Grid put_restore_key tooltip. (LP:
#1116538). (LP: #1116538)
* *Cube Gears: Added glDepthMask (GL_TRUE); and glDepthFunc (GL_LESS);
to void GearsScreen::cubePaintInside (...) to fix the culling on
multimonitor systems (green gear was always rendered in front). Also
fixed indentation and removed some redundant newlines. (LP:
#1168919). (LP: #1168919)
* *Showmouse code cleanup: Assignment and declaration of local
variables in one line. Removed redundant brackets. Fixed
indentation. Removed and added newlines for better readability.
*Showmouse code changes: Removed these redundant gl calls: glEnable
(GL_TEXTURE_2D); glDisable (GL_TEXTURE_2D); (partially fixes LP:
#1051290 and LP: #1051295). (LP: #1051290, #1051295)
* *Workspacenames: New Feature: Implemented option to adjust vertical
offset for top and bottom of screen workspacename placement. Set the
default offset to 50 pixel. Cleanup: Added brackets to for loop. Use
prefix increments. Indentation fixes. Added and removed newlines for
better readability. Added comment. Removed TEXT_BORDER constant.
Improved tooltips. (LP: #1172063). (LP: #1172063)
* *Screenshot, xml: Better plugin summary. Added option to disable the
drawing of the screenshot selection indicator. Added options to
change color and opacity of the outline and the inside of the
rectangle indicator, default colors have not been changed. Other
minor improvements. *Screenshot, code: Introduced the new variable
bool selectionSizeChanged, which is true if the size of the
selection has changed. We just want to draw the screenshot selection
box, if we are grabbed, the size has changed and the CCSM option to
draw it is enabled. Do not render anything if indicator is disabled.
Indicator colors are now configurable. Increased indicator box
outline line width to 2.0. Only damage the full screen once, if the
grab gets terminated, during grab just damage the region painted,
which is the screenshot selection box (LP: #1172234). *SCreenshot,
cleanup: Minor cleanup in the rendering code. Removed redundant
#ifndef USE_GLES compiler option, GLES can cope with enabling and
disabling GL_BLEND. Use prefix- instead of postfix increments.
Declaration and assignment of local variables in one line. Reduced
the scope of the variables x1, y1, x2 and y2. Replaced magic number
65535.0f with const float MaxUShortFloat = std::numeric_limits
<unsigned short>::max ();. Indentation fixes. C++ style for
comments, added comments. (LP: #1169353, LP: #1172234). (LP:
#1169353, #1172234)
* Shift Switcher code cleanup: Use prefix instead of postfix increment
and decrement. Declaration and assignment of local variables in one
line. Merged if statements. Added brackets to for loops. Fixed
indentation. Added and removed newlines for better readability.
Added comment.
* Cube Addon .xml cleanup: Better plugin description. Uppercase
titles. Improved tooltips and names.
* Animation code cleanup: Use prefix- instead of postfix- in- and
decrements. Removed redundant brackets. Added and removed newlines
where appropriate. Fixed indentation.
* Grid, code cleanup: Merged if statements. Replaced magic number
65535.0f with const float MaxUShortFloat = std::numeric_limits
<unsigned short>::max ();. Use prefix- instead of postfix-increment.
Removed redundant (float) casts. Removed redundant brackets. Added
and removed newlines to improve readability. Minor indentation
fixes.
* Workspacenames .xml cleanup: Better description of the plugin's
functionality. Improved tooltips.
* Cube .xml cleanup: Better plugin description. Uppercase titles.
Improved tooltips.
* Shift Switcher .xml cleanup: Better description of the plugin's
function. Fixed load before "bs" plugin typo -> it is the obs
plugin. Created a "Switcher Mode" tab and moved Flip/Cover mode
settings there. Created a subgroup for mouse-specific settings.
Better tooltips with enhanced descriptions. Improved titles. Fixes
all around (typos, etc.).
* Refactor screenshot code to make it clearer and also to allow us to
take screenshots in glPaintOutput as opposed to paint (). Taking
screenshots in paint () was probably correct pre-GLES, but isn't
really correct now - we want to be able to read off of the currently
bound scratch framebuffer where we last painted the frame. Reading
off the frontbuffer is an imprecise operation because the contents
of both buffers are really undefined after a swap. In the case where
we are not painting to a scratch framebuffer object, we'll just end
up reading from the backbuffer anyways, which would be correct to do
mid-frame. Also added the new static const GLenums
DRAW_FRAMEBUFFER_BINDING and READ_FRAMEBUFFER_BINDING to opengl.h.
(LP: #771875). (LP: #771875)
* shift.h: Minor indentation fixes (mostly replaced tabs with spaces).
* Show Desktop .xml cleanup: Improved plugin description. Renamed
"Misc. Options" tab to "General" Improved tooltips.
* Stack Window Switcher (stackswitch): Declaration and assignment of
local variables in one line. Merged if condition checks. Use prefix
de- and increments. Removed redundant brackets. Fixed indentation.
Note: stackswitch is still excluded from compilation, because it has
not been ported to the new GLES-compatible modern post-r3320 Compiz
codebase yet, so this cannot really be tested at the moment (except
in Compiz pre-r3320). Nevertheless this MP is needed to reduce the
diff size for the GLES port of this plugin, which will follow soon.
* Ring Switcher .xml cleanup: Better description of the "Ring
Switcher". Uppercase for titles. More precise names for the tabs.
Improved tooltip wording and descriptions. Changed the order of
options in "General Options" tab: "Ring Windows" and "Overlay Icon"
options are now on top. No settings have been changed.
* *Shift Window Switcher, new features: Implemented new option to
adjust the vertical offset of the text placement and fixed vertical
placement calculation for top and bottom positions. The default
offset is 50 pixels now. Removed hardcoded and redundant float
border. Use 256x256 pixels resolution for icon textures, instead of
96x96. Minor indentation fixes. (LP: #1173684). (LP: #1173684)
* Opacity, Brightness and Saturation (obs) .xml cleanup: Better plugin
description. Improved setting names and tooltips.
* Opacity, Brightness and Saturation (obs) code cleanup: Replaced
#define MODIFIER_COUNT 3 with const unsigned short MODIFIER_COUNT =
3; (the variable MODIFIER_COUNT is needed in obs.h and obs.cpp). Use
prefix instead of postfix increment. Merged if condition checks.
Declaration and assignment of local variables in one line. Removed
redundant brackets. Added and removed newlines if appropriate.
Indentation fixes.
* Improved and optimized ABI logic checks consistently for all
plugins. (LP: #1178228). (LP: #1178228)
* *Grid, code changes and fixes: Fixed segfault in Compiz when
unchecking "Snap windows back to original size". This option now
fully works and will snap back windows to current size, if they are
dragged off via mouse. Fixed segfault in Compiz when unchecking
"Snapoff Maximized/Semi-maximized Windows" - this option is now
removed as this setting is configurable via "Move" plugin already.
The snapoff threshold global setting is now configurable instead of
hardcoded. Fixed broken cursor y-coordinate calculation. Fixed
window placement cursor calculation for non-original-size-restored
windows. Make sure grid-maximizing will never overwrite the windows'
original size. Removed useless code until someone can convince me
that we need it (LP: #1020857). This fixes the weird positioning
(50, 50) when restoring mouse-grid-maximized windows via keyboard.
Added missing ABI checks of OpenGL and Composite. *Grid, xml changes
and fixes: Put Corners/Edges setting into own tab. New tab named
"Resize Actions". Removed hardcoded SNAPOFF_THRESHOLD and made it
configurable. Improved tooltips. Re-applied the quilt patch to the
changed grid.xml.in. Changed the put_restore_key to
"Ctrl+Super+Down" to fix restoring of grid-maximized windows for
Ubuntu as well. (LP: #1172641) *Grid, minor code cleanup: Removed
redundant (int) casts. Improved readability for the if condition
checks. Added and removed newlines, if appropriate. Added comments.
Indentation fixes. (LP: #745159, LP: #1020857, LP: #1172641). (LP:
#1020857, #745159, #1172641)
* Resize, minor code cleanup: Declaration and assignment of local
variables in one line. Added and removed newlines, if appropriate.
Removed redundant brackets. Indentation fixes.
* Wobbly Windows, code cleanup: Declaration and assignment of local
variables in one line. Merged if statements. Removed redundant
brackets. Added missing break. Removed and added newlines for better
readability. Fixed indentation.
* Ring, Shift and Stack Window Switcher: Increased the non-power-of-2
icon texture resolution from 96x96 to 512x512 pixels, in the case of
the ring switcher from 64 to 512. Static Switcher: Replaced #define
of MAX_ICON_SIZE with type-safe extern const unsigned short and set
the icon resolution to 512 as well. Compiztoolbox: Increased the
non-power-of-2 icon texture resolution const unsigned short
ICON_SIZE from 48 to 512 and const unsigned int MAX_ICON_SIZE from
256 to 512 as well. Changed the type of MAX_ICON_SIZE from const
unsigned int to const unsigned short. Scale: Increased the non-
power-of-2 icon texture resolution from 96x96 to 512x512 pixels. KDE
Compatibility: Increased the icon texture resolution from 256x256 to
512x512 pixels. (LP: #1173914). (LP: #1173914)
* Removed redundant Expo configuration changes from ubuntu-
config.patch: The reflection scale change, because reflection is
disabled by default anyway. The inactive viewport saturation change
from 100.0% to 40.0%, because this option does not work (and never
did AFAICR), but if it finally gets fixed Expo's look would
dramatically change. (LP: #1178965). (LP: #1178965)
* Expo plugin: Fixed inactive viewports saturation setting being
ignored. Let's "fade to grey"... :) (LP: #1179183). (LP: #1179183)
* compizconfig/*, libdecoration/*: Use prefix instead of postfix de-
and increments.
* *Ring Switcher, new feature: Implemented "Vertical Offset" option
with a default of 50 pixels. This allows the CCSM user to easily and
exactly configure where the window title text should be displayed.
Ring Switcher, cleanup: Simplified
RingWindow::compareRingWindowDepth (...). Bail out of functions
ASAP, do not initialize anything you do not need, if you exit
anyway. Merged if condition checks. Declaration and assignment of
local variables in one line. Removed redundant brackets. Added and
removed newlines, if appropriate. Fixed indentation. (LP: #1173684).
(LP: #1173684)
* gtk/*, include/*, kde/*: Use prefix instead of postfix de- and
increments.
* Scale Addons code cleanup: Always bail out of functions ASAP, do not
calculate unnecessary stuff before. Merged if-condition checks.
Declaration and assignment of local variables in one line. Reduced
the scope of some variables. Use pre- instead of postfix in- and
decrements. Added and removed newlines where appropriate. Added
brackets to foreach macro loops and removed them otherwise (if
redundant). Fixed indentation. Note: This plugin has a huge chunk of
code, which has been commented out. (apparantly/according to the
comment, because it does not work) I was very cautious in
refactoring this part of the code, as it currently is excluded from
compilation and thus cannot be tested. TODO: Test, repair and
integrate this code (or remove it if it is redundant). TODO: Fix
half-broken "Exit Scale On Pull". TODO: Fix the scale-will-only-
terminate-if-initiate_key-is-defined bug.
* *EZoom (Enhanced Zoom Desktop) code cleanup: Optimized ABI check.
Use prefix- instead of postfix-increment. Assignment and declaration
of local variables in one line. Merged if statements. Removed
redundant brackets. Fixed indentation. Added and removed newlines to
improve readability. *EZoom (Enhanced Zoom Desktop) code changes:
Replaced #define WIDTH (x2 - x1) with int width = x2 - x1; and
#define HEIGHT (y2 - y1) with int height = y2 - y1; Replaced WIDTHOK
and HEIGHTOK macros with local variables: WIDTHOK and HEIGHTOK just
need to be calculated once and can then be used for all cases in
void EZoomScreen::ensureVisibilityArea (...). static_cast <float>
for int denominators in divisions. Removed these redundant gl calls:
glEnable (GL_TEXTURE_2D); glDisable (GL_TEXTURE_2D); Zoom Box fixes:
Enabled GL_BLEND for the zoom box to fix transparency issues. Made
outline and fill color and transparency of the zoom box
configurable. Outline width is 2.0 for the zoom box as well now.
(same like for grid preview and screenshot selector outlines) Fixed
zoom box damage handling. Minor restructuring in zoom box rendering
code. Minor ezoom.xml.in cleanup and enhancements. Load after
mousepoll. (fixes LP: #1171665, partially fixes LP: #1051290 and LP:
#1051295). (LP: #1171665, #1051290, #1051295)
* Wall: Fixed broken wall edge flipping functions: "Edge Flip Pointer"
"Edge Flip Move" Removed void WallScreen::updateScreenEdgeRegions ()
completely. This function not needed hereat all, no other plugin
needs to re-define the screen edge regions by itself - just core
should do that. The screen edge region updating also confused the
edge flipping functionality. case ConfigureNotify: just breaks out
now Added missing default: case and a break (just a style issue).
Minor cleanup in bool WallScreen::initiateFlip (...). One
declaration per line. Note: "Edge Flip DnD" still seems to be
broken, but will be fixed in a follow-up proposal. (LP: #771448, LP:
#858845). (LP: #771448, #858845)
* Wallpaper .xml.in cleanup: Better plugin description. Improved
option names. Better wording of tooltips. Removed redundant
newlines. Wallpaper code cleanup: Use prefix instead of postfix
increments. Declaration and assignment of variables in one line.
Added some newlines to improve readability. Removed redundant
brackets. Fixed indentation.
* EZoom plugin, code improvements: Bail out of functions ASAP, do not
calculate stuff you might not need. Replaced: if (zoom_level == 1.0f
&& zooms.at (out).newZoom == 1.0f) with: if (zoom_level == zooms.at
(out).newZoom) because we always want to get out of here if the
target level is the same as current zoom level, not only in the case
both are 1.0f. EZoom plugin, code cleanup: Assignment and
declaration of variables in one line, if possible. Added and removed
some newlines. Merged if condition checks. Indentation fixes.
* Mousepoll code cleanup: Removed the unused variables
MP_OPTION_MOUSE_POLL_INTERVAL and MP_OPTION_NUM. Declaration and
assignment of variables in one line. Added and removed newlines.
Removed redundant brackets. Fixed indentation.
* Annotate plugin, code cleanup: Use prefix instead of postfix
increment. Declaration and assignment of local variables in one
line. Removed redundant brackets. Added and removed newlines if
appropriate. Fixed indentation. Annotate plugin, fixes: Use
GL_LINE_LOOP to draw the rectangle outline as glRecti is not
supported on GLES. Simplified the coordinate calculation as the
offset is not really needed here.
* Titleinfo, minor code cleanup: Declaration and assignment of local
variables in one line. Removed redundant brackets. Added and removed
newlines. Fixed indentation.
* Text plugin code cleanup: Do not declare variables you do not need
if you return anyway. Use prefix instead of postfix increments.
Merged if condition checks. Declaration and assignment of variables
in one line. Added and removed newlines. Removed redundant brackets.
Fixed indentation.
* ccp code cleanup: Declare variables if you need them, do not declare
them if you return. Declare CCSSettingValue *val; outside the
foreach loop. Use prefix instead of postfix increments. Merged if
condition checks. Declaration and assignment of variables in one
line. Removed redundant brackets. Added and removed newlines. Fixed
indentation.
* Commands, minor code cleanup: Declaration and assignment of
variables in one line. Return ASAP. Added and removed newlines.
Fixed indentation.
* Cube code cleanup: Replaced 0xffff with GLfloat MaxUShortFloat =
static_cast <GLfloat> (std::numeric_limits <unsigned short>::max
());. Use prefix instead of postfix de- and increments. Declaration
and assignment of variables in one line. Declare variables shortly
before you need them. Merged if condition checks. Added missing
breaks (just a style issue). Added and removed brackets. Added and
removed newlines. Fixed indentation.
* action.cpp and actions.cpp code cleanup: Use pre- instead of postfix
increment. Declaration and assignment of variables in one line.
Merged if condition checks. Removed redundant brackets. Added and
removed newlines. Fixed indentation.
* Rotate Cube code cleanup: Simplified a few calculations of this
type: (360.0 / (x * 2.0)) == 180 / x Declaration and assignment of
variables in one line. Use pre- instead of postfix de- and
increments. Merged if condition checks. Added and removed newlines
and brackets. Fixed indentation. Added TODO comments.
* Fade plugin, minor code cleanup: Declaration and assignment of local
variables in one line. Merged if condition checks. Use pre- instead
of postfix de- and increments. Removed redundant brackets. Added and
removed newlines. Fixed indentation.
* Opacify code cleanup: Declaration of local variables outside of
loops. Calculate activeOpacity and targetOpacity just once, not for
each window. Use prefix instead of postfix increments. Merged if
condition checks. Declaration and assignment of local variables in
one line. Added and removed newlines. Removed redundant brackets.
Fixed indentation. Opacify, functionality fix: Improved the toggling
logic by setting isToggle in the constructor according to the
startup setting, then calling setFunctions (isToggle);,which then
calls screen->handleEventSetEnabled (os, os->isToggle); to fix
Opacify ignoring the "Toggle Opacify on by default" setting. (LP:
#787814). (LP: #787814)
* Widget, minor code cleanup: Declaration and assignment of local
variables in one line. Merged if condition checks. Added and removed
newlines. Added default case to switch (just a style issue). Removed
redundant brackets. Fixed indentation.
* window.cpp code cleanup: Declare variables outside of loops. Reduced
the scope of variables. Do not assign values to variables if those
values are not used. Always bail out of functions ASAP, do not
calculate stuff you might not need. Use pre- instead of postfix de-
and increments. Declaration and assignment of variables in one line.
Merged if condition checks. Added and removed brackets. Added and
removed newlines. Fixed indentation. Added TODOs (removal of magic
numbers).
* Fix for cube.cpp, regression r3720 - Inner sides of cube invisible
now. Wrong variable type was accidentially used, cullInv is of type
int, not bool. (LP: #1183852). (LP: #1184852, #1183852)
* src/output*.cpp cleanup: Return ASAP, do not calculate stuff you do
not need. Declaration and assignment of variables in one line.
Declare local variables outside of loops. Use prefix instead of
postfix increment. Added and removed newlines. Fixed indentation.
* Expo, code cleanup: Declaration of local variables outside of loops.
Use prefix instead of postfix increments. Declaration and assignment
of local variables in one line, if possible. Reduced the scope of
some variables. Removed redundant brackets. Used static_cast <>
(type) instead of (type) cast. Added and removed newlines if
appropriate. Fixed indentation. Added TODOs. Expo, speed
improvements: Do not calculate screen->vpSize ().width () and
screen->vpSize ().height () multiple times, instead save them in the
unsigned ints vpCountHorz and vpCountVert and use those variables
instead. Speed up the curve calculations by using additional
variables to save results to not have to re-calculate those all the
time. The new variables introduced are degToRad, screenWidth,
screenWidthSquared, curveDistSquaredPlusQuarter,
pOne2MinusCurveDist, v0Squared and v2Squared. Also introduced const
float halfGapX = gapX / 2.0 and used this variable in the
calculations of curveDistance and curveRadius. Simplified
calculations of this type: (M_PI / 180.0f) * curveAngle / 2.0, which
is equal to: (M_PI / 360.0f) * curveAngle Do not call
optionGetGroundSize (); twice, instead save the value in the float
groundSize and use that variable in the following calculations.
Removed the creation of the redundant bool hide, which is just used
once in an if-condition check. It does not help to have this bool.
Try to avoid redundant GL_BLEND state changes, they are expensive -
only enable GL_BLEND if it is disabled and just disable it, if it
was disabled before, otherwise do nothing. Try to avoid redundant GL
filter changes - just query the filter state if the mipmap option in
CCSM is enabled. Also just set back the filter to the previous state
if we actually changed it, otherwise do nothing. -5.5f * 2 = -11.0f.
No need to calculate M_PI / 180.0f 720 times: Calculate this value
once instead and save it in the const float mpi, use mpi in the
following looped calculations. Use const int scw in the same loop
instead of calling screen->width () 360 times. glow.cpp: Massively
increased calculation speed of the glow texture: No need for any
macros here -> removed them and replaced them with local variables.
Precalculate values, store them in local variables and use those in
the following calculations (new variables are the ints winRealX,
winRealY, winRealWidth, winRealHeight, halfWinRealWidth,
halfWinRealHeight, xPlusHalfWidth, yPlusHalfHeight, xPlusGlowOff,
yPlusGlowOff, xMinusGlowOff, yMinusGlowOff and the float glowPart).
Used w->geometry ().widthIncBorders () and w->geometry
().heightIncBorders () to determine winRealWidth and winRealHeight.
Expo, fixes: Do not force "One wall per output" on the user, if his
displays use different resolutions. "One big wall" makes a lot of
sense for many multi-screen configs, where not all of the screens
have exactly the same resolution, so if the user explicitely chooses
this mode, Compiz should respect the user's choice. (LP: #1009592).
(LP: #1009592)
* Compiz, redundant and outdated files cleanup: Removed outdated NEWS
files. Removed outdated AUTHORS and ChangeLog files. Removed
plugins/freewins/COPYING - we do not need another copy of the GPL v2
here. Removed another copy of the GPL v2 from plugins/workarounds.
This will reduce package sizes, download time and bring some order
to chaos.
* Expo, .xml.in fixes: Better description of the plugin. Improved and
fixed tooltips. Moved the "Curve Strength" option closer to
"Deformation". Refreshed the quilt patch for Ubuntu: There is no
need to set the default distance to 0.005 as this setting has no
effect without deformation. Set default multi-screen mode to "One
wall per output" for Ubuntu, because "One big wall" works now for
all display configurations and could potentially change the
appearance for Ubuntu users. (LP: #1074487). (LP: #1074487)
* Added contribute directory. Added QtCreatorConfig.xml, a
configuration file for Qt Creator, which adjusts Qt Creator's C++
indentation style to be the same that is used in the Compiz project
(X11, mixed spaces and tabs).
* Mousepoll: Fixed mousepoll version mismatch. (COMPIZ_MOUSEPOLL_ABI
was missing) (LP: #1195659). (LP: #1195659)
* Expo: Simplified the GL filter handling.
* Fixed broken text in all plugins (missing COMPIZ_TEXT_ABI). (LP:
#1196493). (LP: #1196493)
* CCSM: Fixed vertical alignment of the text on the stylized keys.
(Shift, Super, Ctrl, Alt) (LP: #1196345). (LP: #1196345)
* Thumbnail, cleanup: Merged if condition checks. Declaration of
variables when they are needed (C++ style). Removed redundant
brackets. Removed useless "/* Could someone please explain how this
works */" comment. Removed extern const unsigned short
TEXT_DISTANCE, because this variable does not exist anymore (value
is configurable already). Changed if (something > 0.0) to if
(something), 10 times. Changed pointedWin = 0; to pointedWin =
NULL;. Used centerX () and centerY () abstractions from
compiz::window::Geometry to determine the icon center coordinates.
Added and removed newlines, if appropriate. Fixed indentation.
Thumbnail, code speedup: Return ASAP, do not calculate stuff you
might not need. No need for WIN_W (w) and WIN_H (w) macros, removed
those and replaced them with the local variables int winWidth, int
winHeight, int dockWidth and int dockHeight. No need for WIN_X (w)
and WIN_Y (w) macros, replaced those with int dockX and int dockY.
Introduced int tHeight = thumb.height;, int tWidth = thumb.width;,
int halfTWidth = tWidth / 2; and int halfTHeight = tHeight / 2; and
used those variables in the following calculations. Use
igMidPoint[0] and igMidPoint[1] as arguments in the screen-
>outputDeviceForPoint (arg1, arg2) function, instead of re-
calculating the arguments again. Thumbnail, GL speedup: Introduced
GLfloat wxPlusWidth = wx + width;, GLfloat wyPlusHeight = wy +
height;, GLfloat wxPlusWPlusOff = wxPlusWidth + off;, GLfloat
wyPlusHPlusOff = wyPlusHeight + off;, GLfloat wxMinusOff = wx - off;
and GLfloat wyMinusOff = wy - off; and used those coordinates in the
vertexData arrays. No need to re- calculate those values multiple
times. Just query optionGetShowDelay () once and use int showDelay
later. We just enable blending if it is currently disabled and
disable blending only, if it was disabled before.
* src/session.cpp cleanup: Declaration and assignment of local
variables in one line. (this *should* fix bug #1101405) Use pre-
instead of postfix increments. Added and removed newlines. Added
missing break (just a style issue). Fixed indentation. (LP:
#1101405). (LP: #1101405)
* Firepaint, code cleanup: Declare variables outside of loops.
Declaration and assignment of local variables in one line. Use pre-
instead of postfix increment. Removed redundant newlines. Removed
redundant casts. (from (float) optionGetFireColor) Removed redundant
brackets. Added missing break (style issue only). Added comment and
TODO. Fixed indentation. Firepaint, speedup: We just enable GL_BLEND
if it is disabled and we just disable GL_BLEND if it was disabled
before. Introduced the GLfloats xMinusW, xPlusW, yMinusH and yPlusH
to store calculated coordinates instead of recalculating them
multiple times. Introduced float fireLife = optionGetFireLife ();,
float fireWidth = optionGetFireSize ();, float fireHeight =
fireWidth * 1.5f; and bool mystFire = optionGetFireMystical (); and
used those variables inside the loop. Firepaint, .xml.in cleanup:
Firepaint now has 2 tabs, 'General' and 'Particle Settings'. The
name of this plugin is Firepaint, <short> should not contain the
description. Better description of the plugin. Uppercase option
titles. Punctuation for tooltips. Improved tooltips. Firepaint,
fixes: Initialize all class member variables in the ParticleSystem::
ParticleSystem () ctor (LP: #1101512, LP: #1101580). (LP: #1101512,
#1101580)
* img* plugins code cleanup: Always bail out of function ASAP, do not
calculate stuff you might not need. Declare variables outside of
loops so they won't be re-declared in each loop. Use prefix instead
of postfix increments. Declaration and assignment of variables in
one line. Merged if condition checks. Added and removed brackets.
Added and removed newlines, if appropriate. Minor code structure
improvements, declare variables when you need them, not much
earlier. Fixed indentation.
* Text, speed improvements: Introduced const float halfPi = PI / 2.0f;
and const float triHalfPi = halfPi * 3; and used those to draw the
rounded background. Introduced GLfloat xPlusWidth = x + width; and
GLfloat yMinusHeight = y - height; and used those coordinates for
the vertexData array. Text, cleanup: Declaration of local variables
outside of loops. Fixed indentation.
* cube.cpp, code cleanup: #include "privates.h", not <privates.h>.
Merged if condition checks. Declaration of variables, where you need
them to improve the code structure and readability. Use C++ standard
bool for topDir, bottomDir, allCaps and mCapsPainted[output] (bool
true/false instead Bool TRUE/FALSE). Initialize all of the class
member variables in the constructor. Replaced if (priv->mSky.size ()
> 0) with if (!priv->mSky.empty ()). Removed redundant brackets.
Fixed indentation. Added TODO. cube.cpp, code speedup: Do not call
optionGetInactiveOpacity () twice, instead save the value as float
inactiveOpacity and use this variable in the following calculation.
Introduced the variables float halfHsize = hsize / 2.0; and float
tsSize = 360.0f / size; and used those in following calculations to
not have to recalculate those values multiple times. Do not
calculate M_PI / sides and 2 * M_PI / sides multiple times in loops,
instead save those values in the GLfloats mps and tmps and use those
values inside the loops. Use GLdouble mDist2 = 0.5 / mDistance; in
the GLdouble clipPlane* arrays, instead of recalculating this value
multiple times. Use GLfloat oneMinusFStepX = 1.0f - fStepX; and
GLfloat oneMinusFStepY = 1.0f - fStepY; instead of calculating those
values multiple times. Use float outputWidth = outputPtr->width ();
and float outputHeight = outputPtr->height (); instead of calling
the functions multiple times. Introduced the GLfloat normInvert =
0.5f * invert; and used this variable instead of recalculating this
value multiple times. Introduced the GLfloats mSkyWidth and
mSkyHeight and used those in the following loops instead of calling
mSkySize.width () and mSkySize.height () multiple times. Try to
avoid redundant GL_BLEND state changes, because OpenGL will blindly
change the global state, no matter what it currently is set to and
that state change is expensive. So we query and save the actual
blending state in the variable GLboolean glBlendEnabled =
glIsEnabled (GL_BLEND); and just enable it if it isn't already and
just disable it, if it was disabled before. (LP: #1101422, LP:
#1195977) cube.cpp, other fixes: Return false in function
PrivateCubeScreen::updateGeometry (int, int) if sides should ever be
0, which should never happen, but should make Coverity happy. (LP:
#1101541) Initialize all class member variables in the
PrivateCubeScreen:: PrivateCubeScreen (CompScreen *) constructor.
(mTc, mNOutput, mOutput, mOutputMask, mCleared, mCapsPainted) (LP:
#1101575). (LP: #1195977, #1101541, #1101422, #1101575)
* plugins/ezoom/src/ezoom.cpp: Also initialize xtrans and ytrans in
the ctors. Just just enable blending if it is disabled and just
disable it if it was disabled before. Introduced the variables
oWidth, oHeight, halfOWidth and halfOHeight to speed up following
calculations. Return ASAP, do not calculate possibly redundant
stuff. Declaration and assignment of local variables in one line.
Improved readability. Added and removed newlines. Minor indentation
fixes. plugins/ezoom/ezoom.xml.in: Removed redundant whitespaces
from a tooltip. (LP: #1101572). (LP: #1101572)
[ Hu Kang stevenhooke11@gmail.com ]
* workarounds.cpp: Fix typo in call to XShapeSelectInput. (LP:
#1167284). (LP: #1167284)
* Use XIDefineCursor rather than XDefineCursor. compiz should show a
busy cursor during the application startup stage. the corresponding
code is in scr/screen.cpp:
cps::StartupSequenceImpl::updateStateFeedback () the patch changes
all XDefineCursor to XIDefineCursor (see XInput2 extension) (LP:
#1179155). (LP: #1179155)
[ Łukasz 'sil2100' Zemczak ]
* Qt is stupid since it uses the stupid X11 protocol - let's not set
all the attributes (especially override_redirect) every time, only
in cases when it's actually needed (LP: #1141079). (LP: #1141079)
[ Andrea Azzarone ]
* Satisfy matchers on getProperty as soon as they are set. The order
of evaluation for matchers in Google Mock appears to be undefined -
this means that we can't rely on the first argument being matched
first and the second argument being matched afterwards. In turn,
this means that any GValue may be passed to a GValueMatch which, by
a design flaw, is unable to handle any values of a type it does not
expect (at least not without an API change). It will silently pass
the incorrect type to g_type_get_* which causes internal assertion
failures. At the moment we're just interleaving the calls to
getProperty and get_property - that way the expectations are
satisfied and go away as soon as they're set. This in turn means
that Google Mock only has to traverse one matcher rather than
multiple matchers. (LP: #1187468). (LP: #1187468)
* Extends invisible borders to the title bar too. (LP: #717444). (LP:
#717444)
* Disable grid/put_maximize_key on ubuntu.
* Port to new gmock. Disable some faling tests because of weird leaks.
(LP: #1185265)
* Update window geo only on new decoration size only if mapped. (LP:
#1198000). (LP: #1198000)
* Disable show_desktop_key by default on ubuntu. Will provide the same
option under the unityshell panel. (LP: #1204664)
* Use Glib::RefPtr<Glib::Source> in glib_integration_test and compiz
core too. After the fix of bug
https://bugzilla.gnome.org/show_bug.cgi?id=561885
Glib::Source::~Source is called when both Source::unreference() and
SourceCallbackData::destroy_notify_callback() are called. (LP:
#1214459)
[ Sam Spilsbury ]
* Also take into account the gravity requirements when validating
reposition requests. Get most of that code under test too. (LP:
#1159324). (LP: #1159324)
* Install compizconfig backends to the correct libdir (LP: #1163611).
(LP: #1163611)
* Don't timeout after 3000ms when asking compiz for a startup message.
It can sometimes take longer in the valgrind case. Also timeouts are
bad design for tests. (LP: #1169170). (LP: #1169170)
* Check for USE_GCONF if USE_GSETTINGS is unavailable when
instantiating different types of settings objects. (LP: #1169172).
(LP: #1169172)
* Link in CMAKE_THREAD_LIBS_INIT through GTEST_BOTH_LIBRARIES so it
gets included in everything. Remove redundant links. Require
FindThreads.cmake. (LP: #1171364). (LP: #1171364)
* Explicitly check if the smart pointers are null rather than
converting implicitly to bool as boost 1.53 now marks the bool
operator as explicit (LP: #1172601). (LP: #1172601)
* Rewrite screen size change tests. 1. Rename the overly-terse
variables names to variables names that have some significance 2.
Split the giant three-test structure into multiple tests each with
only one assert 3. Remove a lot of redundant calculation 4. Remove
magic numbers peppered throughout the code. Use constants and
express asserts as relationships between those constants. 5.
Refactor some of the more common test-advancement code (such as
changing the screen size) into the test fixture as common methods.
(LP: #1167983). (LP: #1167983)
* Refactor screenshot code to make it clearer and also to allow us to
take screenshots in glPaintOutput as opposed to paint (). Taking
screenshots in paint () was probably correct pre-GLES, but isn't
really correct now - we want to be able to read off of the currently
bound scratch framebuffer where we last painted the frame. Reading
off the frontbuffer is an imprecise operation because the contents
of both buffers are really undefined after a swap. In the case where
we are not painting to a scratch framebuffer object, we'll just end
up reading from the backbuffer anyways, which would be correct to do
mid-frame. Also added the new static const GLenums
DRAW_FRAMEBUFFER_BINDING and READ_FRAMEBUFFER_BINDING to opengl.h.
(LP: #771875). (LP: #771875)
* Set libcompizconfig_libdir before the modules get a chance to see
it. (LP: #1173799). (LP: #1173799)
* Try to launch tests on another server if there's tests running in
parallel. Provide our own compiz_xorg_gtest_main and subclass
xorg::testing::Environment to try and launch tests on another
display if there's tests running on one already. This isn't by any
means perfect - there are still race conditions surrounding
XOpenDisplay and parallel test runs but it makes a more smaller time
gap for conditions such as: 1. Client has a server grab on the
display we're checking and won't let go. 2. Two servers get
launched on one port and one set of tests interfere with the
other. It also means that we're now unable to configure the display
port, log file and config file on the command line. But we weren't
using that anyways. Finally, the logs now point to
/tmp/Compiz.Xorg.GTest.displaynum.log (LP: #1178514). (LP: #1178514)
* Fix some files not installing: 1. gsettings schemas never get added
to the install_manifest list because we use install (CODE) so we
need to add a custom uninstall target for those, and also need to
recompile on uninstall too 2. Run the gtk-update-icon-cache stage
during install for ccsm and also add icon-theme.cache to the
uninstall target (LP: #1168475). (LP: #1168475)
* Wall: Fixed broken wall edge flipping functions: "Edge Flip Pointer"
"Edge Flip Move" Removed void WallScreen::updateScreenEdgeRegions ()
completely. This function not needed hereat all, no other plugin
needs to re-define the screen edge regions by itself - just core
should do that. The screen edge region updating also confused the
edge flipping functionality. case ConfigureNotify: just breaks out
now Added missing default: case and a break (just a style issue).
Minor cleanup in bool WallScreen::initiateFlip (...). One
declaration per line. Note: "Edge Flip DnD" still seems to be
broken, but will be fixed in a follow-up proposal. (LP: #771448, LP:
#858845). (LP: #771448, #858845)
* Add a small compiz_autopilot_acceptance_tests binary based on gtest.
This will find autopilot and run a predefined list of tests, wrapped
up in the familiar google test format. The predefined list is
basically a bunch of tests which effectively interact with the
window manager. (LP: #1170013). (LP: #1170013)
* Change the behaviour of undecorating windows. Previously when a
window was undecorated, we would shift it back to an appropriate
position according to its gravity member. That behaviour was
problematic because in the StaticGravity case the window has to just
stay in the same place. But then if you had a window with
StaticGravity which then did get a decoration and later removed it,
it would be placed as though it was decorated and appear to be in
the wrong place. The correct behaviour is to place all windows as
though they have decorations, and then when decorations are removed,
to move the window back to the corner as indicated in its gravity
and then expand its size to cover the obscured regions no longer
hidden because the decorations went away. (LP: #1165343). (LP:
#1165343)
* Added some new hooks to PluginClassHandler to allow a VTable to
specify if loaded. PluginClassHandler::get () was designed to simply
instantiate an instance of that class for the core structure, but it
did this without checking if the plugin was loaded. Added some new
methods to PluginClassHandler exposed by LoadedPluginClassBridge and
only accessible by those who implement PluginKey to specify globally
whether or not a plugin is actually loaded, so that
PluginClassHandler can return accordingly. Integration and unit
tests added as appropriate (LP: #1169620) (LP: #1101026). (LP:
#1101026, #1169620)
* Satisfy matchers on getProperty as soon as they are set. The order
of evaluation for matchers in Google Mock appears to be undefined -
this means that we can't rely on the first argument being matched
first and the second argument being matched afterwards. In turn,
this means that any GValue may be passed to a GValueMatch which, by
a design flaw, is unable to handle any values of a type it does not
expect (at least not without an API change). It will silently pass
the incorrect type to g_type_get_* which causes internal assertion
failures. At the moment we're just interleaving the calls to
getProperty and get_property - that way the expectations are
satisfied and go away as soon as they're set. This in turn means
that Google Mock only has to traverse one matcher rather than
multiple matchers. (LP: #1187468). (LP: #1187468)
* Revert revision 3278.
* Immediately update the window matrices and regions if the number of
textures changed. (LP: #1189369). (LP: #1189369)
* Provide a basic decor plugin acceptance test suite. This change
provides a simple acceptance test suite for the decor plugin. It
creates a fake window decorator (cdt::FakeDecorator) and allows
users to create fake decorations (eg cdt::FakePixmapDecoration)
which can be serialized as decoration properties and set on windows
under xorg-gtest. It also launches compiz with the opengl, composite
and decor plugins loaded and runs some basic tests. Among them:
BaseDecorAcceptance. Startup: Basic canary "can we start compiz with
these plugins" test
FakeDecoratorSessionOwnerNameSetOnSelectionOwner: Create a fake
decorator, ensure that libdecoration sets our session name "fake" on
the selection owner FakeDecoratorReceiveClientMessage: Create fake
decorator, ensure that libdecoration posts a client message to the
root window announcing that the new decorator exists.
DecorationSupportsWindowType: Create a fake decorator, announce
support for the WINDOW type decorations and ensure that the correct
atom is set on the session owner window.
DecorationSupportsPixmapType: Create a fake decorator, announce
support for the PIXMAP type decorations and ensure that the correct
atom is set on the session owner window.
DecorFakeDecoratorAcceptance. WindowDefaultFallbackNoExtents: By
default, newly created windows should recieve a fallback decoration
but they should not have any frame extents.
DecorWithPixmapDefaultsAcceptance. These tests create a default
pixmap decoration to use in the hypothetical situation that the
window decorator hasn't yet generated a decoration for this window.
FallbackRecieveInputFrameNotify: Verify that we get a
_COMPIZ_WINDOW_DECOR_INPUT_FRAME property set on the client when it
is created and mapped (eg, an input frame window was annonuced to be
created) FallbackHasInputFrameInParent: Verify that a second window
exists in the frame window after this message was recieved.
FallbackNormalWindowExtentOnDecoration: Verify that
_NET_FRAME_EXTENTS is set to the default window extents for the
default decoration when the window was mapped.
FallbackNormalWindowInputOnFrame: Verify that the input window
matches the extents set. PixmapDecoratedWindowAcceptance. These
tests create a new window and an associated unique decoration for
that window. MaximizeBorderExtentsOnMaximize: Maximize the window
and ensure that the correct border extents are used.
MaximizeBorderExtentsOnVertMaximize: Vertically maximize the window
and ensure that the correct border extents are used.
MaximizeBorderExtentsOnHorzMaximize: Horizontally maximize the
window and ensure that the correct border extents are used.
MaximizeFrameWindowSizeEqOutputSize: Maximie the window and ensure
that the frame window exactly equals the output size.
VertMaximizeFrameWindowSizeEqOutputYHeight: Maximize the window and
ensure that the frame window's Y and Height values are consistent
with the output size. HorzMaximizeFrameWindowSizeEqOutputXWidth:
Ditto horizontal maximization.
DISABLED_VertMaximizeFrameWindowSizeSameXWidth: Maximize the window
vertically and ensure that the frame window's border-relative X
position and width does not change. This test is disabled, as the
behavior in compiz is currently broken, (but it means that we can
fix it later and enable the test).
DISABLED_HorzMaximizeFrameWindowSizeSameYHeight Maximize the window
horizontally and ensure that the frame window's border-relative Y
position and height does not change. This test is disabled, as the
behavior in compiz is currently broken, (but it means that we can
fix it later and enable the test). (LP: #1188900). (LP: #1188900)
* Only mark for no further instantiations once we've finished
destructing the plugin (LP: #1193596). (LP: #1193596)
* Add more acceptance tests for the decor plugin.
PixmapDecoratedWindowAcceptance. UndecoratedWindowExpandToOrigSize
Test that upon undecoration, the window has exactly the same
geometry as it did before decoration.
DISABLED_UndecorateStaticGravityWindow Tests that for windows with a
static gravity, the window has exactly the same geometry as it did
before decoration. Disabled, as core is currently not moving the
window with the static gravity back to where it started.
AdjustmentExtents/PixmapDecorationAdjustment.
AdjustRestoredWindowBorderMovesClient/P Test that changing the
border extents causes the client window's absolute geometry to
change. DISABLED_AdjustRestoredWindowBorderShrinkClient/P Tests that
changing the border extents causes the client window's absolute
geometry to shrink by the amount of border. Disabled, as the current
behavior is to expand the frame window as opposed to shrinking the
client (but this will be changed).
DISABLED_ClientExpandsAsBorderShrinks/P Tests that as the border
shrinks away, the client expands back to its original size.
Disabled, as the current behavior is to expand the frame window as
opposed to shrinking the client (but this will be changed).
DISABLED_ClientExpandsAsBorderShrinksWhilstMaximized/P Tests that
even if the client is maximized, if the restored border shrinks away
it demaximizes back to the same position while also accounting for
any change in the restored window border size. Disabled, as the
current behavior is to expand the frame window as opposed to
shrinking the client (but this will be changed).
DISABLED_ClientExpandsAsBorderShrinksWhilstUndecorated/P Tests that
even when the client is not permitted to be decorated because the
decoration hint was removed, when it is redecorated it will be moved
to the correct position taking into account any changes in its
border size. Disabled, as the current behavior is to expand the
frame window as opposed to shrinking the client (but this will be
changed). DISABLED_AdjustRestoredWindowInputNoMoveClient/P Tests
that adjusting the input extents (as independent from the border
extents) of the client does not cause the client to move. Disabled,
as this behavior appears to be broken in core. Move the
"GetImmediateParent" function into the compiz::testing namespace so
that it can be used by other tests. (LP: #1188900)
* Unrevert 3728, fix failing tests. Change the behaviour of
undecorating windows. Previously when a window was undecorated, we
would shift it back to an appropriate position according to its
gravity member. That behaviour was problematic because in the
StaticGravity case the window has to just stay in the same place.
But then if you had a window with StaticGravity which then did get a
decoration and later removed it, it would be placed as though it was
decorated and appear to be in the wrong place. The correct behaviour
is to place all windows as though they have decorations, and then
when decorations are removed, to move the window back to the corner
as indicated in its gravity and then expand its size to cover the
obscured regions no longer hidden because the decorations went away.
(LP: #1165343). 1. Completely remove decorOffsetMove and other
related code from decor.cpp. Put the logic to handle the
window->input () - window->border () placement offset inside of
setWindowFrameExtents instead. Now the window will always be
offset from its original non-decorated position to the new
decorated position, rather than having to guess between
decoration sizes. 2. Make saveGeometry and restoreGeometry work
relative to window->border () as opposed to including it in the
saved geometry. It is possible that the border size might
change during maximization, as such, we don't want to save the
position with the border before maximizing. Instead save the
position as if it were never decorated so that when the window
is restored it can be restored to its original position and
then adjusted for its new border size. 3. Fix a few typoes in the
tests. 4. Moved some commonly used matchers into compiz::testing
5. Make COMPIZ_PLUGIN_DIR accept multiple directories and look in
each one of them for the plugin 6. Set COMPIZ_PLUGIN_DIR
appropriately for each plugin that we wish to load on startup
so that we load locally built plugins as opposed to installed
ones. 7. Uncomment compiz_discover_tests for the acceptance
tests. Now they are run by default. (LP: #1195522). (LP:
#1195522, #1165343)
* Add a simple script for making releases.
* Port to new gmock. Disable some faling tests because of weird leaks.
(LP: #1185265)
* Don't add the frame to the toplevel stack if it hasn't been created
yet. In the event that a window is unreparented or destroyed, we
usually need to add its frame window to the toplevel window stack
until the time at which we recieve a DestroyNotify for it, as there
may be incoming ConfigureNotify events puporting to stack other
windows relative to that frame. However, this does not apply in the
case where we have not yet received a CreateNotify for the frame
window. In that case, it is not possible for any stacking requests
to be made relative to this window, so it does not need to be added
immediately. Instead, we can add it at the time that we recieve a
CreateNotify for it as a regular override redirect window until the
time that it is later destroyed. (LP: #1171314). (LP: #1171314)
* Remove redundant src/logmessage/include/core/logmessage.h (LP:
#1067246). (LP: #1067246)
* Adjust acceptance tests for the fix to LP: #1198000 1. Always set
frame extents before updating the frame 2. Added
COMPIZ_NO_CONFIGURE_BUFFER_LOCKS so that we don't have to deal with
the delayed configure requests logic in the tests where it does not
help 3. Split restoredDecorationSize in to
restoredDecorationBorderSize and restoredDecorationInputSize so that
we can measure the size of the decoration both in terms of its
visible and invisible border 4. Wait for the default decoration
properly 5. Capture the initial geometry of the window with and
without decorations when the window gets its first decoration. Use
these values to calculate the size changes in the window from then
on instead of its creation values 6. Just flag when the window was
first decorated in setWindowFrameExtents rather than checking if it
is mapped. We only want to not resize the window once. (LP:
#1198000)
* Release version 0.9.10.0
* Bump VERSION to 0.9.10.2
[ Ubuntu daily release ]
* Automatic snapshot from revision 3781
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Thu, 22 Aug 2013 06:58:07 +0000
compiz (1:0.9.9~daily13.04.18.1~13.04-0ubuntu4) saucy; urgency=low
* Remove debian/patches/unity_support_test.patch
- Running the support test from compiz has bad side effects, so we no
longer require this patch (also LP: #1066764)
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com> Mon, 12 Aug 2013 13:11:18 +0200
compiz (1:0.9.9~daily13.04.18.1~13.04-0ubuntu3) saucy; urgency=low
* No change rebuild to drop the buggy libhybris depends
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 08 Aug 2013 10:50:09 +0200
compiz (1:0.9.9~daily13.04.18.1~13.04-0ubuntu2) saucy; urgency=low
* Fixing FTBFS in saucy:
- Cherry pick boost1.53 fixes from upstream branch.
- Do not enable -Wno-unused-private-field.
-- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Mon, 01 Jul 2013 20:56:50 +0100
compiz (1:0.9.9~daily13.04.18.1~13.04-0ubuntu1) raring; urgency=low
[ Ken VanDine ]
* Revert 3636 from lp:compiz/0.9.9 to fix Qt apps getting window decorations
placed behind the panel. (LP: #1165343)
- This reintroduces bug 1159324, Guake window appears placed by offset
non-existent decoration
* [regression-r3635] Guake window appears placed by offset non-
existent decoration (LP: #1159324)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3650
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Thu, 18 Apr 2013 05:46:57 +0000
compiz (1:0.9.9~daily13.04.15-0ubuntu1) raring; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* [regression-r3606] Compiz broken with QT menus/floating controls in
13.04 (LP: #1141079)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3648
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Mon, 15 Apr 2013 04:17:27 +0000
compiz (1:0.9.9~daily13.04.10-0ubuntu1) raring; urgency=low
[ Steve Langasek ]
* Adding/Removing an external monitor causes open windows to move to
another workspace (LP: #763148)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3646
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 10 Apr 2013 04:03:14 +0000
compiz (1:0.9.9~daily13.04.05-0ubuntu1) raring; urgency=low
[ Daniel van Vugt ]
[Daniel van Vugt]
* Merge lp:compiz/raring back in to lp:compiz/0.9.9 so we can maintain
raring from lp:compiz/0.9.9. The last common revision was 3629, so...
* Automatic snapshot from revision 3629
[ MC Return <mc.return@gmx.net>, Sam Spilsbury <smspillaz@gmail.com>, Sam Spilsbury ]
* Workspacenames plugin: Damage handling is broken and the plugin
damages the full screen instead of just the painted part of it (LP:
#1162246)
* [regression-r3320] Workspacenames Plug-in: Flickering background on
appearance, fade-out seems smooth (LP: #1075578)
[ Brandon Schaefer ]
* [regression] Shortcut overlay does not hide when modifier key is
pressed (LP: #1075207)
* Unity blocks other programs from binding globally to Super+* (* =
any key) (LP: #950160)
[ Sam Spilsbury <Sam@ACER-SUSE.SUSE>, Sam <Sam@XPS-SUSE.XPS>, Sam Spillaz <smspillaz@gmail.com>, Sam Spilsbury <smspillaz@gmail.com>, Sam Spilsbury <sam.spilsbury@canonical.com>, MC Return <mc.return@gmx.net>, Sam Spilsbury <Sam@XPS-SUSE.site>, users <warlock@banana.(none)>, Scott Moreau <oreaus@gmail.com>, Danny Baumann <dannybaumann@web.de>, warlock <warlock.cc@gmail.com>, Sam Spilsbury <smspillaz@XPS-U.(none)>, warlock <warlock@opencompositing.org>, Roland Bär ]
* [needs-packaging] Wishlist: Missing plug-In: Freewins (Freely
Transformable Windows) (LP: #1012194)
[ MC Return <mc.return@gmx.net>, Sam Spilsbury <sam.spilsbury@canonical.com>, Sam Spilsbury ]
* Showdesktop plugin: Wishlist/Feature-Request: Implement "Random"
movement direction option (LP: #1161343)
[ MC Return ]
* Wall plugin: Redundant if (screen->otherGrabExist ("wall", 0)) check
in WallScreen::initiateFlip (LP: #1160878)
* CompWindow::syncPosition () function is empty and calls to it
redundant (LP: #1160624)
* Showdesktop plugin: Wishlist/Feature-Request: Implement "Random"
movement direction option (LP: #1161343)
* Multimonitor: Grid plugin: Wrong calculation of top left mouse-grid-
resize corner coordinates (LP: #1139835)
[ Sam Spilsbury ]
* After Upgrade to Boost 1.53 Build Fails (LP: #1131864)
* Showdesktop plugin: Wishlist/Feature-Request: Implement "Random"
movement direction option (LP: #1161343)
* [regression] Unmaximized windows can't be closed, minimized, moved
(LP: #1158161)
* Latest compiz update breaks Java Swing decorations (LP: #1138517)
* [regression-r3635] Guake window appears placed by offset non-
existent decoration (LP: #1159324)
* [regression-r3623] Wallpaper bleeds through on top right when a
window is opened maximized (LP: #1140505)
* xiphos crashed with SIGSEGV in sword::VerseKey::copyFrom() (LP:
#1159234)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3644
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 05 Apr 2013 04:03:10 +0000
compiz (1:0.9.9~daily13.03.29-0ubuntu1) raring; urgency=low
[ Michael Terry ]
* [regression-r3635] Guake window appears placed by offset non-
existent decoration (LP: #1159324)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3641
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 29 Mar 2013 07:23:54 +0000
compiz (1:0.9.9~daily13.03.25-0ubuntu1) raring; urgency=low
[ Michael Terry ]
* [regression] Unmaximized windows can't be closed, minimized, moved
(LP: #1158161)
[ MC Return ]
* Multimonitor: Grid plugin: Wrong calculation of top left mouse-grid-
resize corner coordinates (LP: #1139835)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3639
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Mon, 25 Mar 2013 04:02:57 +0000
compiz (1:0.9.9~daily13.03.20-0ubuntu1) raring; urgency=low
[ Sam Spilsbury ]
* Latest compiz update breaks Java Swing decorations (LP: #1138517)
* [regression-r3623] Wallpaper bleeds through on top right when a
window is opened maximized (LP: #1140505)
[ Ubuntu daily release ]
* Automatic snapshot from revision 3636
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 20 Mar 2013 04:02:51 +0000
compiz (1:0.9.9~daily13.03.08-0ubuntu1) raring; urgency=low
[ Brandon Schaefer ]
* [regression] Shortcut overlay does not hide when modifier key is
pressed (LP: #1075207)
* Unity blocks other programs from binding globally to Super+* (* =
any key) (LP: #950160)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3633
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Fri, 08 Mar 2013 10:34:21 +0000
compiz (1:0.9.9~daily13.03.06-0ubuntu1) raring; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* Latest compiz update breaks Java Swing decorations (LP: #1138517)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3631
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Wed, 06 Mar 2013 13:26:19 +0000
compiz (1:0.9.9~daily13.03.01-0ubuntu1) raring; urgency=low
[ MC Return ]
* Multiple minor code and style issues (LP: #1134251)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3629
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Fri, 01 Mar 2013 04:02:19 +0000
compiz (1:0.9.9~daily13.02.28-0ubuntu1) raring; urgency=low
[ Sam Spilsbury ]
* [nvidia] Moving windows freezes and stutters on nvidia (especially
if some other window is redrawing). (LP: #1027211)
[ Brandon Schaefer ]
* [Regression] Lowering window by middle click doesn't switch focus to
raised window (LP: #1034616)
[ Sam Spilsbury ]
* compiz crashed with SIGSEGV in DecorWindow::moveNotify()
[decor.cpp:2791] (LP: #1056409)
* [regression] r3523: Restored windows' contents are offset from (not
aligned with) their frames (LP: #1089279)
* Creating windows above just-destroyed windows causes newly created
windows to receive invalid stack positions (LP: #1088399)
[ Paul Donohue ]
* Dim Inactive plugin disabled by default although stated as enabled
(LP: #808909)
[ MC Return ]
* Dim Inactive plugin disabled by default although stated as enabled
(LP: #808909)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3627
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Thu, 28 Feb 2013 04:02:37 +0000
compiz (1:0.9.9~daily13.02.26-0ubuntu1) raring; urgency=low
[ Sam Spilsbury ]
* debian/ccp_plugin.patch:
- Added new option --no-auto-load-ccp to prevent the ccp
plugin from autoloading. Useful for tests where having
this behaviour just causes problems from unwanted side-effects
- Also adjust test framework to pass the new option
- Fix typo
* debian/rules:
- We already auto-load the ccp plugin, no need to add it to the
default plugins.
* debian/control:
- Add xorg-gtest, xserver-xorg-dev, libxi-dev as build-deps
* debian/ubuntu_config.patch:
- Adjust EWMH test for new value
[ Sam Spilsbury <sam.spilsbury@canonical.com>, Brandon Schaefer ]
* [2013/02/20] compiz/unity don't run, just loading cpp (LP: #1130679)
[ Sam Spilsbury ]
* Unity: wrong window dimensions / location in Java applications (LP:
#1110138)
* Add copytex to default/unity profiles (LP: #1130160)
* Closing windows sometimes shows black areas using Nvidia 313.x
drivers (LP: #1119608)
* [2013/02/20] compiz/unity don't run, just loading cpp (LP: #1130679)
* Run xorg-gtest tests in CI (LP: #1120009)
[ MC Return ]
* CCSM: No icons and text in main screen, submenus of the plugins work
normally (LP: #1130941)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3621
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Tue, 26 Feb 2013 04:02:36 +0000
compiz (1:0.9.9~daily13.02.19-0ubuntu1) raring; urgency=low
[ Sam Spilsbury ]
* debian/patches/100_workaround_virtualbox_hang.patch
- VirtualBox uses a shared-memory texture_from_pixmap_implementation
which is not compatible with our server grab usage, so force
a different bind method when running with virtualbox and binding
an externally managed texture
[ Brandon Schaefer ]
* Unity rendered behind windows (LP: #906231)
[ MC Return ]
* unmaximize_window_key instead of unmaximize_or_minimize_window_key
exposed in g-c-c (LP: #1115128)
[ Sam Spilsbury ]
* [needs-packaging] Please upload: esvn merged (LP: #112433)
* [nvidia] Windows appear blank white (LP: #729979)
* Threads not found on CI (LP: #1124133)
* Unity rendered behind windows (LP: #906231)
* Compiz hangs in glXBindTexImageEXT in VirtualBox (LP: #1127866)
* 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
wrong values (LP: #1063617)
* Creating windows above just-destroyed windows causes newly created
windows to receive invalid stack positions (LP: #1088399)
[ Marco Trevisan (Treviño) ]
* Calling setOptionForPlugin does not work for core options (LP:
#1122228)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3611
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Tue, 19 Feb 2013 08:46:08 +0000
compiz (1:0.9.9~daily13.02.08-0ubuntu1) raring; urgency=low
[ MC Return ]
* thumbnail.xml.in needs some love (LP: #1113459)
* Thumbnail plugin: Window title text is rendered into transparency
and glow/background are too large (LP: #1099100)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3601
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Fri, 08 Feb 2013 04:01:47 +0000
compiz (1:0.9.9~daily13.02.07-0ubuntu1) raring; urgency=low
[ MC Return ]
* [regression][GLES] gears plugin does not build any more (LP:
#1020822)
* Cube Gears plugin: Cylinders inside the gears are not rendered
correctly (LP: #1117311)
* compiz-profile-active-Default.convert and compiz-profile-active-
Default.convert are referring to refres_rate and detect_refres_rate
(LP: #1115243)
* cppcheck static code analysis reveals some true positives (LP:
#1114525)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3599
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Thu, 07 Feb 2013 06:19:48 +0000
compiz (1:0.9.9~daily13.02.04-0ubuntu1) raring; urgency=low
[ Marco Trevisan (Treviño) ]
* Spread - Window glow is incorrectly painted in the screen when
switching spreaded application (LP: #1109805)
[ MC Return ]
* Coverity MISSING_BREAK - CID 12463 (LP: #1101561)
* Thumbnail plugin: Window title text is rendered into transparency
and glow/background are too large (LP: #1099100)
* Showmouse plugin code: Needs cleanup (LP: #1105969)
* Coverity SECURE_CODING - CID 10019 (LP: #957582)
* Coverity SECURE_CODING - CID 12511 (LP: #1101605)
* Coverity SECURE_CODING - CID 12512 (LP: #1101571)
* Keyboard shortcut overlay says Ctrl+Super+Down "minimises" the
current window, but it doesn't (LP: #966099)
* Coverity SECURE_CODING - CID 10020 (LP: #957587)
* Coverity SECURE_CODING - CID 12529 (LP: #1101641)
* Coverity MISSING_BREAK - CID 12464 (LP: #1101549)
* Coverity SECURE_CODING - CID 12519 (LP: #1101565)
* Coverity SECURE_CODING - CID 12516 (LP: #1101499)
* [GLES] Showmouse plugin needs port to OpenGL|ES (LP: #1106270)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3594
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Mon, 04 Feb 2013 04:01:58 +0000
compiz (1:0.9.9~daily13.01.25-0ubuntu1) raring; urgency=low
[ Didier Roche ]
* Really take default patched hsize and vsize and don't override them
to fix (LP: #868423)
[ sampo555 ]
* [regression] Window resize granularity is lost when restored after
using Grid (LP: #925867)
* Window management - Restoring a grid-placed window by dragging the
title bar downwards does not restore the original window width (LP:
#878516)
[ Daniel van Vugt ]
* Several memory leaks in
google::protobuf::DescriptorPool::InternalAddGeneratedFile() from
google::protobuf::protobuf_AddDesc_*() (LP: #1102829)
* Several leaks in g_settings_new() [g_object_new()] from
ccsGSettingsNewNoPath() [ccs_gsettings_interface_wrapper.c:184] (LP:
#1097649)
* Several memory leaks in g_signal_new() ... from
ccsGSettingsWrapperNewForSchema()
[ccs_gsettings_interface_wrapper.c:184] from initBackend()
[gsettings.c:468] (LP: #1102822)
[ Sam Spilsbury ]
* Several memory leaks in strdup() from
ccsGSettingsIntegratedSettingReadValue() from
ccsGNOMEIntegrationBackendReadISAndSetSettingForType() from
ccsGNOMEIntegrationBackendReadOptionIntoSetting() (LP: #1100564)
[ MC Return ]
* Coverity MISSING_BREAK - CID 12468 (LP: #1101430)
* Coverity MISSING_BREAK - CID 12466 (LP: #1101558)
* Coverity MISSING_BREAK - CID 12467 (LP: #1101465)
* Showmouse plugin: Possible values of the particle life setting can
destroy the plugin's functionality (LP: #1098877)
* Coverity MISSING_BREAK - CID 12465 (LP: #1101557)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3582
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Fri, 25 Jan 2013 04:03:43 +0000
compiz (1:0.9.9~daily13.01.21-0ubuntu1) raring; urgency=low
[ Brandon Schaefer ]
* Window Management - Implement maximize and semi-maximise transitions
(LP: #689792)
[ Sam Spilsbury ]
* Several memory leaks in ccsIntegratedSettingListAppend() from
ccsIntegratedSettingsStorageDefaultFindMatchingSettingsByPredicate()
from
ccsIntegratedSettingsStorageDefaultFindMatchingSettingsByPluginAndSe
ttingName() (LP: #1100539)
* Several leaks in g_settings_new() [g_object_new()] from
ccsGSettingsNewNoPath() [ccs_gsettings_interface_wrapper.c:184] (LP:
#1097649)
* Compiz reports incorrect _NET_DESKTOP_GEOMETRY until first viewport
switch (LP: #1096455)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3569
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Mon, 21 Jan 2013 04:01:41 +0000
compiz (1:0.9.9~daily13.01.17-0ubuntu1) raring; urgency=low
[ Didier Roche ]
* Launcher - Workspace switcher should not be in the Launcher by
default (LP: #868423)
[ MC Return ]
* Workspacenames plugin: Requires text plugin to work (LP: #1100172)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3564
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Thu, 17 Jan 2013 07:03:41 +0000
compiz (1:0.9.9~daily13.01.14-0ubuntu1) raring; urgency=low
[ sampo555 ]
* compiz crashed with SIGSEGV in DodgeAnim::applyDodgeTransform() (LP:
#1048840)
* compiz crashing if window un-/minimize animation is "Random" (LP:
#1098185)
[ Daniel van Vugt ]
* Several leaks in new GLProgram from compileProgram() from
GLScreen::getProgram() from GLWindowAutoProgram::getProgram() (LP:
#1097644)
[ Sam Spilsbury ]
* Several leaks in ccsIntegratedSettingListAppend() ... from
ccsGNOMEIntegrationBackendGetIntegratedSetting() from readSetting
(gsettings.c:375) (LP: #1097661)
[ MC Return ]
* Thumbnail Window Previews: Flickering of background/glow and window
title text (LP: #1098758)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3561
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Mon, 14 Jan 2013 04:03:09 +0000
compiz (1:0.9.9~daily13.01.11-0ubuntu1) raring; urgency=low
[ Jussi Pakkanen ]
* Build warning "multiple rules generate gtk/gnome/compiz.desktop.
build will not be correct; continuing anyway" (LP: #1086789)
* Build uses pyrexc without checking that it exists (LP: #1086704)
[ Iven Hsu ]
* KWD: Appmenu always pops up at top-left corner of the screen (LP:
#1089863)
[ Matija Skala ]
* findcompiz_install doesn't work (LP: #1051595)
[ Michail Bitzes ]
* [regression-r3320] firepaint doesn't paint any fire any more (LP:
#1048505)
[ Timo Jyrinki ]
* Default blacklist string shouldn't contain double escape (LP:
#1091103)
[ Scott Moreau <oreaus@gmail.com>, MC Return <mc.return@gmx.net>, Sam Spilsbury ]
* [needs-packaging] Wishlist: Missing plug-In: Wizard (LP: #1012330)
[ Brandon Schaefer ]
* Window management - When a monitor is disconnected, the windows do
not move to the remaining monitor and the Launcher pips do not
update (LP: #1002246)
[ MC Return ]
* [regression] thumbnail plugin does not build any more (LP: #1020825)
* [regression-r3320][GLES]: showmouse plugin does not work anymore at
all (LP: #1048267)
[ Robert M <osfan6313@gmail.com>, Sam Spilsbury ]
* CCSM segfaults if no settings found (LP: #1092651)
[ Daniel van Vugt ]
* [regression] Window resize granularity is lost when restored after
using Grid (LP: #925867)
* compiz_test_resize_logic: Multiple errors: Conditional jump or move
depends on uninitialised value(s) (LP: #1097179)
* Add support for blacklisting some drivers from using unredirected
fullscreen windows (LP: #1089246)
* [regression] compiz spends 31% of its CPU time in regexec() (LP:
#1095001)
* GLShaderCache::priv [PrivateShaderCache] is leaked (LP: #1097664)
* [regression] r3523: Restored windows' contents are offset from (not
aligned with) their frames (LP: #1089279)
* On ARM lp:compiz defaults to GL instead of GLES and FTBFS unless you
-DBUILD_GLES=ON (LP: #1088414)
* [regression][GLES] wallpaper plugin does not build any more (LP:
#1020830)
* [regression-r3320] firepaint doesn't paint any fire any more (LP:
#1048505)
* findcompiz_install doesn't work (LP: #1051595)
* [Regression] Minimizing a window creates an input-insensitive area
if you have unityshell loaded (LP: #1089811)
* [clang] lp:compiz r3523 FTBFS: unused function
'ListValueToSettingValueList' [-Werror,-Wunused-function] (LP:
#1089250)
* compiz fails to configure on arm with -DCOMPIZ_BUILD_TESTING=ON
[package 'gl' not found] (LP: #1088419)
* PrivateGLScreen::projection is leaked (LP: #1097657)
* [clang] Multiple segfaults in test: SetSemantics (LP: #1089251)
* Plugin names are not sorted (they're shown in directory order) when
cmake is run (LP: #1096780)
* Windows don't respond to input (mouse clicks) if XShape is disabled
or unavailable (LP: #1087193)
* cmake suggests (kind of) expo is disabled but it still builds
correctly. (LP: #1083027)
* EGL/GLES compiz builds do a eglWaitGL (synchronous wait) on every
frame, likely to slow things down (LP: #1086779)
* Incorrect detection of shader support on fglrx (LP: #1026920)
* 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
wrong values (LP: #1063617)
* resize leaks memory in multiple locations calling
resize::CompScreenImpl::findWindow() -> operator new() (LP:
#1097126)
[ Andrea Azzarone ]
* Modal dialogs don't appear on the same workspace/monitor as their
parent window (LP: #754508)
* Multimonitor: New windows open on the wrong monitor, Place Plugin
settings silently ignored (LP: #874146)
[ Sam Spilsbury ]
* [regression][GLES] cubeaddon plugin does not build any more (LP:
#1020823)
* [regression-r3320] Animations and modules/plugins missing in Ubuntu
12.10 and 13.04 (LP: #1069112)
* [nvidia] Moving or resizing windows freezes and stutters on nvidia
(especially if some other window is redrawing). (LP: #1027211)
* Clicking on semi-maximized windows in a different workspace fails to
switch to the correct workspace (LP: #1037164)
* CCSM segfaults if no settings found (LP: #1092651)
* Building compiz with clang++ on raring fails to build libgtest (LP:
#1095906)
* Using grid-resize prevents windows from maximizing correctly (LP:
#1093757)
* 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
wrong values (LP: #1063617)
* ccp can fail to compile, as CompizPlugin is not included (LP:
#1090845)
* opengl plugin FTBFS with clang (LP: #1095915)
[ Łukasz 'sil2100' Zemczak ]
* FTBFS after python2.7 upgrade - missing pyconfig.h (LP: #1088996)
[ Automatic PS uploader ]
* Automatic snapshot from revision 3554
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Fri, 11 Jan 2013 04:03:03 +0000
compiz (1:0.9.9~daily12.12.05-0ubuntu2) raring; urgency=low
* Backport a tentative fix from rev 3387 for LP: #1060327
-- Didier Roche <didrocks@ubuntu.com> Fri, 07 Dec 2012 09:28:46 +0100
compiz (1:0.9.9~daily12.12.05-0ubuntu1) raring; urgency=low
[ Michael Terry ]
* debian/control:
- Update Vcs-Bzr
* debian/patches/100_expo_layout.patch:
- Fix to apply
* Automatic snapshot from revision 3451 (bootstrap)
- Fix crash from writing to static memory (LP: #1065814)
- Fix maximized windows changing workspaces (LP: #1071791)
- Respect Zoom Factor setting (LP: #1066187)
- Respect Show Window Title setting (LP: #1009999)
- Restore text background transparency (LP: #1042132)
- Restore screenshot selection rectangle transparency (LP: #1047788)
- Restore top and bottom cube transparency (LP: #1048272)
- Fix scaleaddon window highlighting being solid (LP #1068503)
- Make resize hint overlay disappear when changing edges (LP: #839602)
- Preserve grid IDs during drag (LP: #1067812, LP: #1048855)
- Save current display before doing snap preview (LP: #1068173)
- Ignore inactive keybindings (LP: #1053280)
- Handle <primary> in keyboard shortcuts (LP: #936840)
- Make sure showdesktop plugin is loaded after unityshell (LP: #1067534)
- Fix grid build failure (LP: #1067577)
- Fix Jenkins test failures (LP: #1058577)
- Don't allow duplicate static symbols when linking (LP: #1067964)
- Make external templates C++0x compatible (LP: #1067598)
- Make sure to initialize class members (LP: #1033877)
- Don't duplicate templates in plugins (LP: #1066793, LP: #1066803,
LP: #1066804, LP: #1066805, LP: #1066799, LP: #1066796,
LP: #1066795, LP: #1066798, LP: #1067218, LP: #1067219)
- Don't needlessly set gsettings keys (LP: #1064791)
- Remove unused code (LP: #1037142, LP: #1067234)
- Fix syntax highlighting for trunk xml files (LP: #1066823)
- Fix documentation for building with python2 (LP: #1070211)
[ Stephen M. Webb ]
* Windows open below panel and launcher, grid does not work at all,
window animations missing, and general plugin chaos if built on
raring (cmake >= 2.8.10) (LP: #1085581)
[ Iven Hsu ]
* KDE Appmenu doesn't work with compiz decorators (LP: #1082265)
* compiz 0.9.8.6 fails to build from source in KDE4-window-decorator
with latest KDE 4.10 beta (LP: #1082152)
* kde4-window-decorator crashes when starting up with oxygen theme
(LP: #1050776)
[ sampo555 ]
* Grid: Window management - resize preview does not show when moving a
window from the semi-maximised state to the maximised state in a
single action (LP: #1071689)
[ Timo Jyrinki ]
* HTML5 video in Firefox continues to tear (LP: #1086337)
[ MC Return ]
* Workspacenames Plug-in: Wishlist: Default Appearance values not
ideal (LP: #1075600)
* Resizeinfo Plug-in: No possibility to change the color and
transparency of the rounded background outline (LP: #1070297)
* Resizeinfo Plug-in: Gradient color 2 and 3 settings are ignored and
no background gradient is rendered (LP: #1070233)
* Expo animations "Fade + Zoom" & "Vortex" result in a black screen
(LP: #875311)
* Workspacenames Plug-in: Wishlist: No default values for
workspacenames, should be changed (LP: #1075584)
[ Daniel d'Andrada ]
* unity build fails if compiz is installed outside /usr (LP: #1084162)
[ Daniel van Vugt ]
* [regression] Window decorations ignore brightness/opacity changes in
expo (LP: #1081425)
* Unredirected fullscreen windows freeze and stay on top when wall
sliding (Ctrl+Alt+Left/Right) (LP: #1084401)
* Test failures:
ExpoAnimationOffsetTest/ExpoWallOffsetTestAnimations.TestAnimationVa
lues/21 (from ExpoAnimationOffsetTest_ExpoWallOffsetTestAnimations)
(LP: #1071238)
* Window management - Cursor position changes relative to window while
dragging windows (LP: #201681)
* Multi-monitor - Maximized windows cast shadows on adjacent monitors
and workspaces (LP: #928807)
* "Unredirect Fullscreen Windows" can cause significant tearing on
fullscreen windows (especially playing video) (LP: #1051802)
* 100_expo_layout.patch does not apply totally cleanly (LP: #1076876)
* Tests 1-4 fail with SEGFAULT: CompizConfigPython.test_*
(SEGFAULT)... (LP: #1080555)
* Unredirect fullscreen windows should be the default for optimal
performance (LP: #1063690)
* lp:compiz r3447 FTBFS: compizconfig_test_ccs_object.cpp:123:9:
error: expression result unused [-Werror,-Wunused-value]
GET_INTERFACE (Dummy2Interface, to); (LP: #1075048)
* [regression][GLES] obs opacity no longer applies to all window
decorations (LP: #1028809)
[ Andrea Azzarone ]
* New windows are moved to front but don't take focus (LP: #781931)
[ Sam Spilsbury ]
* CompizConfigPython tests not using ini backend (LP: #1080989)
* CMake Warning in src/tests/CMakeLists.txt:16 This command specifies
the relative path (LP: #1082633)
* CCSObjectDeathTest.GetInterface fails (LP: #1085687)
* make test fails in CompizConfigPython.test_* (OTHER_FAULT) (LP:
#1070817)
* It is possible to write to a plugin in compizconfig that has no
associated gsettings schema (LP: #1078330)
* CompizConfigPython tests not using ini backend (LP: #1077787)
* When building with xorg-gtest, cmake fails to find xorg-gtest
sources (LP: #1084096)
* GLib warning - source still attached to context, but ref_count == 0
on shutdown (LP: #1085590)
* Can not find target to add properties to:
compizconfig_gnome_gsettings_integrated_setting (LP: #1070411)
* Fix LP: #1084796
[ Automatic PS uploader ]
* Automatic snapshot from revision 3502
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Wed, 05 Dec 2012 09:27:30 +0000
compiz (1:0.9.8.4+bzr3412-0ubuntu1) raring; urgency=low
* New upstream snapshot.
- Avoid duplicate template instantiations of PluginClassHandler<>, at
least for those plugins that get re-used by others. (LP: #1065815)
- Don't try to dereference NULL, which is returned by
ccsGConfIntegratedSettingReadValue when it gets unexpected data
from gconf. (LP: #1056615)
- Stop the resize border (Rectangle resize mode) from flickering
slightly. (LP: #1068518)
-- Timo Jyrinki <timo-jyrinki@ubuntu.com> Fri, 09 Nov 2012 09:52:15 +0200
compiz (1:0.9.8.4+bzr3407-0ubuntu1) quantal-proposed; urgency=low
* New upstream snapshot.
- Cherry-picked fixes in Ubuntu merged to development branch
- Fix leakage of destroyed_pixmaps_table, containing pointers to freed
decor_t's which could result in a freed GHashTable being passed into
g_hash_table_remove and causing a crash. (LP: #1060171)
-- Timo Jyrinki <timo-jyrinki@ubuntu.com> Fri, 12 Oct 2012 13:36:25 +0300
compiz (1:0.9.8.4-0ubuntu3) quantal-proposed; urgency=low
* debian/config, debian/compiz-gnome.migrations,
debian/00_remove_unityshell_in_gnome_session.py:
- add the default gnome_session profile to use gsettings as the migrated
user are on this profile (LP: #1036752). The existing migration scripts
will upgrade the user config.
- For new users and users already on quantal before this fix, remove the
local config file created if you logged in the classic session hiding the
system one. Also, as the global default is including the unity* plugins,
remove them from the list of plugins the first time you log in.
-- Didier Roche <didrocks@ubuntu.com> Wed, 17 Oct 2012 12:19:08 +0200
compiz (1:0.9.8.4-0ubuntu2) quantal; urgency=low
* debian/patches/unity_support_test.patch:
- force llvmpipe in the unity profile if we are in the grey zone, meaning:
the card and drivers have opengl support, however, it doesn't met unity
requirements (opengl < 1.4, no vertex shaders support…). Thanks duflu
(LP: #1039155)
Note that we already discourage them to upgrade from precise to quantal
with a warning before the upgrade, however let's get a slow ui rather
than none on the iso as well.
-- Didier Roche <didrocks@ubuntu.com> Tue, 09 Oct 2012 15:26:52 +0200
compiz (1:0.9.8.4-0ubuntu1) quantal-proposed; urgency=low
* debian/control:
- Add dependency on gnome-settings-daemon for compiz-gnome, since some
tests need the g-s-d gsetting schemas
* New upstream release.
- FTBFS with -DCOMPIZ_BUILD_TESTING=OFF if libgtest-dev is not installed
(LP: #1057421)
- [performance] glXSwapIntervalEXT called every frame, which is very slow
on Nvidia. (LP: #1051286)
- opacify plugin: opacity isn't reset after switching window (LP: #1050757)
- cmake fails on python 2.6 as sys.version_info does not contain
major_version or minor_version (LP: #1048964)
- scale mode is not visible if a fullscreen window is unredirected
(LP: #1047168)
- Unredirected fullscreen windows flicker briefly when another window
(like a menu) opens above them (LP: #1046664)
- Week33 - Grid highlight window appears while switching between workspaces
(LP: #1037142)
- gtk-window-decorator leaks large numbers of pixmaps and pixmap memory
(LP: #1057263)
- [fglrx] compiz crashed with SIGSEGV in glXDestroyContext()
[/usr/lib/fglrx/libGL.so.1] from GLScreen::~GLScreen() (LP: #1054724)
- Maximized window gets unredirected when it's not fullscreen
(LP: #1053902)
- Double shortcuts conflict with gnome-control-center ones (LP: #1050796)
- gtk-window-decorator leaking window handles. Window operations become
sluggish after a few days of usage (LP: #1050610)
- [valgrind] Up to 520,000 bytes lost when running
CCSGSettingsBackendConceptTest (LP: #1049169)
- 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
wrong values (LP: #1042041)
- Compiz r3275 breaks VirtualBox Guest Additions: black screen or just
wallpaper (LP: #1030891)
- Incorrect (low/stuttering) refresh rate with NVIDIA driver (LP: #92599)
- ARM build broken with 'swapInterval' is not a member of 'GL'
(LP: #1056645)
- compiz.fix_927168 broke ARM building (LP: #1052838)
- compiz crashed with SIGSEGV in __strcasestr_ia32() from
ccsStringToModifiers(binding=NULL) (LP: #1041535)
* Cherry-picked from upstream:
- ABI bump due to an ABI change in the composite plugin
- Removed schema keys still used in keybindings and automated tests
(LP: #1057955)
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com> Thu, 27 Sep 2012 15:43:59 +0200
compiz (1:0.9.8.2+bzr3377-0ubuntu1) quantal-proposed; urgency=low
[ Sam Spilsbury ]
* debian/python-compizconfig.install
- Install compizconfig-python.pc
* debian/patches/100_expo_layout.patch
- re-add the expo layout that used to be in precise (LP: #1047067)
- add some testcases
[ Timo Jyrinki ]
* New upstream snapshot.
- Fix multiple window placement bugs (LP: #974242) (LP: #976032)
- Don't waste CPU looping through and looking at all the windows if you're
rendering an output that has no damage on it. (LP: #1014986)
- Updated convert files to fix some typos in the key names. (LP: #1041631)
- Fix crash when imgsvg is loaded, due to missing symbol
(decor_apply_gravity from libdecoration). (LP: #956986)
- Treat unresolved symbols at link time as an error, rather than letting
them through and cause strange crashes later. (LP: #1043143)
- Refactors a little bit of the upgrade code and gets it under test to
prepare to fix (LP: #1042537)
- Updated AUTHORS from the full bzr log, and re-sort the list.
(LP: #1042095)
- Fixes FTBFS for kde4-window-decorator (LP: #1041310)
- Fix obvious omissions from the introduction of unminimize_*,
which were causing the unminimize animation settings to be ignored
(LP: #1040455)
- resize plugin: don't crash if resize wasn't initiated externally
(LP: #1045191)
- Clean up capitalization (LP: #1045652)
- Avoid division by zero, if plugins try to deform a window down to size
zero. (LP: #1045235)
- Make "Unredirect Fullscreen Windows" more reliable. This fixes the
problem with unredirection failing to engage at all (LP: #1041066) when
gtk-window-decorator creates offscreen windows that are stacked on top.
This also fixes the problem with unredirect hiding all windows,
because it thinks the desktop window should be stacked on top
(LP: #980663).
- Ensure unredirected windows don't stay unredirected if they're no longer
on top. (LP: #1041047)
- Fix launching terminal functionality and make show-hud default key
visible. Update the defaults to org.compiz.integrated to reflect the
actual gnome values pre-gnome-3. (LP: #1040081) (LP: #1046199)
(LP: #1046190)
- Fix show-hud, bump COMPIZ_GNOME_INTEGRATED_SETTINGS_LIST_SIZE.
(LP: #1046212)
- Fixed: Windows with an alpha-channel, like gnome-terminal, were not
being considered as possibly covering fullscreen windows. But they most
certainly can. This ensures such RGBA windows are visible if they're
stacked above a fullscreen window. (LP: #1046661)
- Remove ListToStringList (LP: #1046184)
- Fix typo causing CMake Error (LP: #1045665)
- Transitions gtk-window-decorator over to use GSettings. Add a testing
framework for the options code. (LP: #1042323)
- Also need kdeworkspace since kdecorationbridge.h is there
(LP: #1046770)
- Implements some cleanup that was suggested on the merge for the original
port to gsettings. Other issues fixed as well. (LP: #1042323)
- Fix the case where a new gsettings schema got added for building but
it wasn't recompiled locally (LP: #1046701)
- Scale: select the window under the pointer, when the scale animation
is over. (LP: #1045127)
- Fixes the some "Use of uninitialised value" warnings reported by
valgrind (LP: #1004336))
- Check if org.gnome.mutter is available before using it (LP: #1048551)
- We don't need to map our style windows, prevent them from cluttering
up the paint queue (LP: #1042552)
- Migrate profile independent keys separately from the profile
dependent keys (LP: #1046190)
- Don't ever enter the subdir of a plugin that is disabled. (LP: #1049100)
- Workaround SubBuffer performance regression (LP: #1037411)
- Changed the default placement of the benchmark window from 0,0 to
100,50. (LP: #1039406)
- Ensure window decorations always get rendered after the window, not
before. This is how it was in compiz 0.9.7, and is required in order
to resolve unity panel shadow (LP: #1050704)
- Fix CMakeLists.txt to bring an xslt file back to compiz-dev
- Avoid a NULL dereference and give a useful error message instead
(LP: #944653)
- Fix (LP: #1050752)
- Check that pixmaps which aren't managed by us actually exist before
binding. (LP: #927168)
- Fix flickering and performance problems with using Unredirect Fullscreen
Windows with multiple monitors. (LP: #1050749) (LP: #1051885)
* debian/compiz-dev.install
- Remove compizconfig-python.pc, now in python-compizconfig.install
* Drop dependency on libgconf2-dev, add gconf2 dependency to the
transitional package for migrations
* Add -DUSE_GCONF=OFF to debian/rules
* debian/libdecoration0.symbols
- Add decor_shadow_options_cmp
* Cherry-pick fixes from trunk:
- Fix FTBFS with BUILD_GLES
* Restore 'Glide 2' unminimize animation via override
[ Didier Roche ]
* debian/libdecoration0.symbols:
- update the symbols file
* add and cherry-pick missing ABI breakage bump
-- Didier Roche <didrocks@ubuntu.com> Thu, 20 Sep 2012 17:39:05 +0200
compiz (1:0.9.8.0-0ubuntu1) quantal-proposed; urgency=low
* debian/control, debian/rules:
- enable gles on armel and armhf
- use dh-translations rather than custom code
[ Sam Spilsbury ]
* Enable OpenGL ES building
- Refresh debian/patches/workaround_broken_drivers.patch
- Remove non-ported plugins from compiz-plugins
- Add FindOpenGLES2.cmake to compiz-dev
[ Timo Jyrinki ]
* New upstream release.
- Code to make compiz work on GLES. This includes several changes
to the compiz API. (LP: #201342) (LP: #901097) (LP: #1004251)
(LP: #1037710)
- Draft first 0.9.8.0 NEWS and bump VERSION
* debian/patches/compiz-package-gles2.patch:
- Remove, obsoleted by the upstream GLES work
* Disable plugins that don't work on pure GLES on armhf/armel:
- bench, firepaint, mblur, showmouse, splash, showrepaint, td, widget
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 31 Aug 2012 22:59:50 +0200
compiz (1:0.9.8+bzr3319-0ubuntu3) quantal; urgency=low
* debian/control.in:
- Recommends python-gconf for the migration script (lp: #1041498)
* postinst/convert-files/compiz-profile-active-Default.convert,
postinst/convert-files/compiz-profile-Default.convert:
- updated to fix some key names typos in the list (lp: #1041631)
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 28 Aug 2012 19:50:29 +0200
compiz (1:0.9.8+bzr3319-0ubuntu2) quantal-proposed; urgency=low
* No change rebuild against the latest metacity
-- Robert Ancell <robert.ancell@canonical.com> Fri, 24 Aug 2012 16:36:28 +1200
compiz (1:0.9.8+bzr3319-0ubuntu1) quantal-proposed; urgency=low
[ Didier Roche ]
* debian/patches/ubuntu-config.patch:
- refresh with latest trunk
* debian/*docs:
- remove the TODO copy now removed upstream
* debian/compiz-plugins.install:
- install stackswitch, trip plugins
* debian/rules, debian/control:
- remove the compiz gnome-control-center key sedding through metacity.
Compiz now directly ships them.
- we do not need metacity-common anymore as a build-dep then
* debian/compiz-gnome.migrations, debian/control:
- build-dep on dh-migrations and ship gconf -> gsettings migration file
[ Matthieu Baerts (matttbe) ]
* Update apport hook for python3 ; thanks to Edward Donovan (LP: #1013171)
[ Timo Jyrinki ]
* New upstream snapshot.
- Fix Compiz crash in movementWindowOnScreen (LP: #1015151)
- Start window decorator when decor plugin starts (LP: #1014461)
- Fixed: Crash in compiz::wall::movementWindowOnScreen (LP: #1015151)
- Don't waste memory leaving /bin/sh running (LP: #1015422)
- Add reliable detection of the compiz bin directory (LP: #1015898)
- Check if the window would actually paint before painting the shadow,
since it is possible that another plugin could be inhibiting paint of
the dock window. (LP: #1012956)
- Don't insert the window into the server list above the window it was
created above. (LP: #1008020) (LP: #886605)
- makes compiz enhanced zoom and show mouse plugins considerably
smoother to use (LP: #930783)
- Don't set decoration contexts on undecorated windows, since that
might be read later and code will assume the window is decorated when
it isn't. (LP: #1015593)
- Fix potentially unterminated string leading to an uninitialized memory
read (LP: #1018302)
- Lift the 31/32 character restriction on key names that was causing so
many warnings. It's now 1024 characters according to glib. (LP: #1018730)
- Don't print the result of BUILD_DEB. It prevents ccsm et al from
installing. (LP: #1018916)
- Use the XDamage extension more efficiently (the way it was designed to be
used). This dramatically reduces CPU usage, reduces wakeups, and
increases frame rates. It also solves at least one observed performance
bug (LP: #1007299) and probably several more.
- Do the initial work to get libcompizconfig under test. (LP: #990690)
- Add support for initiating window picker in other than nomal mode. For
now added only the additional 'All windows' picker (LP: #933776)
(LP: #955035)
- Fixes (LP: #1018602) : An invalid read when using g_variant_iter_loop.
- Don't allow unbinds of textures kept around for animations in any case,
not just resizing. (LP: #1016366)
- Wait for the server to finish processing requests before doing a bind
(LP: #1016367)
- Using the next/previous bindings the wall plugin didn't calculate
correctly the next workspace when it reaches the begin or the end of a
row of workspaces, so it didn't jump to the next line. (LP: #904205).
- Added the plug-in "Stack Window Switcher" converted from git to bzr
(including full history) to Compiz. (LP: #1012205)
- Added the unsupported, but fully working plug-in "workspacenames"
- Added the plug-in "Trip" (LP: #1012213)
- Add extra checks to avoid passing an invalid xid to XGetWindowProperty
which would result in fatal error: BadWindow (invalid Window parameter).
(LP: #1019337)
- Fix crash LP: #1019337 properly this time.
- Added .convert files (for gsettings-data-convert) and a migration python
script (best for usage with session-migrations) for migrating some compiz
settings from gconf to gsettings
- Fix CMake error when USER environment variable is not set (LP: #1023772)
- Avoid severe artifacts and flickering when using LLVMpipe (LP: #1021104)
- Fix build failure due to invalid sed expression (LP: #1023738)
- Generate the CTestFile.cmake using cmake itself (LP: #1024214)
- Avoid random build failures "_intltool_update-NOTFOUND: not found"
by verifying intltool-update exists. If not, then fail cmake more
cleanly with a nice error message telling the user how to install
it. (LP: #1023742)
- Fixed CompTimerTestCallback.TimerOrder failure on slow
systems (like valgrind) (LP: #1021139)
- Fix incorrect shell expansion, leading to invalid "sed" syntax
(LP: #1029383)
- Install the cmake helper macros and check for them in
COMPIZ_CMAKE_MODULE_PATH (LP: #1024179)
- Fixed: schemas were getting installed to ${DESTDIR} twice
- Reduced combined filesizes of Compiz' .png resources from 2.2MB to
1.5MB by re compression of those with Trimage Image Compressor.
- Added test module for the migration script created by Francis Ginther
- Adds a COVERAGE argument to compiz_discover_tests
- Fixed various problems described in bug 1030473, optimizing
performance and style (LP: #1030473)
- Fixed commands addon desription typo (LP: #1033085)
- Reduced the scope of the variable 'icccm_version', removed a break
that can never be executed, added the variables 'frameType',
'frameState' and 'frameActions' to decor_quads_to_property in the
#else branch in KWD::Switcher::updateWindowProperties () as well and
simplified calc_button_size (decor_t *d) in cairo.c.. (LP: #1030473)
- Always call terminate callbacks for key bindings. ATM we call just the
first callback. (LP: #960652)
- Make valgrind shut up about some known "leaks" in python and glib.
Fix some leaks in the tests in the process.
- Implemented single click exit from expo screen. (LP: #1033531)
- Restore the fix for avoiding re-entering the glib event loop and
crashing. (LP: #1036490)
- Including rsvg-cairo.h is now deprecated. (LP: #1039482)
- Add keybinding integration for gnome-control-center
- Separate the configuration for the minimize and unminimize animations.
(LP: #1036739)
- Ignore mouse press and release if it does not happen inside of the expo
screen. (LP: #1036542).
- Additional keys from metacity to convert to GSettings
- Maximize vertically if pointer reaches top or bottom edges.
- Explicitly depend on resize-options. (LP: #1039834)
- Add some docstring warnings about using those classes directly.
- Fix some memory management issues on the mock objects, namely:
Make destructor functions virtual where appropriate, so that we can add
them to lists polymorphically. Support polymorphic ccs*Unref function.
Also make some other necessary changes to libcompizconfig.
- Detect if rsvg 2.36.2 is installed (LP: #1039843)
- GSettings integration backend, created a testsuite for it. Refactors a
bunch of the backend code, adds appropriate testsuites and refactors
the integration code to make it more flexible. (LP: #1035261)
* Update compiz-core.lintian-overrides
* Enable GSettings backend and install the schema files
* Switch the default profile to use gsettings
* Add dependency on gsettings-desktop-schemas(-dev)
* Add compiz-gnome.gsettings-override
* Update gsettings-override to new paths org.compiz.*
* Add support for disabling gconf schemas installation
- However, not enabled because of gtk-window-decorator for now
* Add libcompizconfig_gsettings_backend.so
* Workaround to install xml files
[ Łukasz 'sil2100' Zemczak ]
* debian/control, debian/rules:
- add dependency and use dh-migrations
* debian/compiz-gnome.migrations:
- use a migrations file for installing the script for migrating gconf
configuration to gsettings
* debian/patches/ubuntu-config.patch:
- changed keybinding for initiate window picker, according to the design
specification
-- Timo Jyrinki <timo-jyrinki@ubuntu.com> Thu, 23 Aug 2012 09:56:05 +0300
compiz (1:0.9.8+bzr3249-0ubuntu4) quantal; urgency=low
* Restore the maintainer script, the profile part is needed
-- Didier Roche <didrocks@ubuntu.com> Wed, 15 Aug 2012 17:46:48 +0200
compiz (1:0.9.8+bzr3249-0ubuntu3) quantal; urgency=low
* Remove unity-2d 2nd fallback mechanism for autologin as unity-2d
is now deprecated: (part one of LP: #1035261)
- debian/65compiz_profile-on-session,
debian/compiz-gnome.install:
remove conffile and don't install it
- debian/compiz-gnome.maintscript:
remove it on upgrade
-- Didier Roche <didrocks@ubuntu.com> Wed, 15 Aug 2012 14:58:39 +0200
compiz (1:0.9.8+bzr3249-0ubuntu2) quantal; urgency=low
* debian/control:
- take latest libjpeg8 instead of 62
- fix a missing Replaces: on libcompizconfig0 (LP: #1019270)
-- Didier Roche <didrocks@ubuntu.com> Fri, 29 Jun 2012 18:10:50 +0200
compiz (1:0.9.8+bzr3249-0ubuntu1) quantal-proposed; urgency=low
* New upstream snapshot.
- Fall back to a refresh rate that is more likely to look correct; 60Hz.
(LP: #1009338)
- Benchmark plugin should consume its key binding, and not pass the key to
the underlying window. (LP: #1009320)
- Avoid needless STL operations leading to expensive heap operations.
(LP: #1006335)
- Fix a typo that was causing (LP: #1002606)
(widthIncBorders/heightIncBorders)
- Check if the window is decorated before trying to change its event window
states (which won't exist if not decorated) (LP: #1007754)
- Use the XDamage extension more efficiently (the way it was designed to be
used). This dramatically reduces CPU usage, reduces wakeups, and
increases frame rates. It also solves at least one observed performance
bug (LP: #1007299) and probably several more.
- Avoid constructing and destructing lots of strings on every single event,
which was wasting lots of CPU (LP: #1005569)
- md LINGUAS doesn't exist, it's mnk (Mandinka in ISO 639-3)
- Move grid plugin to google test and don't depend on the plugin for the
test (LP: #1005009)
- Don't read plugin.Initialized and test the value. (LP: #1004848)
- libcompizconfig's install () commands were still using the old includedir
and libdir variables rather than their libcompizconfig_* variants.
(LP: #1005176)
- Execute the cmake files separately to ensure that DESTDIR is respected.
(LP: #1005177)
- Don't set_target_properties on a target that might not exist
(LP: #1005008)
- Don't allow windows which we weren't even tracking as decoratable to
become decorated if they try and change their hints. (LP: #963794)
- Change the mouse pointer while dragging windows in expo. Just like the
ubuntu branches do. (LP: #987647)
- Fix uninitialized memory use (LP: #1004338)
- Fix uninitialized variable (LP: #1004335)
- Delay unbinding of pixmaps until then next rebind (LP: #729979)
(LP: #1002602)
- Don't drop plugins from the list to try and load before you've even tried
to load them. Doing so makes missing plugins silently ignored instead of
an error message (LP: #1002715). It also means valid plugins in more
unusual, but real locations in LD_LIBRARY_PATH will never get loaded
(LP: #1002721).
- If running test cases under a real X server, we don't care if Xvfb is
missing (LP: #994841)
- Don't assume pkg_check_modules always sets _PREFIX (LP: #993608)
- Don't clear selections in ~PrivateScreen because it causes a race between
the existing and the new compiz instances, breaking --replace and
non-replace behaviour. (LP: #988684) (LP: #989545)
- Always paint with infiniteRegion as the clip region if the window is
transformed and always use the supplied region if painting with offset or
on transformed screen. (LP: #987639)
- Add synchronization primitives to the decoration protocol so that there
isn't a race where we bind a texture that's being freed. (LP: #454218)
(LP: #929989)
- fix a crash in the first attempt at this (LP: #996901)
- Reintroduce the fix for LP: #994841 which was accidentally reverted by
revision 3133. (LP: #999019)
* Cherry-pick some post-snapshot crasher fix:
- rev for Crash in compiz::wall::movementWindowOnScreen (rev 3255)
(LP: #1015151)
- Don't set decoration contexts on undecorated windows, since that might be
read later and code will assume the window is decorated when it isn't.
(LP: #1015593). rev 3261
* debian/control:
- clean build-deps, removing some suggests and rewritting some descriptions
to fit the reality
- change Vcs-Bzr to canonical branch
* add libcompizconfig package:
- debian/control:
- add some build-deps
- add the new packages
- debian/libcompizconfig0.install, debian/libcompizconfig0-dev.install:
- added the install files,
- removed some unused profiles
- add debian/config for default profile (wasn't shipped anymore upstream)
* merge compiz-plugins-main, compiz-plugins-main-default,
compiz-plugins-main-dev and compiz-plugins-extra to this package
both .install and .install.armhf, .install.armel):
- compiz-plugins-main-default plugins are now in compiz-plugins-default
- compiz-plugins-main plugins are now in compiz-plugins
- compiz-plugins-extra plugins are now in compiz-plugins-extra
- compiz-plugins-main-dev and some part of compiz-plugins-extra content
is now in compiz-dev
- the gconf configuration part is now in compiz-gnome (won't appear if the
.so file isn't installed in ccsm)
- debian/control:
* add the necessary build-dep
* add the needed replaces
* add transitional compiz-plugins-main-default, compiz-plugins-main,
compiz-plugins-main-dev and compiz-plugins-extra packages
* add python-compizconfig to the package:
- debian/control:
add the necessary build-dep, remove cython as in universe and adapt
upstream code to only use pyrexc
- debian/rules:
build with dh_python2
- add debian/python-compizconfig.install
* add compizconfig-settings-manager to the package:
- debian/control:
* drop some deps
* add a recommends on -default instead of compiz-plugins
- add debian/compizconfig-settings-manager.install
* Remove compiz-kde:
- not anymore supported upstream
- remove the build-deps as well
- remove some reference to -kde in description and depends
- remove the install file
* compiz-core:
- remove and don't install debian/compiz-decorator wrapper anymore
- same with debian/compiz-decorator.1
- run gtk-window-decorator in debian/patches/ubuntu-config.patch by default
- put some dev files in compiz-dev now
* removing compizconfig-backend-gconf, making this package (as well as the
new gsettings backend) part of compiz-gnome:
- added to the .install files
- added the C/R/P to compiz-gnome
- added the transitional package
* debian/patches/ccp_plugin.patch:
- adapted to new upstream code and style
* Misc:
- remove a lot of compiz-fusion and compiz-wrapper references (deprecated,
upgrade path not supported anymore) in debian/control
- remove a lot of breaks: replaces: pre-12.04
- update debian/libdecorator0.symbols
- set python-compizconfig section to python
- set some lintian non applicable warnings in *.lintian-overrides
- merging every patches for every independent sources in this source
- add debian ccsm manpage (debian/compizconfig-settings-manager.manpages,
debian/patches/ccsm.1)
- enable building compiz in parallel
- switch to dh9
- build on unversionned boost -dev
- shipped new workspacename plugin
- adding some replaces for locale installation support as well
* debian/patches/99_valid_ccsm_desktop_file.patch:
- create a valid ccsm desktop file
* debian/copyright, debian/watch:
- redone, as new packaging, new source content, new host (launchpad)
* debian/patches/ubuntu-config.patch:
- don't expose on edge
* debian/source/format:
- remove v3 (quilt) format: it doesn't work well with merge-upstream
workflow
* Note that right now, armhf/armel are building with opengl as opengles is
not yet backed into upstream and opengles drivers are broken in quantal
kernel
-- Didier Roche <didrocks@ubuntu.com> Tue, 19 Jun 2012 12:25:07 +0100
compiz (1:0.9.7.8-0ubuntu3) quantal; urgency=low
* drop -Werror temporary on armel/hf builds until the GLES patch does
not produce warnings anymore which cause compiz to FTBFS
-- Oliver Grawert <ogra@ubuntu.com> Mon, 04 Jun 2012 17:38:35 +0200
compiz (1:0.9.7.8-0ubuntu2) quantal; urgency=low
* debian/control:
- rebuild with new boost
-- Didier Roche <didrocks@ubuntu.com> Thu, 31 May 2012 09:41:01 +0200
compiz (1:0.9.7.8-0ubuntu1) precise-proposed; urgency=low
[ Didier Roche ]
* New upstream bug fix release:
- [fglrx] Title bar does not update on non-maximized windows (LP: #770283)
- Some apps (like Remmina) can't full-screen under Compiz (or Unity)
(LP: #946388)
- Compiz-core fails to compile with gcc-4.7 - 'cc1plus: all warnings
being treated as errors' (LP: #972519)
- Menu shadow clipping flickers while switching menubar items/indicators
(LP: #978900)
- Compiz should not move windows to workspace 0,0 when restarted
(LP: #980026)
- regression / unable to interact with window-titlebar (window decoration)
after minimizing/unminimizing gnome-terminal (LP: #981703)
* debian/patches/workaround_770283.patch,
debian/patches/fix_976467.patch:
- removed, upstreamed
[ Oliver Grawert ]
* update the GLES2 patch for the new upstream release.
-- Didier Roche <didrocks@ubuntu.com> Thu, 26 Apr 2012 09:19:51 +0200
compiz (1:0.9.7.6-0ubuntu2) precise-proposed; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* debian/patches/workaround_770283.patch:
- Workaround a problem with fglrx not refreshing window decoration textures
on pixmap modification (LP: #770283)
[ Oliver Grawert ]
* update GLES patch for new quilt patch, fix issue with GLES patch that
forcefully unapplied other quilt patches and resulted in
gtk-window-decorator to not be started.
-- Oliver Grawert <ogra@ubuntu.com> Fri, 20 Apr 2012 18:25:13 +0200
compiz (1:0.9.7.6-0ubuntu1) precise; urgency=low
[ Didier Roche ]
* New upstream release:
- Memory leak in dlloaderListPlugins (LP: #968985)
- priv->invisible is not updated when the window is mapped (LP: #969102)
- window management, multi-monitor - In multi-monitor environment, windows
should spread on the monitor in which they reside (LP: #919139)
- Drop-down menus look disembodied from their titles (LP: #659816)
- Improve performace of the shadow clipping code (LP: #931883)
- DecorWindow::computeShadowRegion called way too much (LP: #969101)
- white box randomly shows up at top left corner blocking application
from using stuff under it (LP: #940603)
* Rebuild against latest metacity to get the HUD key configuration
exposed in unity 3D as well (LP: #969256)
* debian/patches/ubuntu-config.patch:
- set multioutput_mode to all outputs (windows to be scaled on each the
monitor they are on only) (LP: #919139)
* debian/patches/fix_976467.patch:
- Fix shadows being clipped incorrectly (LP: #976467)
[ Oliver Grawert ]
* update the GLES2 patch for the new upstream release.
-- Didier Roche <didrocks@ubuntu.com> Wed, 11 Apr 2012 18:35:39 +0200
compiz (1:0.9.7.4-0ubuntu3) precise; urgency=low
* fix typo in copying of the cmake files, so FindOpenGLES2.cmake ends up in
the right place for other packages (i.e. compiz-plugins-main on GLES2
capable arches)
* make copying the GLES2 cmake file architecture specifc instead of ignoring
if it is not found on arches that do not have it.
-- Oliver Grawert <ogra@ubuntu.com> Fri, 06 Apr 2012 13:55:13 +0200
compiz (1:0.9.7.4-0ubuntu2) precise; urgency=low
* enable Linaros compiz-package-gles2.patch for armhf(/el) builds, thanks
to Alexandros Frantzis <alexandros.frantzis@linaro.org> for creating it.
* enable quilt in debian/rules
* apply patches based on debian architecture via series.<arch> file
(stolen from eglibc)
* add build deps to libgl1-mesa-dev and libgl-dev for armhf builds
* add armel/armhf specific .install files since only a subset of modules can
be built yet.
-- Oliver Grawert <ogra@ubuntu.com> Thu, 05 Apr 2012 19:09:27 +0200
compiz (1:0.9.7.4-0ubuntu1) precise; urgency=low
* New upstream release
- compiz crashed with SIGSEGV in CompositeScreen::compositingActive()
- Window management - Closing one window sends others to the
background (LP: #888704)
- [regression] Invisible resize border is now only 1px wide (LP: #953839)
- Coverity REVERSE_INULL - CID 10888 (LP: #957572)
- Unity dash opens and immediately closes if you tap Super+A
quickly (LP: #960831)
- Unity 5.8: Flickering and corruption on Unity UI elements (LP: #963093)
- Unity 5.8: Can't login to Unity since upgrade to 5.8 (LP: #963465)
- [regression] Unity 5.8+Compiz 0.9.7.2: Pressing Super+Tab or
Super+W works, but unity does not respond to when Super is
released. (LP: #963470)
- Unity 5.8: Login to blank screen (all black or just wallpaper)
(LP: #963633)
- Tests do not build when libgtest-dev is installed but libgtest
isn't (LP: #964248)
- Note that this fix is REMOVED for stability reasons:
Unity/compiz intercepts Super and Alt keypresses from grabbed
windows like VMs. (806255)
* debian/patches/ubuntu-config.patch:
- tweak slightly the shadow border for both active/inactive windows.
- change the shortcuts as per design request: (LP: #969235)
Ctrl + Super + D Minimises all windows
Ctrl + Super + Cursor up Maximises the current window
Ctrl + Super + Cursor down Restores or minimises current window
* debian/rules, debian/compiz-gnome.gconf-defaults:
- move the default for the unity-less default profile from DEFAULT_PLUGINS
list as it seems compiz tries to load that list, then ccp, then the
profile list.
- put the active_plugins list back to the Default profile in gconf then.
* debian/control:
- set Standards-Version to latest
* remove debian/patches/always_replace.patch,
debian/patches/exit_1_if_composite_cant_init.patch,
debian/patches/reset_active_plugin_list.patch,
debian/reset-compiz-gconf, debian/compiz-gnome.install:
- the 3 bad hacks are now not necessary anymore (LP: #963264)
* remove as now in upstream tarball:
- debian/patches/fix_953839.patch
- debian/patches/revert_lim.patch
- debian/patches/fix_953089_2.patch
- debian/patches/fix_960831.patch
-- Didier Roche <didrocks@ubuntu.com> Tue, 03 Apr 2012 15:43:16 +0200
compiz (1:0.9.7.2-0ubuntu4) precise; urgency=low
* No-change upload to the release pocket instead of to -proposed, so we can
get the package built on all archs immediately instead of it blocking on
gtk+3.0's build on armel.
-- Steve Langasek <steve.langasek@ubuntu.com> Mon, 26 Mar 2012 14:57:30 -0700
compiz (1:0.9.7.2-0ubuntu3) precise-proposed; urgency=low
* debian/reset-compiz-gconf:
- Fix crash in a new session
-- Didier Roche <didrocks@ubuntu.com> Mon, 26 Mar 2012 20:35:33 +0200
compiz (1:0.9.7.2-0ubuntu2) precise-proposed; urgency=low
* debian/patches/reset_active_plugin_list.patch:
temporary wrapper from resetting the plugin list to the default.
Uncorrect and unknown plugin makes various side effects, like removing
plugins, creating hanging at startup and also creating on screen
corruption. (LP: #963633)
-- Didier Roche <didrocks@ubuntu.com> Mon, 26 Mar 2012 18:41:09 +0200
compiz (1:0.9.7.2-0ubuntu1) precise-proposed; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* New upstream snapshot:
- Fix global menu not being ergonomical on large screens (LP: #682788)
- Fix Alt+Right arrow key (LP: #943612)
- Fix key bindings for actions while doing tap detection (LP: #944631)
- Window movement is erratic and buggy, backport (LP: #923683)
- CompScreenImpl::addAction(CompAction*): Assertion `priv->initialized'
failed (LP: #946118)
- gtk-window-decorator crash with SIGSEGV in max_window_name_width()
(LP: #937815)
- Finish the implementation of the locally integrated menubars
(LP: #931245)
- Unity/compiz intercepts keystrokes from grabbed windows (LP: #806255)
- Pressing alt doesn't show the menu title bar in top panel (LP: #943194)
- Fix Alt stealing focus from widgets (LP: #943851)
- Fix Alt + drag (LP: #945373)
- lp:compiz-core fails parallel builds (make -jN) (LP: #938417)
- Changing the HUD shortcut disables all Alt-based combinations. And
changing the Dash shortcut disables all Super-based shortcuts
(LP: #945816)
- Fix key bindings (such as Super) not working on empty workspace or on
slow/loaded systems (LP: #953089)
- compiz crashed with signal 5 in Glib::exception_handlers_invoke()
(LP: #808007)
- Fix segfault caused by r3043 (LP: #958540)
* Removed cherry-picked patches:
- debian/patches/fix_806255.patch
- debian/patches/fix_923683.patch
- debian/patches/fix_943194.patch
- debian/patches/fix_944631.patch
- debian/patches/fix_alt_pressing.patch
- debian/patches/additional_alt_tapping_fix.patch
[ Didier Roche ]
* pick upstream fix, debian/patches/fix_953839.patch:
[regression] Invisible resize border is now only 1px wide (LP: #953839)
* debian/patches/revert_lim.patch:
- revert the integrated menu patch. It won't be released in precise and
triggers a regression (in bug #962085)
* debian/patches/fix_953089_2.patch:
- second trial to fix remaining corner cases
* debian/patches/exit_1_if_composite_cant_init.patch:
- try to workaround a crasher which seems to happen when the composite
plugin failed to initialize. Hopefully exiting 1 will make gnome-session
respawning compiz and then the init will work. (LP: #833729)
* debian/patches/always_replace.patch:
- right now, always replace the current WM as it seems that some people
got another compositor running at the start of the session. This will
hopefully workaround the issue that some people experience.
-- Didier Roche <didrocks@ubuntu.com> Fri, 23 Mar 2012 09:13:51 +0100
compiz (1:0.9.7.0+bzr3035-0ubuntu1) precise; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* New upstream snapshot:
- Fix gtk-window-decorator crash upon demaximizing a window (LP: #930071)
- Fix core keybindings (LP: #930412)
- Fixes compiz crash with SIGSEGV on shutdown (LP: #931283)
- Plugins can't tell the difference between a key-tap and modifier
key-release (LP: #925293)
- compiz-core r3001 (and 3002) ftbfs (LP: #933226)
- Semi-maximized windows have no shadow or frame (LP: #924736)
- Untranslated strings in gtk-window-decorator (LP: #780505)
- Initialize the _NET_WM_STATE_FOCUSED (LP: #932087)
- [regression] Customized shortcuts don't work (LP: #931927)
- Window stacking problem (LP: #936675)
- Quickly demaximized windows can receive maximized window decorations if
they were initially maximized (LP: #936778)
- Maximized windows do not get shadows at all (LP: #936774)
- [regression] Launcher, top panel and keyboard un-responsive after using
any Super-x shortcut (LP: #934058)
- No draggable border if mutter isn't installed (LP: #936781)
- Fix compiz crash with SIGSEGV in XDefineCursor() (LP: #936487)
- Fixes memory leak at DecorWindow::updateSwitcher() (LP: #940115)
- Unresolved symbols in plugins cause compiz to exit (LP: #938478)
- Fix compiz spending about 51% of its CPU time in CompRegion
construction/destruction (LP: #940139)
- Fix Conditional jump or move depends on uninitialised value(s) in
decor_match_pixmap (LP: #940066)
- Fix 'show desktop' behaviour (LP: #871801)
- Tweak algorithm used to cast shadows on maximized windows (LP: #936784)
- "Svg" and "Png" should be "SVG and "PNG" (LP: #942890)
- Fix invalid memory usage after free() in DecorWindow (LP: #943116)
- Fix alt + F10 (LP: #943223)
* Removed cherry-picked patches
* debian/patches/fix_944631.patch:
- Always replay the keyboard if something was grabbed and didn't trigger
an action and don't trigger actions which aren't added accidentally
(LP: #943612) (LP: #944631)
* debian/patches/fix_923683.patch:
- Backports a patch which prevents the shift race condition
[ Didier Roche ]
* debian/patches/fix_alt_pressing.patch:
- Patch from ddv to fix all the regressions with the alt key fix and other
(LP: #943851, #945373)
- Fix Quicklist are not showing if right-clicking a launcher icon in Expo
mode if triggered by Super + S (LP: #944979)
* debian/patches/fix_806255.patch:
- Unity/compiz intercepts keystrokes from grabbed windows (LP: #806255)
* debian/patches/fix_943194.patch:
- second part for the alt key fix (LP: #943194)
* debian/patches/additional_alt_tapping_fix.patch:
- again another alt tapping related fix for some regressions from the
previous branch. Taken from "tapping-panacea" upstream branch.
-- Didier Roche <didrocks@ubuntu.com> Mon, 12 Mar 2012 10:22:10 +0100
compiz (1:0.9.7.0~bzr3025-0ubuntu1~ppa1) precise; urgency=low
* New upstream snapshot:
- Fix gtk-window-decorator crash upon demaximizing a window (LP: #930071)
- Fix core keybindings (LP: #930412)
- Fixes compiz crash with SIGSEGV on shutdown (LP: #931283)
- Plugins can't tell the difference between a key-tap and modifier
key-release (LP: #925293)
- compiz-core r3001 (and 3002) ftbfs (LP: #933226)
- Semi-maximized windows have no shadow or frame (LP: #924736)
- Untranslated strings in gtk-window-decorator (LP: #780505)
- Initialize the _NET_WM_STATE_FOCUSED (LP: #932087)
- [regression] Customized shortcuts don't work (LP: #931927)
- Window stacking problem (LP: #936675)
- Quickly demaximized windows can receive maximized window decorations if
they were initially maximized (LP: #936778)
- Maximized windows do not get shadows at all (LP: #936774)
- [regression] Launcher, top panel and keyboard un-responsive after using
any Super-x shortcut (LP: #934058)
- No draggable border if mutter isn't installed (LP: #936781)
- Fix compiz crash with SIGSEGV in XDefineCursor() (LP: #936487)
- Fixes memory leak at DecorWindow::updateSwitcher() (LP: #940115)
- Unresolved symbols in plugins cause compiz to exit (LP: #938478)
- Fix compiz spending about 51% of its CPU time in CompRegion
construction/destruction (LP: #940139)
- Fix Conditional jump or move depends on uninitialised value(s) in
decor_match_pixmap (LP: #940066)
- Fix 'show desktop' behaviour (LP: #871801)
* Removed cherry-picked patches:
- debian/patches/fix_871801.patch
- debian/patches/fix_924736.patch
- debian/patches/fix_925293.patch
- debian/patches/fix_930412.patch
- debian/patches/fix_931283.patch
- debian/patches/fix_931473.patch
- debian/patches/fix_931927.patch
- debian/patches/fix_931958.patch
- debian/patches/fix_932087.patch
- debian/patches/fix_933226.patch
- debian/patches/fix_gtk_w_d_crash.patch
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com> Mon, 27 Feb 2012 14:53:05 +0100
compiz (1:0.9.7.0~bzr2995-0ubuntu5) precise; urgency=low
* Change some keybindings as per design (LP: #878820, #891757, #751050)
debian/patches/ubuntu-config.patch:
- Show desktop is now Super + d
- Super + Up maximize the window
- Super + Down restore the window
- Super + W initiate scale for all windows on current ws
- Control + Alt + NumPad 5 is used to switch/restore maximize state
- Control + Alt + NumPad 0 is used to minimize current window
- Ensure we don't have any conficting keys anymore (LP: #922354)
* 01_ctrl_alt_*tea*.patch:
- Merged into ubuntu-config.patch, no reason to keep it separated
* debian/compiz-gnome.gconf-defaults, debian/rules, debian/unity.ini:
- Set the new plugin order with the incoming unity change as the default
-- Didier Roche <didrocks@ubuntu.com> Wed, 22 Feb 2012 13:44:25 +0100
compiz (1:0.9.7.0~bzr2995-0ubuntu4) precise; urgency=low
* debian/patches/fix_925293.patch:
- rollback that patch as well, not ready for wide consumption
(triggered side effects)
-- Didier Roche <didrocks@ubuntu.com> Fri, 17 Feb 2012 10:00:16 +0100
compiz (1:0.9.7.0~bzr2995-0ubuntu3) precise; urgency=low
* debian/patches/series:
- rollbacking fix_931473.patch which was supposed to fix
"Rendering menus leaves transparent areas". Apparently, the fix does
the opposite effect on most configurations. Reverted it put it back in
the previous state and the ghost menus are way less common.
-- Didier Roche <didrocks@ubuntu.com> Thu, 16 Feb 2012 20:47:35 +0100
compiz (1:0.9.7.0~bzr2995-0ubuntu2) precise; urgency=low
* debian/compiz-kde.install, debian/control, debian/rules:
- disable right now kde build for compiz-kde package. It's using
deprecated kde libraries and fails to build on armel. It's
probably as well not needed anymore as most of kde users are using
kwin which is better integrated to kde than compiz. There is not
anymore upstream compiz maintenance on this plugin as well.
(LP: #931500)
* debian/patches/fix_931958.patch:
impossible to click on keyring dialog since the upgrade. Doesn't really
fix 931958 as per say, but another issue impacting seahorse.
* debian/patches/fix_871801.patch:
window management, alt-tab - After using 'show desktop' to minimise
all windows, opening any new window also incorrectly restores all
the minimised windows (LP: #871801)
* debian/patches/fix_925293.patch:
Add support for key "tap" detection (LP: #925293)
* debian/patches/fix_933226.patch:
Fix FTBFS in previous commit (LP: #933226)
* debian/patches/fix_932087.patch:
Initialize the _NET_WM_STATE_FOCUSED (LP: #932087)
* debian/patches/fix_931473.patch:
- Menus don't fully appear (LP: #931473)
- Rendering menus leaves transparent areas (LP: #932813)
* debian/patches/fix_931927.patch:
- Customized shortcuts don't work in compiz 1:0.9.7.0~bzr2995-0ubuntu1
(LP: #931927). Breaks API/ABI.
-- Didier Roche <didrocks@ubuntu.com> Thu, 16 Feb 2012 15:11:51 +0100
compiz (1:0.9.7.0~bzr2995-0ubuntu1) precise; urgency=low
[ Didier Roche ]
* New upstream snapshot:
- Fix slow/stuttering display with fglrx (LP: #763005)
- Don't dynamically link to compiz_core
- Fix build failures with glib 2.30 (oneiric) (LP: #921406)
- Fix uninitialized variable warnings in valgrind (LP: #921451)
- Fixes up a bunch of boost::variant edge cases
- Fixes a race condition where the xig restart test would fail spuriously
- Incorrect (low/stuttering) refresh rate with NVIDIA driver (LP: #92599)
- Benchmark window slows the system and degrades graphics resources
(LP: #254561)
- Windows that hide themselves when closed don't appear in any
"this workspace" switcher (LP: #684731)
- hang in g_spawn_sync and select() (LP: #690239)
- word misspelled - bunding (LP: #694169)
- sometimes, restored window placed too high. (LP: #716521)
- Compiz clears the root window in the installer session (LP: #720679)
- unity-window-decorator: When switching between windows, Orca does
not speak the title of the focused window. (LP: #724093)
- Cannot open a window that starts iconified (LP: #732997)
- Minimize animation flickr when for maximized apps (LP: #737125)
- Pixmap memory leak in gtk-window-decorator (LP: #740258)
- Windows should not automatically be focused when opened if the
focus is on another application (LP: #748840)
- [sandybridge] Graphics tearing when playing video (LP: #755841)
- Compiz's "Sync to Vblank" makes display stutter/slow with fglrx
(LP: #763005)
- [regression] Moving windows lags behind the mouse by 1-2 seconds;
appear to freeze when dragging. (LP: #764330)
- Launcher - Spread should not affect the state of window (LP: #764673)
- Clicking on a tweet/message link sometimes does not work (LP: #790565)
- scrolling on top of a close animation switches viewports (LP: #795065)
- unity video tearing when moving windows in oneiric with
nvidia-current (LP: #798868)
- dialogs really slow to be displayed since the compiz update (LP: #812711)
- It is possible to stack windows relative to windows that are
destroyed (LP: #837252
- Should keep list of windows last sent to server and last recv
from server (LP: #841727)
- compiz and X can disagree on the stacking order (LP: #845719)
- A minimized window 'remains' behind on the desktop if
/apps/compiz-1/plugins/unityshell/screen0/options/
show_minimized_windows is set to true (LP: #847967)
- maximized windows fail to update their input extents when
undecorated (LP: #853734)
- resizing bugs with xterm (LP: #854725)
- crash on closing a window (LP: #856015)
- Java application windows cut-off/truncated/not displayed properly
(LP: #857201)
- compiz crashed with SIGSEGV in CompScreen::insertServerWindow()
(LP: #857487)
- compiz crashed with SIGABRT in raise() (LP: #857738)
- Applications which create multiple windows that are transients of
each other can be given invalid stack positions (LP: #858625)
- Windows move to 0,0 on compiz restarts (LP: #858629)
- Crash when selecting Evolution in alt-tab (LP: #859431)
- invisible window when a window is mapped but not yet drawn on by
the process mapping it (LP: #860286)
- race condition in configureXWindow causes unpredicatable window
geometry changes (LP: #860304)
- windows that are decorated while resizing can cause incorrect
resize results (LP: #860306)
- Moving a window while it is being resized by core caused
unpredictable movement (LP: #860309)
- Windows which are marked transients of docks should be treated
like docks (LP: #860397)
- can't maximize windows on second monitor and Qt windows displayed
in wrong place (LP: #861341)
* debian/compiz-decorator, debian/compiz-gnome.install,
debian/compiz-plugins-default.install,
debian/compiz-plugins.install,
debian/compiz-gnome.gconf-defaults, debian/rules, debian/unity.ini:
- no more unity-window-decorator, switch back to gtk-window-decorator
- remove plugins that are not shipped anymore
- don't set in the default list plugins that are not shipped anymore
* debian/libdecoration0.symbols:
- upated to latest
* Removed cherry-picked patches:
- debian/patches/02_fix_autofocus_minimize_window.patch
- debian/patches/03_fix_configureframe.patch
- debian/patches/04_fix_insertServerWindow_crash.patch
- debian/patches/05_fix_reconfigureXWindow_crash.patch
- debian/patches/fix-748840.patch
- debian/patches/fix-832150.patch
- debian/patches/fix-863328.patch
- debian/patches/fix-864330.patch
- debian/patches/fix-864478.patch
- debian/patches/fix-865863.patch
- debian/patches/fix-866752.patch
- debian/patches/fix-869316_869919.patch
- debian/patches/fix-869967.patch
- debian/patches/fix-886978.patch
- debian/patches/fix_slow_vsync_lp763005.patch
- debian/patches/rev_2821_fix_807487.patch
- debian/patches/rev_2847_bug_796594.patch
- debian/patches/rev_2878_bug_865696.patch
- debian/patches/rev_2884_fix_874004.patch
- debian/patches/rev_2890_fix_879253.patch
* debian/rules:
- the abi file is now renamed to core/abiversion.h
- remove the .a
- Remove -Bsymbolic-functions from LDFLAGS as it causes libcompiz_core to
be loaded once per plugin when dlopened
- don't run tests, they don't run on headless server anymore
* debian/compiz-core.install:
- contain new libcompiz-core lib
* debian/compiz-kde.install:
- do not ship kde part for now, it's broken upstream
* debian/patches/ubuntu-config.patch:
- default configuration is here now.
* debian/patches/fix_gtk_w_d_crash.patch:
- additional backport for gtk-w-d crash (LP: #930071)
* debian/patches/fix_930412.patch:
- backport to fix keybindings not working (LP: #930412)
* debian/patches/fix_931283.patch:
- trunk commit to fix a crash on shutdown (LP: #931283)
* debian/patches/fix_924736.patch:
- additional fix for getting the shadow active on maximized window
(LP: #924736)
[ Sam Spilsbury ]
* Remove unused plugins, disable tests by default
* debian/patches/ccp_plugin.patch : force load the cpp plugin if not
specified
* debian/patches/workaround_broken_drivers.patch : workaround broken
drivers that do binary detection
* debian/patches/default_drag_key.patch : add a default in case mutter
isn't installed
-- Didier Roche <didrocks@ubuntu.com> Mon, 13 Feb 2012 15:28:06 +0100
compiz (1:0.9.6+bzr20110929-0ubuntu8) precise; urgency=low
* Drop build dependency on libdecoration0-dev (built from this very same source).
-- Matthias Klose <doko@ubuntu.com> Sun, 04 Dec 2011 22:21:08 +0100
compiz (1:0.9.6+bzr20110929-0ubuntu7) precise; urgency=low
* Upload to precise
-- Didier Roche <didrocks@ubuntu.com> Thu, 10 Nov 2011 09:11:57 +0100
compiz (1:0.9.6+bzr20110929-0ubuntu6) oneiric-proposed; urgency=low
* debian/patches/rev_2821_fix_807487.patch:
- unity-window-decorator crashed with SIGSEGV in
g_datalist_id_set_data_full() (LP: #807487)
* debian/patches/rev_2847_bug_796594.patch:
- Window behaviour - pressing the 'restore' window indicator on a
semi-maximised window should return it to the restored state
(LP: #796594)
* debian/patches/rev_2878_bug_865696.patch:
- Windows from other workspaces missing decorations in window spread
(LP: #865696)
* debian/patches/rev_2884_fix_874004.patch:
- When a window is minimized on another workspace it doesn't appear
in the spread (LP: #874004)
* debian/patches/rev_2890_fix_879253.patch:
- Makes the previous patch building and not crashing.
* Add some upstream missing bits from previous fixes:
- debian/patches/fix-864330.patch
- debian/patches/fix-864478.patch
* debian/patches/fix-886978.patch:
- compiz crashes with SIGSEGV in PrivateWindow::configure (LP: #886978)
-- Didier Roche <didrocks@ubuntu.com> Thu, 20 Oct 2011 14:23:52 +0200
compiz (1:0.9.6+bzr20110929-0ubuntu5) oneiric-proposed; urgency=low
* debian/patches/fix-864330.patch:
- fix windows which can have towed moving (LP: #864330)
* debian/patches/fix-864478.patch:
- Window shading is broken (LP: #864478)
-- Didier Roche <didrocks@ubuntu.com> Wed, 12 Oct 2011 10:44:49 +0200
compiz (1:0.9.6+bzr20110929-0ubuntu4) oneiric-proposed; urgency=low
* debian/control:
- don't suggest nvidia-glx, it's part of the old initial packaging
and probably a bad hint on non nvidia system (LP: #844218)
* Cherry-pick upstream patches:
- Windows should not automatically be focused when opened if the focus
is on another application (LP: #748840)
- Launcher - If a spread contains minimised windows, when the spread
exits, the minimised windows momentarily appear on the desktop
before disappearing (LP: #863328)
- reproducible stacking bug in compiz (LP: #869316)
- Click-dragging a window that's stacked above a fullscreen window will
cause it to go underneath the fullscreen window (LP: #869919)
- sometimes the keyboard input doesn't go to the apparently focussed
dialog (LP: #869967)
- Opening mumble can cause it to be stacked above the dash if you
open the dash at the same time (LP: #865863)
- Sometimes configure events are missed and windows move slow as a result
(LP: #866752)
- Workaround ubuntu desktop unity. Mouse at the left side doesn't reveal
launcher (LP: #832150)
-- Didier Roche <didrocks@ubuntu.com> Thu, 06 Oct 2011 17:57:36 +0200
compiz (1:0.9.6+bzr20110929-0ubuntu3) oneiric; urgency=low
* debian/patches/04_fix_insertServerWindow_crash.patch:
- compiz crashed with SIGSEGV in CompScreen::insertServerWindow()
(LP: #857487)
* debian/patches/05_fix_reconfigureXWindow_crash.patch:
- compiz crashed with SIGABRT in raise() (LP: #857738)
-- Didier Roche <didrocks@ubuntu.com> Tue, 04 Oct 2011 13:49:01 +0200
compiz (1:0.9.6+bzr20110929-0ubuntu2) oneiric; urgency=low
* debian/patches/02_fix_autofocus_minimize_window.patch:
- closing a window gives focus to last minimized window (LP: #862719)
* debian/patches/03_fix_configureframe.patch:
- compiz crashed with SIGSEGV in PrivateWindow::configureFrame()
(LP: #861909)
-- Didier Roche <didrocks@ubuntu.com> Tue, 04 Oct 2011 08:29:38 +0200
compiz (1:0.9.6+bzr20110929-0ubuntu1) oneiric; urgency=low
* New upstream snapshot:
- Workspace switcher makes windows lose decorations (LP: #853951)
- compiz crashed with SIGSEGV in PrivateWindow::addWindowStackChanges()
(LP: #861793)
- sometimes, restored window placed too high (LP: #716521)
- can't maximize windows on second monitor and Qt windows displayed in
wrong place (LP: #861341)
* 091_no_use_gnome_but_desktop_file.patch:
- partially committed upstream, no more needed
-- Didier Roche <didrocks@ubuntu.com> Thu, 29 Sep 2011 09:21:42 +0200
compiz (1:0.9.6-0ubuntu1) oneiric; urgency=low
* New upstream release 0.9.6:
- Windows which are marked transients of docks should be treated like docks (LP: #860397)
- Applications which create multiple windows that are transients of each other can be given invalid stack positions (LP: #858625)
- race condition in configureXWindow causes unpredicatable window geometry changes (LP: #860304)
- invisible window when a window is mapped but not yet drawn on by the process mapping it (LP: #860286)
- resizing bugs with xterm (LP: #854725)
- Cannot open a window that starts iconified (LP: #732997)
- maximized windows fail to update their input extents when undecorated (LP: #853734)
- Clicking on a tweet/message link sometimes does not work (LP: #790565)
- crash on closing a window (LP: #856015)
- Windows move to 0,0 on compiz restarts (LP: #858629)
- windows that are decorated while resizing can cause incorrect resize results (LP: #860306)
- remove transient window handling from unity-window-decorator (LP: #856096)
-- Didier Roche <didrocks@ubuntu.com> Wed, 28 Sep 2011 14:15:21 +0200
compiz (1:0.9.5.94+bzr20110919-0ubuntu1) oneiric; urgency=low
* New upstream snapshot:
- "maximized windows fail to update their input extents when undecorated"
(LP: #853734)
- Panel shadow conflicts with Window shadow in Ubuntu Classic Desktop
Session (LP: #731685)
- "unity-window-decorator: When switching between windows, Orca does not
speak the title of the focused window (LP: #724093)
- Dash and launcher appear underneath windows (LP: #805087)
- A minimized window 'remains' behind on the desktop if
/apps/<…>/show_minimized_windows is set to true (LP: #847967)
- compiz and X can disagree on stacking order (LP: #845765)
- Should keep a list last sent and last recv from server (LP: #841727)
- Minimize animation flickr when for maximized apps (LP: #737125)
- Dash and launcher appear underneath windows (LP: #805087)
- Stacking problem when switching between apps with multiple windows
(LP: #802527)
-- Didier Roche <didrocks@ubuntu.com> Thu, 22 Sep 2011 14:49:10 +0200
compiz (1:0.9.5.94+bzr2803-0ubuntu5) oneiric; urgency=low
* debian/compiz-gnome.install:
- install the upgrade profile as well
-- Didier Roche <didrocks@ubuntu.com> Thu, 15 Sep 2011 20:10:48 +0200
compiz (1:0.9.5.94+bzr2803-0ubuntu4) oneiric; urgency=low
* debian/profile_upgrades/com.canonical.unity.unity.02.upgrade:
- upgrade the settings for the expo changes (LP: #837545)
* debian/patches/01_ctrl_alt_*tea*.patch:
- make Ctrl + Alt + T the default in compiz too as if you unity --reset
to reset all the keys in gconf, it will revert the associated key
for metacity in gnome-control-center
-- Didier Roche <didrocks@ubuntu.com> Thu, 15 Sep 2011 19:59:40 +0200
compiz (1:0.9.5.94+bzr2803-0ubuntu3) oneiric; urgency=low
* debian/profile_upgrades/com.canonical.unity.unity.01.upgrade,
debian/compiz-gnome.install:
- upgrade configuration to remove uneeded staticswitcher and add
pause to spread as default for the switcher (LP: #838075)
* debian/control:
- breaks on unpatched libcompizconfig as it would otherwise lead to
a desktop with only "staticswitcher" enabled
-- Didier Roche <didrocks@ubuntu.com> Wed, 14 Sep 2011 17:21:35 +0200
compiz (1:0.9.5.94+bzr2803-0ubuntu1) oneiric; urgency=low
[ David Barth ]
* New upstream release 0.9.5.94
- Merge in change to have a serverWindows () this break the API
- "mumble fix", ie "It is possible to stack windows relative to windows that are destroyed" (LP: #837252)
- fix for "Severe screen corruption after rotate the screen" (LP: #833549)
- Remove inactive API
- Fix for "vp switch causes windows to move further offscreen" (LP: #831987)
- Debug messages removed
- Memory leak fix in gtk and unity window decorators
- Fix further issues with shaped windows mapping/unmapping (rev. 2793)
* removed patches that were integrated into the new upstream release
- debian/patches/100_core-fix-rev-2794.patch
- debian/patches/101_memleak-fix-rev-2794.patch
- debian/patches/102_attrib-fix-rev-2796.patch
- debian/patches/103_driver_workaround.patch
[ Didier Roche ]
* debian/rules, debian/compiz-gnome.install, debian/compiz-keybindings.sed:
- readd and tweak some compiz keys for g-c-c and Gnome integration
This fixes Ctrl + Alt + T to open a terminal (LP: #820266)
-- Didier Roche <didrocks@ubuntu.com> Mon, 12 Sep 2011 08:09:46 +0200
compiz (1:0.9.5.92+bzr2791-0ubuntu1) oneiric; urgency=low
* debian/65compiz_profile-on-session:
- the default profile is "ubuntu" (that fix missed in the vcs it seems)
* debian/compiz-decorator:
- go back to the unity decorator, the unitydialog work got rolled back
* debian/rules:
- don't use gsettings, it needs testing and is not ready for Oneiric
* debian/patches/103_driver_workaround.patch:
- backported new revision from trunk to fix ati binary drivers issue
[ David Barth ]
* Re-apply some distro-patches that were dropped upstream
* debian/compiz-gnome.install:
- remove gsettings schemas
* debian/compiz-core.install:
- add additional decorator files
* debian/libdecoration0.symbols: update
* debian/compiz-core.install: remove references to:
-debian/tmp/usr/bin/simple-decorator
-debian/tmp/usr/bin/decoration_inspector
-debian/tmp/usr/share/simple-decorator/simple-decoration.png
-debian/tmp/usr/share/decoration_inspector/decoration_inspector.xml
* debian/patches/100_core-fix-rev-2794.patch: core fix to avoid decoration
problems
* debian/patches/101_memleak-fix-rev-2794.patch: memleak fix
* debian/patches/102_attrib-fix-rev-2796.patch: fix for window getting lost
when cycling thru workspaces
[ Didier Roche ]
* New upstream release
* debian/control:
- remove the build-dep on cdbs
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 23 Aug 2011 18:19:11 +0200
compiz (1:0.9.5.0-0ubuntu5) oneiric; urgency=low
* Make compiz-dev deps on libdecoration0-dev as compiztoolbox is using it.
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Aug 2011 21:21:23 +0200
compiz (1:0.9.5.0-0ubuntu4) oneiric; urgency=low
* debian/compiz-gnome.gconf-defaults, debian/unity.ini:
- remove Static Application Switcher plugin as now handled by unity.
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Aug 2011 16:28:49 +0200
compiz (1:0.9.5.0-0ubuntu3) oneiric; urgency=low
* debian/control:
- build-dep on boost 46
* debian/65compiz_profile-on-session:
- set ubuntu as the default unity session
-- Didier Roche <didrocks@ubuntu.com> Wed, 10 Aug 2011 10:22:16 +0200
compiz (1:0.9.5.0-0ubuntu2) oneiric; urgency=low
* debian/compiz-decorator:
- use gtk-window-decorator for alpha3 by default. Too many bugs with u-w-d
right now (the side effect is that the decorator isn't removed and we
don't get the invisible resize area anymore)
* debian/compiz-gnome.gconf-defaults, debian/unity.ini
- remove the unity dialogs from oneiric, it's not ready, we won't ship it
for now.
-- Didier Roche <didrocks@ubuntu.com> Mon, 01 Aug 2011 14:38:26 +0200
compiz (1:0.9.5.0-0ubuntu1) oneiric; urgency=low
* New upstream release:
- unity window decorator needs to support different metacity frame types
(LP: #795048)
- firefox window mapped fullscreen gets mapped under gnome-panel
(LP: #800592)
* Switch to dpkg-source 3.0 (quilt) format
* remove all debian/patches/*:
- upstream now directly deliver with our patches
* debian/control:
- replace kdebase-workspace-dev build-dep by kde-workspace-dev
- build on libdecoration0-dev to build the unity window decorator
- make compiz-dev dep on gtk-3
* debian/compiz-plugins-default.install:
- grid is now in -main
* debian/libdecoration0.symbols:
- add new symbols
* debian/patches/01_don_t_init_a11y.patch:
- don't initialize the GAIL and AT bridges when comipz initialize
(LP: #810045)
-- Didier Roche <didrocks@ubuntu.com> Tue, 19 Jul 2011 08:00:29 +0200
compiz (1:0.9.4+bzr20110606-0ubuntu6) oneiric; urgency=low
* debian/control:
- don't build with g-c-c integration (broken with gnome 3)
removed dep on libgnome-window-settings-dev, libgnomeui-dev,
libgnome-desktop-dev
* debian/patches/091_no_use_gnome_but_desktop_file.patch,
debian/rules, debian/compiz-gnome.install:
- don't install anymore previous files, but still build
/usr/share/applications/compiz.desktop for starting compiz with
gnome-session
* debian/65compiz_profile-on-session:
- use DESKTOP_SESSION now
-- Didier Roche <didrocks@ubuntu.com> Thu, 07 Jul 2011 16:15:23 +0200
compiz (1:0.9.4+bzr20110606-0ubuntu5) oneiric; urgency=low
* debian/patches/090_run_gtk_init.patch:
- run gtk_init_check in compiz core (needed for unity and unity dialogs, and
there is no good upgrade story with the current backend to add a new
plugin)
* debian/control:
- add a libgtk-3-dev dep
- breaks against previous unity version (gtk_init should run be once with
ldopen)
- bump standards-version
* debian/compiz-gnome.gconf-defaults, debian/unity.ini:
- add unity dialogs by default (doesn't support upgrade though, need to
reset the profile manually)
-- Didier Roche <didrocks@ubuntu.com> Mon, 04 Jul 2011 18:33:26 +0200
compiz (1:0.9.4+bzr20110606-0ubuntu4) oneiric; urgency=low
* debian/patches/00_bzr_fix_727143.patch:
- Fix unity-window-decorator crashes with SIGSEGV when closing Java
windows (LP: #727143)
-- Didier Roche <didrocks@ubuntu.com> Fri, 24 Jun 2011 10:46:01 +0200
compiz (1:0.9.4+bzr20110606-0ubuntu3) oneiric; urgency=low
* Separate plugins we install by default from others:
- create compiz-plugins-default which is a subpart of what compiz-plugins
depended on
- compiz-plugins install compiz-plugins-default
- compiz, compiz-core, compiz-gnome, compiz-kde now depends on
compiz-plugins-default and recommends compiz-plugins-main-default
- compiz-dev still depends on compiz-plugins as shipping the compiztoolbox
and cube headers
- reshuffle the replaces to handle transitions
* move /usr/share/compiz/kde.xml wrongly set in compiz-plugins to compiz-kde
-- Didier Roche <didrocks@ubuntu.com> Tue, 07 Jun 2011 14:01:18 +0200
compiz (1:0.9.4+bzr20110606-0ubuntu2) oneiric; urgency=low
* debian/rules, debian/compiz-gnome.install:
- generate g-c-c keybindings from new metacity package
- don't generate schema for gconf bindings, not sure we will ship them or
should switch to gsettings
-- Didier Roche <didrocks@ubuntu.com> Mon, 06 Jun 2011 17:58:54 +0200
compiz (1:0.9.4+bzr20110606-0ubuntu1) oneiric; urgency=low
* New bug fix release:
- Switcher window borders are not properly unmapped with
(unity|gtk)-window-decorator (LP: #789580)
- maximized window is displaced (LP: #772612)
- Unity launcher gets visible while screensaver is active (LP: #771391)
- 1 pixel icons in notification-area-applet when compiz is the windows
manager (LP: #767095)
* debian/patches/00_bzr_fix_apps_without_startupid.patch:
- removed: upstream
-- Didier Roche <didrocks@ubuntu.com> Mon, 06 Jun 2011 16:18:08 +0200
compiz (1:0.9.4+bzr20110415-0ubuntu2) natty; urgency=low
* debian/patches/00_bzr_fix_apps_without_startupid.patch:
- from upstream trunk, fix crash on applications removing _NET_STARTUP_ID
(LP: #759363)
-- Didier Roche <didrocks@ubuntu.com> Tue, 19 Apr 2011 11:40:43 +0200
compiz (1:0.9.4+bzr20110415-0ubuntu1) natty; urgency=low
* New upstream snapshot
- Focus problem with Thunderbird (LP: #753951)
- Chromium fullscreen + Alt-TAB confuses the launcher (LP: #757434)
- compiz hangs randomly several times per day (LP: #740126)
* debian/patches/00_*:
- removed as part of upstream tarball
-- Didier Roche <didrocks@ubuntu.com> Fri, 15 Apr 2011 17:08:40 +0200
compiz (1:0.9.4+bzr20110411-0ubuntu2) natty; urgency=low
* 00_bzr_fix_crash_with_some_apps.patch
- Fix inkscape/unison and other applications crashes (LP: #758307)
-- Didier Roche <didrocks@ubuntu.com> Thu, 14 Apr 2011 14:37:39 +0200
compiz (1:0.9.4+bzr20110411-0ubuntu1) natty; urgency=low
* New upstream snapshot, including all 01_bzr* patch:
- compiz crashed with SIGSEGV in PluginClassHandler<DecorWindow, CompWindow,
0>::get() (LP: #743807)
- Animation for Grid Previews is broken (LP: #754088)
- Grid plugin: Maximizing a window from left or right edge loses original
size (LP: #753051)
* add 00_remove_printf.patch: remove debug printf
* 02_add_debug_spewer_for_apport.patch:
- refreshed
-- Didier Roche <didrocks@ubuntu.com> Mon, 11 Apr 2011 13:25:14 +0200
compiz (1:0.9.4+bzr20110407-0ubuntu2) natty; urgency=low
* New upstream snapshot:
- fix unity-window-decorator crashed with SIGSEGV in event_filter_funct
(LP: #711561)
* debian/patches/086_new_grid_defaults.patch:
- change threshold to 15 on sides and 20 on top to work well with the new
animtion
* debian/patches/01_bzr_fix_grid_on_multimonitor.patch,
01_bzr_fix_resize.patch, 01_bzr_fix_grid_premultiply.patch:
- from upstream bzr, fix grid on multimonitor and colors handling
* debian/patches/086_new_grid_defaults.patch,
debian/patches/029_default_options.patch:
- set the resize grid shadow to orange (LP: #752711)
-- Didier Roche <didrocks@ubuntu.com> Thu, 07 Apr 2011 18:06:44 +0200
compiz (1:0.9.4+bzr20110406-0ubuntu1) natty; urgency=low
* new upstream bzr tarball:
- display/size problems with xterm (LP: #748137)
- fix crashes on tcl/tk applications (LP: #741074, #747439)
- fix grab on compose keys (LP: #747323)
- resync stack at regular interval to avoid invisible windows
(LP: #723014, #743011, #736876, #740465, #684590)
- fix weird order in alt + tab (LP: #175874)
- fix crash in gitk (LP: #743011, #741074)
- avoid compiz detection by fglrx driver (LP: #740298)
- Wrong window moves (LP: #741656, #743634)
- Unity Grid is broken for multi-monitor setups (LP: #709221)
- Feature Freeze Exception: Animation for Grid Plugin Previews (LP: #744104)
- unity-window-decorator crashed with SIGSEGV in gdk_window_get_events()
(LP: #725284)
- fix xterm (LP: #692463)
- start the decorator on a secondary screen (LP: #730495)
* debian/patches/090_git_fix_new_invisible_windows.patch,
debian/patches/100_bump_core.h.patch:
- upstreamed
* debian/patches/01_unity_window_decorator.patch
debian/patches/085_add_grid_plugin.patch:
- in bzr upstream tarball
-- Didier Roche <didrocks@ubuntu.com> Wed, 06 Apr 2011 19:37:45 +0200
compiz (1:0.9.4git20110322-0ubuntu5) natty; urgency=low
* debian/patches/080_fix_session_handling.patch:
reverted, seems to break more people that it fixes it. Not commited to
compiz trunk as well
-- Didier Roche <didrocks@ubuntu.com> Thu, 24 Mar 2011 12:03:47 +0100
compiz (1:0.9.4git20110322-0ubuntu4) natty; urgency=low
* 080_fix_session_handling.patch:
- fix respawn on crash (LP: #716462)
-- Didier Roche <didrocks@ubuntu.com> Wed, 23 Mar 2011 23:38:35 +0100
compiz (1:0.9.4git20110322-0ubuntu3) natty; urgency=low
* 90_git_fix_new_invisible_windows.patch:
from git, fix a case with new invisible windows (LP: #741072)
-- Didier Roche <didrocks@ubuntu.com> Wed, 23 Mar 2011 17:36:06 +0100
compiz (1:0.9.4git20110322-0ubuntu2) natty; urgency=low
* debian/patches/01_unity_window_decorator.patch:
- fix frequent crash (LP: #740480)
* debian/compiz-decorator:
- reset the unity window decorator by default
-- Didier Roche <didrocks@ubuntu.com> Wed, 23 Mar 2011 08:55:46 +0100
compiz (1:0.9.4git20110322-0ubuntu1) natty; urgency=low
* New upstream bug fix snapshot:
- Application windows can sometimes fail to display and will
mask regions of the screen (LP: #709461)
- Compiz switcher Alt-Tab order is not predictable - should
maintain LIFO ordering in application switcher (LP: #175874)
- after compiz crashed, gnome-panel isn't mapped again (LP: #711378)
- invisible windows border problem (LP: #710271)
- Compiz thinks you are clicking in an edge window when you
are not (LP: #734250)
- Add test case for invisible window regressions (LP: #736876)
- often can't alt-click-dnd to move the focussed dialog (LP: #711911)
- When windows open for the first time they should not hide (LP: #723878)
- Unity Grid is broken for multi-monitor setups (LP: #709221)
- Pixmaps trashed during animations when window is unmapped (LP: #733331)
- Windows have blank decorations when rapidly closing and
reopening (LP: #733328)
- Unity is not restored on unity/compiz crash: compiz doesn't register
properly with gnome-session (LP: #716462)
* remove the patch taken from upstream
* refresh u-w-d patch with latest upstream work
* debian/compiz-core.install:
- image move to the final destination
* debian/patches/100_bump_core.h.patch:
- bump for ABI breakage
* debian/compiz-decorator:
- use gtk-window-decorator and not unity-window-decorator as it's really
crashy for now (will probably redo an upload tomorrow with a fixed
decorator)
-- Didier Roche <didrocks@ubuntu.com> Tue, 22 Mar 2011 21:45:34 +0100
compiz (1:0.9.4-0ubuntu7) natty; urgency=low
* debian/control:
- breaks on old simple-ccsm until a new one for 0.9 is available
* debian/patches/029_default_options.patch:
- don't enable showing desktop while scale is triggered (LP: #736947)
-- Didier Roche <didrocks@ubuntu.com> Thu, 17 Mar 2011 17:13:32 +0100
compiz (1:0.9.4-0ubuntu5) natty; urgency=low
* debian/patches/029_default_options.patch: (LP: #723273)
- remove Super W change for the "Initiate Window Picker for current
workspace". The default is now compiz default: Shift + Alt + Up
- transforming the Super A change to Super W for "Initiate Window Picker
For All Windows"
* debian/compiz-gnome.gconf-defaults:
- disable Alt + F1/F2 in the gnome-compat plugin for the unity profile only
(those keys are handled by unity itself now)
* debian/source_compiz.py:
- add xorg info in case of crash
-- Didier Roche <didrocks@ubuntu.com> Wed, 16 Mar 2011 19:28:01 +0100
compiz (1:0.9.4-0ubuntu4) natty; urgency=low
* Fix crashes in unity-window-decorator
(LP: #724874, #728563, #728383)
* Fix grid plugin not working with snap (LP: #716313)
-- Didier Roche <didrocks@ubuntu.com> Mon, 07 Mar 2011 16:31:04 +0100
compiz (1:0.9.4-0ubuntu3) natty; urgency=low
* debian/rules:
- don't run unitymtgrabhandles and unityshell by default
-- Didier Roche <didrocks@ubuntu.com> Tue, 01 Mar 2011 13:31:32 +0100
compiz (1:0.9.4-0ubuntu2) natty; urgency=low
* Force libdecoration0 to have the same version than compiz-plugins
* debian/patches/01_unity_window_decorator.patch
- fix a crash in unity-window-decorator (LP: #726063, #725284, #726101)
* Backport some patches from upstream to fix other crashes and bring
support to the unity plugin (LP: #726702)
* debian/compiz-core.install:
png are now installed in /usr/share/compiz
* add the future unity mt plugin by default
-- Didier Roche <didrocks@ubuntu.com> Mon, 28 Feb 2011 20:51:00 +0100
compiz (1:0.9.4-0ubuntu1) natty; urgency=low
* New upstream release:
- Fix no windows receiving the focus if someone got the focus then was
destroyed
- Fix crash when resizing using keybindings
- Fix unresponsive inactive decorations (LP: #703755)
- Fix the long awaited gconf crash (LP: #691561)
- gtk-window-decorator doesn't respect special decoration styles
(LP: #290835)
* debian/compiz-core.links,
debian/source_compiz.py,
debian/compiz-core.install:
- install again a richer apport hook to redirect nux/libunity/unityshell
crash. It also asks the user to redirect unity issues against unity (still
incuding xorg info when needed)
* Removed a bunch of patches either cherry-picked or pushed upstream. With the
other fixes, the gconf workaround is hopefully not needed anymore.
* refresh existing patches to still apply
* debian/control:
- rename dep on compiz-fusion* to compiz*
* debian/patches/085_add_grid_plugin.patch:
- refresh the grid plugin from new release
* debian/patches/086_new_grid_defaults.patch
- separate tweaking the default settings to only have the effect that were
specified:
top -> maximize, left (top or bottom left) -> window half left of the
screen, right (top or bottom right) -> window half right of the screen,
bottom -> do nothing
-- Didier Roche <didrocks@ubuntu.com> Thu, 24 Feb 2011 17:31:29 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu11) natty; urgency=low
* debian/patches/18_really_fix_stacking_issues.patch:
- hopefully, this time, the invisible window is dead (LP: #709461)
-- Didier Roche <didrocks@ubuntu.com> Fri, 11 Feb 2011 13:00:01 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu10) natty; urgency=low
* debian/patches/080_migrate_gconf_from_alpha1.patch
debian/reset-compiz-gconf, debian/compiz-gnome.install:
- remove the additional python wrapper now that people who installed
alpha1 are considerated to be transitionned to the new schema.
* debian/patches/17_fix_stacking_issue.patch:
- backport from upstream. This seems to fix the random invisible window
(LP: #709461)
-- Didier Roche <didrocks@ubuntu.com> Tue, 08 Feb 2011 10:31:06 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu9) natty; urgency=low
* debian/patches/086_fix_unreachable_options_crash.patch:
getOptions is broken at start as some initialized options aren't map when
calling from the core. Use direct call instead (LP: #708812).
Fixes crashes at start.
-- Didier Roche <didrocks@ubuntu.com> Wed, 02 Feb 2011 15:17:02 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu8) natty; urgency=low
* debian/patches/14_fix_empathy_list_vanish.patch:
- fix the buddy list disappearing (LP: #682781)
* debian/patchs/15_hidden_maximized_decoration.patch:
- fix sometimes invisible decoration on maximized window still decorated
* 16_display_unfocused_state.patch:
- fix unfocused state not being displayed properly in the decoration
(LP: #704413)
-- Didier Roche <didrocks@ubuntu.com> Mon, 31 Jan 2011 15:50:17 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu7) natty; urgency=low
* debian/patches/000_workaround_gconfbackend_init_hang.patch:
- readd the workaround. Seems that slow machines really have a problem with
the new init order
-- Didier Roche <didrocks@ubuntu.com> Fri, 28 Jan 2011 19:07:35 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu6) natty; urgency=low
* debian/control:
- compiz-gnome replaces compiz-fusion-plugins-extra (grid gconf schema file
is hosted there) (LP: #708835)
* debian/patches/029_default_options.patch:
- set the spacing to 68 temporary as a workaround to avoid the spread mode
to overlap the launcher (LP: #702822)
-- Didier Roche <didrocks@ubuntu.com> Fri, 28 Jan 2011 15:46:20 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu5) natty; urgency=low
* debian/patches/000_workaround_gconfbackend_init_hang.patch:
- remove the workaround (commented in debian/patches/series). It seems to
work for others without it, I still have it hanging there, but maybe
that's a system issue, let's see if people reports hangs at start.
* debian/patches/060_move_checks_to_compiz.patch:
- adapt to new version
-- Didier Roche <didrocks@ubuntu.com> Thu, 27 Jan 2011 17:42:04 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu4) natty; urgency=low
* debian/patches/000_fix_stacking.patch:
- so awaited patch to fix menu stacking issue
(LP: #693073, #695638, #690461) (congrats smspillaz)
* debian/patches/065_add_bailer_and_detection_plugins.patch:
- remove zenity message, now handled in the session level
* debian/patches/029_default_options.patch:
- set back to opacity to 100 when dragging windows, seems to have a lot of
perf issues on some graphic card. (LP: #703458)
* debian/patches/03_git_fix_maprequest.patch
debian/patches/04_git_fix_override_redirect_window.patch
debian/patches/06_git_fix_unmapped_then_remapped_window.patch
debian/patches/07_git_fix_click_to_focus_issue.patch
debian/patches/08_make_qt_wine_appearing.patch
debian/patches/09_git_valgrind_cleanage.patch
debian/patches/10_git_set_vp_before_window_initialization.patch:
- misc fixes backported from upstream git head. Fixing flash and gnome-panel
crash (LP: #683100, #690461)
* debian/patches/000_workaround_gconfbackend_init_hang.patch:
- adapt to new version
* debian/patches/029_default_options.patch:
- disable ligthning by default on the opengl plugin as it's not really used
and conflict with unity (LP: #703140)
* debian/patches/11_git_fix_windows_jumping.patch
debian/patches/12_fix_warning.patch
debian/patches/13_fix_window_geometries_and_properties.patch:
- last minute fix due to regression introduced by the patch above, fix wrong
geometry and wrong startup position (LP: #707853, #707852)
* debian/patches/085_add_grid_plugin.patch,
debian/rules, debian/control, debian/unity.ini,
debian/compiz-gnome.gconf-defaults
- add to main (as upstream is doing in the git repository) the grid plugin
and activate it by default. Replaces the -extra package with a previous
version
- tweak the default settings to only have the effect that were specified:
top -> maximize, left (top or bottom left) -> window half left of the
screen, right (top or bottom right) -> window half right of the screen
-- Didier Roche <didrocks@ubuntu.com> Thu, 27 Jan 2011 13:05:18 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu3) natty; urgency=low
* debian/patches/01_unity_window_decorator.patch:
- dont dep on system libdecoration but on built one
* debian/control:
- remove circular build-dep on libdecoration0-dev
- build against new libmetacity ABI
-- Didier Roche <didrocks@ubuntu.com> Wed, 19 Jan 2011 17:52:09 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu2) natty; urgency=low
* debian/control:
- temporary depends on libdecoration0-dev as the unity-window-decorator
needs it. The correct fix will need to shuffle the order of build around
and take the current library.
-- Didier Roche <didrocks@ubuntu.com> Fri, 14 Jan 2011 03:17:38 +0100
compiz (1:0.9.2.1+glibmainloop4-0ubuntu1) natty; urgency=low
[ Didier Roche ]
* New upstream release:
- Fixed a high number of wakeups (LP: #681696)
- Fixed links not working in some gtk windows
- Raise the window when it is moved if raise on click is enabled
- Fix crash when loading plugins on the command line
- Fix focus issues on window close and reopen rapidly
- Fix focus issues with multiple X screens
- Glib plugin removed
- Fix bug where not moving the mouse and clicking button 2 or 3 in
scale addon would close the current active window, not the window the
mouse hovers over
- Add unity-window-decorator
- Move window doesn't raise window (LP: #695570)
- gtk.Label <a href> link-activate signal broken with compiz in natty
(LP: #687732)
* debian/patches/060_move_checks_to_compiz.patch:
- remove GNOME failsafe detection as now handled as a session type in
gnome-session
* Remove deprecated or now merge upstream patches:
- 01_backport_trunk_fix.patch
- 002_ship_splited_gconf_cmakeext_files.patch
- 004_packagemode_is_release_debug_for_plugins.patch
- 005_no_glib_plugin.patch
- 017_always_unredirect_screensaver_on_nvidia.patch
- 080_migrate_gconf_from_alpha1.patch
* debian/compiz-gnome.gconf-defaults,
debian/patches/029_default_options.patch:
- new settings for natty. Also set the 2x2 layout by default
* unity-decorator:
- debian/compiz-decorator:
launch unity-compiz-decorator in gnome sessions
- debian/compiz-gnome.install:
install it
- debian/control:
depends on latest metacity having the right extension
- debian/patches/01_unity_window_decorator.patch:
add unity-window-decorator
* debian/patches/02_add_debug_spewer_for_apport.patch:
- new plugin (not activated for now) to get additional info for apport
[ Bryce Harrington ]
* compiz-core.install, compiz-core.links, source_compiz.py:
Replace the compiz apport hook with a link to xorg's apport script.
-- Didier Roche <didrocks@ubuntu.com> Thu, 13 Jan 2011 21:50:27 +0100
compiz (1:0.9.2.1+glibmainloop3-0ubuntu5) natty; urgency=low
* Restore the workaround to avoid crashes (lp: #691561)
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 17 Dec 2010 21:08:43 +0100
compiz (1:0.9.2.1+glibmainloop3-0ubuntu4) natty; urgency=low
* debian/patches/000_workaround_gconfbackend_init_hang.patch:
- drop the workaround, the issue has not been confirmed but the update
broke the menus in unity (lp: #690461)
* debian/patches/060_move_checks_to_compiz.patch:
- adapted regarding previous patch
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 16 Dec 2010 22:19:50 +0100
compiz (1:0.9.2.1+glibmainloop3-0ubuntu3) natty; urgency=low
* debian/patches/080_migrate_gconf_from_alpha1.patch,
debian/reset-compiz-gconf,
debian/compiz-gnome.install:
- temporary wrapper from new gconf path not transitionned from alpha1
(allscreens became screen0). This will reset the current compiz profiles
(LP: #690011)
-- Didier Roche <didrocks@ubuntu.com> Tue, 14 Dec 2010 19:25:03 +0100
compiz (1:0.9.2.1+glibmainloop3-0ubuntu2) natty; urgency=low
* debian/patches/000_workaround_gconfbackend_init_hang.patch:
- workaround in delaying the plugin init as the gconf backend hangs when
trying to contact/launch the gconf daemon. This only happens when you
don't change your current profile, at session start.
* debian/patches/060_move_checks_to_compiz.patch:
- adapted regarding previous patch
-- Didier Roche <didrocks@ubuntu.com> Tue, 14 Dec 2010 02:57:50 +0100
compiz (1:0.9.2.1+glibmainloop3-0ubuntu1) natty; urgency=low
* new glibmainloop branch snapshot:
- fix launching an application set it to the wrong place (LP: #683273)
- Can't resize windows to be displayed on several monitors (LP: #455378)
- Scale All Windows gets its suffixes wrong for a 3x3 layout (LP: #683063)
- Compiz sometimes loses focus when closing some windows (LP: #671459)
- Fix hanging when session exit (LP: #683121)
* debian/patches/000_fix_OOo_crash1.patch
debian/patches/000_fix_OOo_crash2.patch
debian/patches/001_fix_gconf_path.patch
debian/patches/003_more_gconf_parser_fix.patch:
- remove, upstreamed.
* debian/patches/060_move_checks_to_compiz.patch:
- adapt to new version
* debian/patches/01_backport_trunk_fix.patch:
- backport some additional fixes from trunk, otherwise compiz crash at start
* debian/source_compiz.py:
- fix gconf path
* debian/compiz-gnome.gconf-defaults, debian/rules, debian/unity.ini,
debian/patches/030_no_fade_in_staticswicher.patch:
- change order to load fade before staticswichter to avoid the fade effect
when alt + tabbing (LP: #683635)
- add snap and workarounds by default as well
* debian/compiz-gnome.gconf-defaults,
debian/compiz-keybindings.sed,
debian/patches/021_hide_tooltip_on_decorator.patch,
debian/patches/057_update_gnome_bindings.patch:
- update the gconf path from allscreens to screen0 as new gconf path in the
gconf backend
* debian/control:
- handle the ABI breakage with other compiz components
-- Didier Roche <didrocks@ubuntu.com> Mon, 13 Dec 2010 16:38:10 +0100
compiz (1:0.9.2.1+glibmainloop2-0ubuntu4) natty; urgency=low
* debian/patches/065_add_bailer_and_detection_plugins.patch:
- fix the fallback not launching gnome-panel when no 3D support
(LP: #683356, #683531)
* debian/patches/000_fix_OOo_crash{1,2].patch:
- cherry-pick fix crashes with random applications (LP: #675506)
-- Didier Roche <didrocks@ubuntu.com> Wed, 01 Dec 2010 13:10:41 +0100
compiz (1:0.9.2.1+glibmainloop2-0ubuntu3) natty; urgency=low
* debian/rules:
- use our own keybindings with new Compiz wm_name
(note, upstream one faily try to install them ignoring DESTDIR, keep in
mind when fixed to keep ours)
-- Didier Roche <didrocks@ubuntu.com> Mon, 29 Nov 2010 19:37:41 +0100
compiz (1:0.9.2.1+glibmainloop2-0ubuntu2) natty; urgency=low
* debian/rules:
- build with RelWithDebInfo cmake flag to get debug info and release
optimisation
* debian/patches/004_packagemode_is_release_debug_for_plugins.patch:
- when compiz plugin built in "Package" mode, add optimization + debug
symbols for stripping in dbgsym. Thanks RAOF for pointing at it
(LP: #682574)
* debian/patches/005_no_glib_plugin.patch:
- remove glib plugin as conflicting with the glibmainloop branch
* debian/source_compiz.py:
- grab new gconf path in apport bug report
-- Didier Roche <didrocks@ubuntu.com> Mon, 29 Nov 2010 12:23:15 +0100
compiz (1:0.9.2.1+glibmainloop2-0ubuntu1) natty; urgency=low
* new upstream snapshot with glibmm experimental branch:
- Compiz crashes when scrolling in Openoffice (LP: #675506)
- Compiz sometimes loses focus when closing some windows (LP: #671459)
- Fix --replace hang (LP: #680165)
* debian/65compiz_profile-on-session:
- add unity profile to default session
* debian/rules:
- add bailer, detection, regex and animation and fade plugin to both
profiles
- get an optimized plugin default order
* debian/patches/060_move_checks_to_compiz.patch:
- start stripping it down as now we have a detection and bailer plugins
for that. The failsafe session should be moved in the detection plugin.
* debian/patches/055_fix_COMPIZ_DEFAULT_PLUGINS.patch,
debian/patches/056_Preserve-DESTDIR-if-no-override-in-COMPIZ_DESTDIR.patch
debian/patches/057_update_gnome_bindings.patch:
- removed, upstreamed
* debian/patches/065_add_bailer_and_detection_plugins.patch:
- add bailer and detection plugins to fallback to 2D session or run in
degraded mode.
* debian/compiz-gnome.install, debian/unity.ini,
debian/compiz-gnome.gconf-defaults:
- add the unity profile to ini and gconf backend
* debian/patches/001_fix_gconf_path.patch:
- fix the path when generating the gconf keys (compiz-1)
* debian/patches/002_ship_splited_gconf_cmakeext_files.patch:
- ship and link the splited gconf extension schema builder
* debian/control:
- add libglibmm-2.4-dev build-dep and to -dev dep
* debian/patches/003_more_gconf_parser_fix.patch:
- fix parser breakage with some plugins
-- Didier Roche <didrocks@ubuntu.com> Fri, 26 Nov 2010 20:30:56 +0100
compiz (1:0.9.2.1+glibmainloop-0ubuntu3) natty; urgency=low
* debian/rules:
- add gnomecompat as a default plugin (LP: #675774)
- add vpswitch too
* debian/libdecoration0.symbols:
- add a symbol file
* debian/patches/057_update_gnome_bindings.patch:
- update wmname to get the keybindings shown in GNOME capplet
-- Didier Roche <didrocks@ubuntu.com> Thu, 18 Nov 2010 14:35:04 +0100
compiz (1:0.9.2.1+glibmainloop-0ubuntu2) natty; urgency=low
* debian/patches/065_glib_mainloop.patch:
- removed as part of make dist
* debian/control:
- make compiz-dev dep on libglib2.0-dev
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Nov 2010 21:52:26 +0100
compiz (1:0.9.2.1+glibmainloop-0ubuntu1) natty; urgency=low
* New upstream snapshot with glib mainloop support needed for unity compiz
* debian/rules:
- use the ezoom plugin rather than the zoom one
* debian/patches/055_fix_COMPIZ_DEFAULT_PLUGINS.patch,
debian/patches/056_Preserve-DESTDIR-if-no-override-in-COMPIZ_DESTDIR.patch:
- refresh to new upstream snapshot
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Nov 2010 18:20:59 +0100
compiz (1:0.9.2.1-0ubuntu2) natty; urgency=low
* debian/control:
- add missing replaces with latest natty version
-- Didier Roche <didrocks@ubuntu.com> Wed, 10 Nov 2010 10:40:29 +0100
compiz (1:0.9.2.1-0ubuntu1) natty; urgency=low
[ Travis Watkins ]
* debian/patches/010-disable-child-window-clipping.patch,
debian/patches/013-add-cursor-theme-support.patch,
debian/patches/016_call_glxwaitx_before_drawing.patch,
debian/patches/035_ignore_workspaces,
debian/patches/037_fullscreen_stacking_fixes.patch,
debian/patches/061_KWD_stubs.patch,
debian/patches/090_profiling,
- removed as they are applied upstream or obsolete
* debian/patches/017_always_unredirect_screensaver_on_nvidia.patch
debian/patches/018_use_metacity_settings.patch
debian/patches/021_hide_tooltip_on_decorator.patch
debian/patches/029_default_options
debian/patches/060_move_checks_to_compiz.patch
- updated for 0.9 and added DEP-3 comments
* comment debian/patches/014_fix-no-border-window-shadow.patch
* debian/kde4-window-decorator.1:
- renamed kde-window-decorator.1 with name fixups
* debian/compiz-decorator.1,
debian/compiz-core.manpages:
- add compiz-decorator manpage
* debian/compiz.1,
debian/kde4-window-decorator.1:
- refreshed
* debian/compiz-decorator:
- remove support for kde-window-decorator as it no longer exists
* debian/compiz-gnome.gconf-defaults:
- strip down to just gtk-window-decorator defaults, we set the rest in
other places already
* debian/rules:
- switch to debhelper 7 style rules, much easier to understand
* debian/control:
- add cmake and boost build-depends, remove automake
[ Didier Roche ]
* new upstream release
* remerge and adapt travis' work to latest release in natty
* debian/patches/029_default_options.patch:
- retake latest patch and refresh to new version
* debian/patches/060_move_checks_to_compiz.patch:
- remove all plugins and not use the DEFAULT plugin list (just load cpp)
* debian/compiz-gnome.gconf-defaults:
- keep some needed value. With gsetting port, we should only push default,
don't be evil and avoid patching the schema
* debian/control:
- bump all dep to 0.9 for compiz components
- add libboost-serialization1.42-dev build-dep
- add some sanity check as well (lintian warnings)
- additional dependency on compiz-plugins from compiz-dev
* debian/patches/015_optional-fbo.patch:
- removed as the new version doesn't seem to handle that natively
* debian/patches/014-fix-gtk-window-decorator-no-argb-crash.patch:
- removed as seems to be upstreamed
* debian/patches/015_draw_dock_shadows_on_desktop.patch:
- removed from now, let's revert to upstream behavior
* debian/patches/020_disable_gdk_gtk_disable_deprecated:
- removed, upstream
* disable debian/patches/021_hide_tooltip_on_decorator.patch for now
* debian/compiz-core.install,debian/compiz-dev.install,
debian/compiz-gnome.install:
- changed the path according to new upstream layout and remove some
libraries and re-ad /usr/share/gnome/wm-properties/compiz.desktop to
make the gnome-window-properties work again (LP: #269805)
- compiz-gnome install gconf schemas, not compiz-plugins
- also some cleanage to make things easier to read
* debian/compiz-kde.manpages:
- adapt to kde4 new manpage
* convert to quilt format
* remove debian/patches/562027-fix-gconf-ftbfs.patch,
debian/patches/635258-fix-pixmap-size-calculations.patch,
debian/patches/111_link-kde-window-decorator-with-x11:
- not relevant in the context
* debian/compiz-kde.install, debian/compiz-plugins.install:
- put likde in compiz-kde package
* debian/rules:
- a lot of cleanage, try to make the rule easy to read
- force to build in release mode
- compile the default plugins list
- force copying to cmake install dir. Don't use findcompiz_install which is
broken upstream when using DESTDIR and COMPIZ_DESTDIR
- add some switch to ensure we build in package mode not in debug one
* add debian/patches/055_fix_COMPIZ_DEFAULT_PLUGINS.patch:
- use COMPIZ_DEFAULT_PLUGINS from debian/rules
* debian/patches/056_Preserve-DESTDIR-if-no-override-in-COMPIZ_DESTDIR.patch:
- make compiz respect env variable
* debian/patches/065_glib_mainloop.patch:
- added but not activated yet: need some work with tip of compiz 0.9.2.1
-- Didier Roche <didrocks@ubuntu.com> Tue, 19 Oct 2010 12:23:51 +0200
compiz (1:0.8.6-0ubuntu12) natty; urgency=low
* Merge patch 110_link-gtk-windows-decorator-with-xcursor into
013-add-cursor-theme-support as that's where the bug was introduced.
* Remove bogus dh_install -pcompiz-wrapper call in rules leaving a
debhelper.log over; presumably left over from the removal of this package.
-- Loïc Minier <loic.minier@ubuntu.com> Mon, 18 Oct 2010 00:13:28 +0200
compiz (1:0.8.6-0ubuntu11) natty; urgency=low
* New patch, 110_link-gtk-windows-decorator-with-xcursor, fix configure.ac
to require the xcursor pkg-config file/libs etc. for gtk/window-decorator
which calls XcursorSetTheme(); fixes FTBFS.
* New patch, 111_link-kde-window-decorator-with-x11, fix configure.ac to
require the x11 pkg-config file/libs etc. for kde/window-decorator which
calls XGetWMProtocols(); fixes FTBFS.
-- Loïc Minier <loic.minier@ubuntu.com> Sun, 17 Oct 2010 23:19:57 +0200
compiz (1:0.8.6-0ubuntu10) natty; urgency=low
* New patch, 635258-fix-pixmap-size-calculations, from commit
0f95c41a0aa175ddf7947ba18b01f746c95594a9 in the 0.8 branch; thanks
Paul Donohue; LP: #635258.
-- Loïc Minier <loic.minier@ubuntu.com> Sun, 17 Oct 2010 22:02:58 +0200
compiz (1:0.8.6-0ubuntu9) maverick; urgency=low
* debian/compiz-gnome.gconf-defaults: /apps/gwd/metacity_theme_opacity
is a float (1.0), not int (1).
-- Anders Kaseorg <andersk@mit.edu> Fri, 24 Sep 2010 21:09:32 -0400
compiz (1:0.8.6-0ubuntu8) maverick; urgency=low
* debian/compiz-gnome.gconf-defaults
- move the shadow 4 pixels down, in order to reduce the shadow between
menubaritems and the menu frame (LP: #634417)
* debian/patches/029_default_options.patch
- get rid of the transparency on the unfocused window frame. (LP: #634417)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 21 Sep 2010 16:59:27 -0400
compiz (1:0.8.6-0ubuntu7) maverick; urgency=low
* 060_move_checks_to_compiz.patch: Remove Sandybridge bridge devices from
the blacklist, they were preventing compiz from loading on machines
with discreet GPU's as well. (LP: #644372)
-- Robert Hooker <robert.hooker@canonical.com> Tue, 21 Sep 2010 09:46:36 -0400
compiz (1:0.8.6-0ubuntu6) maverick; urgency=low
* Update 060_move_checks_to_compiz.patch to add Intel Sandybridge pci id's
to the blacklist, the mesa dri driver claims it instead of swrast so
compiz tries to use it but does not work currently. (LP: #633376)
-- Robert Hooker <robert.hooker@canonical.com> Wed, 08 Sep 2010 13:10:11 -0400
compiz (1:0.8.6-0ubuntu5) maverick; urgency=low
* Fix LP: #622195 - dh_install can't rename files. In trying to do so,
compiz-wm.desktop is installed one folder too deep, breaking
gnome-{appearance,window}-properties
- update debian/compiz-gnome.install
-- Chris Coulson <chris.coulson@canonical.com> Thu, 26 Aug 2010 21:33:53 +0100
compiz (1:0.8.6-0ubuntu4) maverick; urgency=low
* debian/control: Argh, also reduce the libcompizconfig0 dependency to the
version that actually rebuilt against 0.8.6.
-- Martin Pitt <martin.pitt@ubuntu.com> Tue, 03 Aug 2010 10:40:30 +0200
compiz (1:0.8.6-0ubuntu3) maverick; urgency=low
* debian/control: Reduce libcompizconfig0 breaks to << the version that
actually rebuilt against 0.8.6.
-- Martin Pitt <martin.pitt@ubuntu.com> Tue, 03 Aug 2010 00:13:46 +0200
compiz (1:0.8.6-0ubuntu2) maverick; urgency=low
* control: Don't build-depends on libdbus-qt-1-dev, it's deprecated
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 02 Aug 2010 17:49:08 +0200
compiz (1:0.8.6-0ubuntu1) maverick; urgency=low
* New upstream release:
- Maintenance release.
- Various focus and window placement fixes.
- Fixed handling of windows that have a (server-drawn) border.
- Fixed handling of window icons that have a colour depth of 1 bit.
- Added KDE 4.4 support to KDE4 window decorator.
* debian/control:
- Build-depend on libx11-dev, libxext-dev
* debian/patches/020_fix_focus.patch:
* debian/patches/030_from_git_crash_fix_multiscreen.patch:
* debian/patches/031_from_git_fix_gnome_keybindings.patch:
* debian/patches/070_remove_deprecated_gtk_symbol.patch:
- Applied upstream
-- Robert Ancell <robert.ancell@canonical.com> Tue, 27 Jul 2010 17:23:05 +0200
compiz (1:0.8.4-4ubuntu1) maverick; urgency=low
* Merge with Debian unstable, remaining Ubuntu changes:
* debian/control:
- Build-depend on cdbs for strip-schemas
- Add version on libmetacity-dev build-depend
- Add KDE build-depends
- Add metacity-common build-depends (for getting keybindings)
- Add gnome-control-center-dev build-depends (may not be required)
- Add libx11-xcb-dev build-depend
- Add Vcs-Bzr link
- compiz provides x-window-manager
- compiz-core does not provide mesa-utils
- compiz-core breaks old version of compiz-fusion-plugins-main and
compiz-fusion-plugins-extra
- compiz-core replaces old compiz-wrapper
- compiz-dev depends on libx11-xcb-dev
- compiz-gnome and compiz-kde depend on compiz-plugins and their backends
* debian/rules:
- Compile a subset of the plugins
- Do not build the kconfig plugin (in favior of libcompizconfig)
- Build with --enable-gconf
- Build translations/language packs
- Install compiz-decorator wrapper
- Install apport hook
- Copy keybindings from metacity
- Exclude some files from compiz-plugins
* debian/compiz-core.install:
- Don't install plugin files
- Install apport hooks
* debian/compiz-decorator:
- Script to run the appropriate decorator for the current session
* debian/compiz-dev.install:
- Install XSLT file
* debian/compiz-gtk.*:
- Not required, merged into compiz-gnome
* debian/compiz-gnome.gconf-defaults:
- Set Ubuntu defaults
* debian/compiz-gnome.install:
- Rename wm-properties desktop file, don't know why
- Install gnome-control-center keybindings files
- Add files from compiz-gtk
* debian/compiz-gnome.manpages:
- Add files from compiz-gtk
* debian/compiz-keybindings.sed:
- Script to add keybindings
* debian/compiz-plugins.install:
- Install XML files for the plugins
* debian/source_compiz.py:
- Apport hook
* debian/patches/012_snap-by-default.patch:
- Not enabled, not sure if we want this in Ubuntu
* debian/patches/021_hide_tooltip_on_decorator.patch:
- Make decorator tooltips optional
* debian/patches/029_default_options.patch:
- Updated with additional changes over Debian
* debian/patches/090_profiling.patch:
- Timing profiling patch (disabled)
* debian/watch:
- Update download location
-- Robert Ancell <robert.ancell@canonical.com> Thu, 17 Jun 2010 10:12:18 +1000
compiz (0.8.4-4) unstable; urgency=low
* Drop libdbus-qt-1-dev from Build-Depends, as kindly requested by
Michael Biebl (Closes: #581788). Qt3 is going away, we already use
--disable-kde and --enable-kde4 to that effect, so libdbus-qt-1-dev
can be kicked away.
* Add libglu1-mesa-dev, needed for <GL/glu.h>.
-- Cyril Brulebois <kibi@debian.org> Sun, 16 May 2010 20:44:51 +0200
compiz (0.8.4-3) unstable; urgency=high
[ Brice Goglin ]
* Remove Thierry Reding from Uploaders, closes: #572540.
[ Cyril Brulebois ]
* Add patch to prevent FTBFS due to deprecated GDK/GTK stuff:
* 020_disable_gdk_gtk_disable_deprecated (Closes: #577352).
* Add myself to Uploaders.
* Set urgency to high due to RC bugfix.
-- Cyril Brulebois <kibi@debian.org> Thu, 15 Apr 2010 03:29:29 +0200
compiz (0.8.4-2) unstable; urgency=low
* Bump the dh_makeshlibs call to (>= 0.8.4)
-- Sean Finney <seanius@debian.org> Thu, 11 Feb 2010 23:08:16 +0100
compiz (0.8.4-1) unstable; urgency=low
* New upstream release.
[ Sean Finney ]
* Fix FTBFS: "gconf/gconf-client.h: No such file or directory"
- thanks to Sebastian Harl <tokkee@debian.org> (Closes: #562027, #562438)
* Add compiz-decorator symlink for compatibility with ubuntu systems.
* Make all patches DEP-3 formatted.
* No longer keep the ubuntu patches logically separated from ours
* Enable 010-disable-child-window-clipping.patch, as there's an ABI bump.
Also, massage the patch a little so that it applies cleanly.
* Synchronize ubuntu patches from 0.8.4-0ubuntu10
* 015_draw_dock_shadows_on_desktop.patch:
- change decoration plugin to draw dock shadows only on the
desktop window instead of on top of all other windows
* 016_call_glxwaitx_before_drawing.patch:
- Call glXWaitX before we start drawing to make sure X is done
handling rendering calls. Suggested by Michel Dänzer to ensure
we don't have any rendering glitches.
* 017_always_unredirect_screensaver_on_nvidia.patch:
- always unredirect gnome-screensaver when using nvidia, workaround
for LP #160264 while still disabling unredirect fullscreen
windows for nvidia users
* 020_fix_focus.patch:
- give back the focus to the previous focused window (LP: #455900)
* 030_from_git_crash_fix_multiscreen.patch:
- merge commit 24dea72a395071b533dcf66b2eef37b20522cbba to fix
crash with wobbly windows in a multi screen setup
* 031_from_git_fix_gnome_keybindings.patch:
- fix gnome keybindings (terminal key)
* 060_move_checks_to_compiz.patch:
- add all relevant checks from compiz-manager to compiz itself
Compiz already checks for almost everything it needs so there is no
need to check twice.
* 061_KWD_stubs.patch (updated locally to remove fuzz):
- Horrible hack to define empty stubs for some new pure virtual
functions in KWD::Window, to fix FTBFS.
* The following patches have been updated to cleanly apply:
* 014-fix-gtk-window-decorator-no-argb-crash.patch
* 015_optional-fbo.patch
* ubuntu/010-disable-child-window-clipping.patch
* ubuntu/013-add-cursor-theme-support.patch
* ubuntu/018_use_metacity_settings.patch
* ubuntu/029_default_options
* ubuntu/035_ignore_workspaces
* ubuntu/037_fullscreen_stacking_fixes.patch
* ubuntu/049-damage-report-non-empty.patch
* ubuntu/050_stacking.patch
* Transition from compiz-manager to compiz binary for /usr/bin/compiz
* Remove all patches to the embedded compiz-manager script
* 028_compiz_manager_blacklist
* 029_compiz_manager_decoration.patch
* 029_compiz_manager_nvidia_settings.patch
* 030_compiz_manager_multi_display
* 031_compiz_manager_extra_blacklist_support
* 032_compiz_manager_add_gnomecompat
* 033_compiz_manager_xdg_dirs
* 042-compiz-manager-default-plugin
* 046_compiz_manager_second_screen.patch
-- Sean Finney <seanius@debian.org> Thu, 11 Feb 2010 20:17:39 +0100
compiz (0.8.2-6) unstable; urgency=low
* Add libxcursor-dev build-dep as required by patch
ubuntu/013-add-cursor-theme-support; also let compiz-dev pull it as it's
referenced in the .pc file; closes: #525240, #524943.
* Add a virtual compiz-core-abiversion-2009xxyy provides to compiz-core to
allow for strict dependencies of plugins on the compiz-core
CORE_ABIVERSION they were built with, as read from include/compiz-core.h.
* Use the new Breaks feature for the compiz-core -> libcompizconfig0 dep.
This makes upgrades smoother than Conflicts.
* Bump the compiz-core Breaks on libcompizconfig0 to 0.8.0 as the last
CORE_ABIVERSION bump happened between 0.7.8 and 0.8.0; closes: #523514.
* Add a missing libxml2-dev build-dep and update the compiz-dev deps to
match what compiz.pc requires and use the same versions as the build-deps.
* Build-dep on libcairo2-dev instead of libcairo-dev.
* Add missing libstartup-notification0-dev (>= 0.7) bdep and version the
compiz-dev dep to match.
* Use the same version in the libdecoration0-dev dep on libxrender-dev as
in the libxrender-dev bdep.
-- Loic Minier <lool@dooz.org> Fri, 24 Apr 2009 15:15:24 +0200
compiz (0.8.2-5) unstable; urgency=low
* remove obsolete --enable-gconf-dump configure option
* add build-dependency on libgnomeui-dev to fix new FTBFS (Closes: #524446)
* add Vcs-Git and Vcs-Browser headers to debian/control
-- Sean Finney <seanius@debian.org> Sun, 19 Apr 2009 18:45:39 +0200
compiz (0.8.2-4) unstable; urgency=low
* disable child window clipping patch: it breaks the abi
-- Sean Finney <seanius@debian.org> Sat, 11 Apr 2009 18:55:35 +0200
compiz (0.8.2-3) unstable; urgency=low
* import of some ubuntu patches for 0.8.2 with some modifications
- see debian/patches/ubuntu for patches
- see debian/patches/series for which patches are used and which
are not.
- includes patch to copy gnome/metacity keyboard shortcuts
(Closes: #503442, #454922).
-- Sean Finney <seanius@debian.org> Sat, 11 Apr 2009 14:26:06 +0200
compiz (0.8.2-2) unstable; urgency=low
* upgrading compiz-manager backed out some locally modified but not
quilt-using changes in paths. so, new patch compiz-debian-paths.patch
should fix this (closes: #522985).
-- Sean Finney <seanius@debian.org> Wed, 08 Apr 2009 23:13:19 +0200
compiz (0.8.2-1) unstable; urgency=low
* new upstream release.
* update location of compiz-gnome desktop file
* add new app desktop file for compiz to compiz-core
* update build-deps to use kdebase-workspace-dev
* add build-dep on libxslt1-dev
* disable kde3 decorator and enable kde4 decorator
* include a gbp.conf for use with git-buildpackage
* bump the libdecoration0 shlibs version to 0.8.2
* update compiz-manager to upstream's 223180bf
* Obsolete patches now removed:
- disable-libx11-xcb-support.patch
- xscreensaver-damage-fix.patch
- compiz-manager-posixly-correct.patch
* Lintian fixes:
- update Standards-Version to 3.8.1
- add misc:Depends to compiz
-- Sean Finney <seanius@debian.org> Wed, 01 Apr 2009 00:00:10 +0200
compiz (0.7.6-8) unstable; urgency=low
* Don't run glib-gettextize, to fix FTBFS caused by intltoolize changes
(closes: #518909).
* Rebuild against new metacity (closes: #518910).
-- Julien Cristau <jcristau@debian.org> Mon, 09 Mar 2009 18:44:13 +0100
compiz (0.7.6-7) unstable; urgency=medium
* refresh quilt patches to apply with no fuzz/offsets.
* add fglrx driver to compiz-manager whitelist (closes: #495539).
-- Sean Finney <seanius@debian.org> Mon, 01 Sep 2008 08:00:56 +0200
compiz (0.7.6-6) unstable; urgency=high
* backport commit aed97c441881d9c382c7865d0305fc8f884c10ac to fix the
problems that seem to come up with certain xscreensavers the Right Way.
(closes: #483170).
-- Sean Finney <seanius@debian.org> Sat, 30 Aug 2008 11:39:17 +0200
compiz (0.7.6-5) unstable; urgency=high
* Brown paper bag: remove shlibs.local and libdecoration0.shlibs, call
dh_makeshlibs with the proper flags to actually fix dependencies on
libdecoration0.
-- Julien Cristau <jcristau@debian.org> Fri, 01 Aug 2008 18:57:30 +0200
compiz (0.7.6-4) unstable; urgency=low
[ Julien Cristau ]
* Bump libdecoration0 shlibs to >= 0.7.6 (closes: #485775).
[ Sean Finney ]
* Include fix for posixly-incorrect usage of ENV (closes: #484225).
-- Julien Cristau <jcristau@debian.org> Sat, 26 Jul 2008 21:44:51 +0200
compiz (0.7.6-3) unstable; urgency=high
* Add a versioned Replaces on older compiz-plugins to compiz-gtk, to prevent
file conflicts. Thanks to Daniel Burrows for the report (closes: #485436).
-- Sean Finney <seanius@debian.org> Mon, 09 Jun 2008 18:39:57 +0200
compiz (0.7.6-2) unstable; urgency=low
* Add Conflicts against xscreensaver-data-extra as an unfortunately
heavy handed workaround to prevent graphical lockups with an as-of-yet
unknown bug somewhere in the screensaver-compiz-driver-xserver chain.
(See: #483170, and other bugs/urls referenced in that report)
-- Sean Finney <seanius@debian.org> Sat, 07 Jun 2008 14:22:15 +0200
compiz (0.7.6-1) unstable; urgency=low
* New upstream release
[ Sean Finney ]
* Special-case the gconf and kconfig plugins to go into the -gtk and -kde
packages respectively, as they are semi-obsoleted by the ccp plugin anyway
and cause potentially problematic dependencies. Thanks to Fabiano
Manoel de Andrade for the report (closes: #482150).
* Add versioned Conflicts on libcompizconfig0 to compiz-core, to reflect
ABI breakage without introducing a circular dependency. Thanks
to Mike Hommey for the report (closes: #482646).
* Make debian/rules stricter about catching uninstalled files.
* Make debian/rules able to build/clean/build again.
* Misc cleanups in debian/rules.
* Lintian fixes:
- Spelling correction in debian/control
- Fix for build-depends-on-1-revision for x11proto-gl-dev
[ Julien Cristau ]
* Add Depends: libxslt1-dev, libxml2-dev to compiz-dev, as they are required
by compiz.pc (closes: #482192).
-- Sean Finney <seanius@debian.org> Mon, 26 May 2008 23:04:24 +0200
compiz (0.7.4-1) unstable; urgency=low
* New upstream release
* Incorporate xcb-disabling patch from
http://gitweb.opencompositing.org/?p=users/3v1n0/compiz-patches
-- Sean Finney <seanius@debian.org> Sun, 18 May 2008 19:15:13 +0200
compiz (0.6.3~git20080115.0ea58487-1) unstable; urgency=low
* New upstream (git snapshot) release. Refreshed quilt patches.
* Contains upstream fix for kde-window-decorator problems with not properly
mapping/rendering titlebars. closes: #458464, #460186.
* Remove timestamps from quilt patches (package maintainers, you
should put QUILT_NO_DIFF_TIMESTAMPS=1 in your ~/.quiltrc).
* add compizconfig-settings-manager to Suggests field for compiz.
* don't blindly assume that the nvidia-settings program is present.
patch: compiz-manager-nvidia-settings-optional.patch. closes: #463645.
-- sean finney <seanius@debian.org> Tue, 26 Feb 2008 20:08:31 +0100
compiz (0.6.3~git20071222.061ff159-1) unstable; urgency=low
* New upstream (git snapshot) release. Refreshed quilt patches.
* Remove build-dependency on libfuse-dev, since we explicitly disable the
fuse plugin and it causes FTBFS on non-linux arches. It should also make
backporting easier (closes: #451149, #455516).
* compiz-manager-posixly-correct.patch: fix from Brian Carlson to get
compiz-manager to run when POSIXLY_CORRECT is set (always pass
options before arguments closes: #456628).
* Remove libmetacity entry from shlibs override (closes: #455515) Thanks to
Rober Millan for noticing this.
* Remove outdated info in README.Debian for compiz-core (closes: #454340).
* lintian:
- Standards-Version to 3.7.3
- libdecoration0-dev to section libdevel
-- Sean Finney <seanius@debian.org> Sat, 22 Dec 2007 12:01:54 +0100
compiz (0.6.3~git20071208.25941d14-1) unstable; urgency=low
[Sean Finney]
* New upstream (git snapshot) release.
* Remove autofoo generated content and create/remove it as part of the
standard build process instead.
* Similarly, add Build-Deps on autoconf and similar stuff.
* Remove the old/buggy compiz.wrapper script and now use Kristian Lyngstol's
compiz-manager script as a drop-in replacement for it. This should fix
numerous problems with plugin settings and window decorators not behaving
properly. specifically, it closes: #449389, #390929, #400583, #440095.
it also closes: #446901, #447345 closes: #393501, #445026.
* Update copyright file accordingly.
-- Sean Finney <seanius@debian.org> Sun, 16 Dec 2007 17:29:03 +0100
compiz (0.6.3~git20071104.c9009efd-1) unstable; urgency=low
[Sean Finney]
* New upstream (git snapshot) release.
* Disable the (unused?) fuse plugin, explicitly enable the gconf plugin
* lintian: update FSF address
[Brice Goglin]
* Make compiz dependencies on compiz-* packages versioned,
closes: #440494.
* Make the build-dependency on libfuse-dev require >= 2.7.0.
-- Sean Finney <seanius@debian.org> Sun, 04 Nov 2007 21:20:17 +0100
compiz (0.5.2-2) unstable; urgency=low
* oops, shipping copies of a few .h and .pc files in both compiz-dev
and libdecoration0-dev. fixed.
-- sean finney <seanius@debian.org> Wed, 29 Aug 2007 21:06:29 +0200
compiz (0.5.2-1) unstable; urgency=low
* New upstream release.
* updated/massaged various quilt patches
* make sure configure is executable at build time. seems that this
causes problems in a pbuilder environment
* new build-dependencies on libxml-parser-perl and xsltproc
* modify compiz-dev.install to install all the extra .h/.pc files
being generated in this new version.
-- sean finney <seanius@debian.org> Wed, 22 Aug 2007 22:58:09 -0700
compiz (0.5.0.dfsg-3) UNRELEASED; urgency=low
* Restore all ${misc:Depends} in debian/control so that for instance
compiz-gtk and compiz-plugins gets the required dependency on gconf2
(for gconf-schemas in postinst), closes: #436432.
-- Brice Goglin <bgoglin@debian.org> Tue, 07 Aug 2007 15:10:49 +0200
compiz (0.5.0.dfsg-2) unstable; urgency=low
* Drop the now obsolete Source-Version in favour of binary:Version in
debian/control.
* Replace --strict-binding and --use-cow documentation by --loose-binding
and --use-root-window respectively in the compiz.real manpage. Thanks
Michael Gilbert. (Closes: 432920)
* Rearrange and add missing command-line options in the compiz.real manpage.
* compiz-gtk needs to conflict with libmetacity0 (<< 1:2.15.21) because of
an incompatible ABI change. This should really be fixed in libmetacity. A
shlibs bump should do the trick. (Closes: 425631)
* Add upstream patch that fixes non-tfp textures (icons, cube top image
etc.) on big endian platforms. Thanks Michel Dänzer.
* Run dh_makeshlibs with -V. (Closes: 425463)
* Use package-local shlibs override file to depend on libmetacity0 (>=
1:2.15.21) and libdecoration0 (>= 0.5.0). Thanks Sune Vuorela.
-- Thierry Reding <thierry@gilfi.de> Fri, 13 Jul 2007 11:25:13 +0200
compiz (0.5.0.dfsg-1) unstable; urgency=low
[ Thierry Reding ]
* New upstream development release:
- Remove stencil buffer requirement.
- Focus stealing prevention support.
- Better occlusion detection and more efficient rendering.
- Added plugins:
+ blur: blur windows and contents behind translucent windows
+ fuse: map compiz options to a file-system
+ ini: flat file configuration backend
+ inotify: file change notification
+ video: composited video interface for efficient playback
* Forward-port patches:
- Dropped 012_debian-kde-includes-dir.patch, no longer needed.
- Dropped 013_set-qtdir-fallback.patch, no longer needed.
- Refresh other patches.
* Use compiz' default set of plugins.
* Add build-dependency on libfuse-dev needed by the fuse plugin.
* No longer conflict with metacity >= 2.15.21, now that metacity 2.18 is in
unstable. (Closes: #411012)
* Add symlink to the compiz-core README to the compiz package.
(Closes: #408605)
* Drop po/*.gmo and kde/window-decorator/*.moc.cpp from the original
tarball. Add a note to debian/copyright.
* Pass QTDIR=/usr to the configure script so that the moc can be found.
* shlibs bump for libdecoration because it contains added symbols.
Thanks Julien Cristau.
[ Julien Cristau ]
* Don't remove .cvsignore files and autogen.sh in clean.
-- Thierry Reding <thierry@gilfi.de> Sat, 19 May 2007 17:34:51 +0200
compiz (0.3.6-1) experimental; urgency=low
[ Thierry Reding ]
* New upstream release:
+ Drop 002_tfp-server-extension.patch, obsolete.
+ Drop 005_glfinish.patch, fixed upstream.
+ Refresh 011_snap-by-default.patch.
* Replace build-dependency on libdbus-1-dev by libdbus-glib-1-dev.
* Add build-dependency on kdebase-dev and libdbus-qt-1-dev for the KDE
window decorator.
* Add patch 012_debian-kde-includes-dir to correctly detect the KDE include
directory on Debian systems.
* Add patch 013_set-qtdir-fallback to set the QTDIR variable to /usr if it
has not explicitly been set before. This allows the configure script to
correctly detect the moc compiler.
* Add the compiz-kde package which provides a window decorator for KDE.
Closes: #390338.
* Add the libdecoration0 and libdecoration0-dev packages. libdecoration0 is
needed by both Gtk and KDE window decorators while libdecoration0-dev can
be used to write additional decorators.
* Add patch 015_optional-fbo which adds a command-line option for disabling
the use of FBOs (work around buggy drivers). Add the --no-fbo option to
command-line in the compiz wrapper.
* Remove the --strict-binding and --use-cow options from the command-line in
the compiz wrapper. These are now the defaults.
* Add png and svg to the list of default plugins. They are needed to load
PNG and SVG images (e.g. for the cube's top face).
* Check whether the GLX_EXT_texture_from_pixmap extension is available in
direct or indirect rendering contexts. If it is available only in indirect
rendering contexts, force compiz to use indirect rendering.
-- David Nusinow <dnusinow@debian.org> Wed, 17 Jan 2007 23:46:34 -0500
compiz (0.3.4-1) experimental; urgency=low
* New upstream release:
+ Drop 012_metacity-theme-support.patch, fixed upstream.
+ Drop 013_fix-default-plugins.patch, fixed upstream.
+ Refresh all other patches.
* Don't use xsfbs anymore until there's an easy way to keep it up-to-date
in git repositories. For now using quilt works just fine.
* Drop build-dependencies on automake1.9 and libtool because we don't run
the complete autotools stack anymore.
* Add missing dependencies to the compiz-dev package. It needs to pull in
all packages required by its pkgconfig file.
* Add a dependency on libgl1-mesa-dev | libgl-dev to compiz-dev because
compiz.h includes files provided in that package.
-- Thierry Reding <thierry@gilfi.de> Sun, 26 Nov 2006 00:36:39 +0100
compiz (0.3.2-1) experimental; urgency=low
* New upstream release. Closes: #396770.
+ Remove 010_snap-inverted.patch, applied upstream.
+ Refreshed other patches to apply cleanly again.
+ Remove gtk-window-decorator.schemas and use the one provided by
upstream (gtk/window-decorator/gwd.schemas).
* Targetted at experimental until the release of etch.
-- Thierry Reding <thierry@gilfi.de> Tue, 14 Nov 2006 02:36:40 +0100
compiz (0.2.2-1) unstable; urgency=low
[ Thierry Reding ]
* New upstream release:
+ Drop 013_dont-fail-if-theme-not-found.patch, applied upstream.
* Make 012_metacity-theme-support also patch the configure script, not only
configure.ac.
* Add 013_fix-default-plugins.patch which fixes upstream's handling of the
default plugins configuration variable.
* Make all plugins that were enabled in previous versions default plugins so
compiz' behaviour doesn't change. Drop the 'water' plugin because our X
server does not support it yet.
* Drop --disable-kde from the configure flags because it is now disabled by
default.
* Add a dependency on mesa-utils to compiz-core to provide glxinfo that is
needed by the compiz wrapper. Thanks Per Bojsen.
Closes: #393113.
* Conflict with libmetacity0 (>= 1:2.15.21) because it would currently make
gtk-window-decorator segfault.
[ David Nusinow ]
* Add myself to uploaders. Thierry is still the primary maintainer.
-- David Nusinow <dnusinow@debian.org> Mon, 6 Nov 2006 23:13:41 -0500
compiz (0.2.0-1) unstable; urgency=low
[ Thierry Reding ]
* New upstream release.
+ Drop 011_plane-plugin-schema.patch, applied upstream.
+ Drop 012_freedesktop-schema.patch, applied upstream.
* Replace 010_snap-by-default by the upstream patch 010_snap-inverted and
add 011_snap-by-default to enable snapping by default.
* Add 012_metacity-theme-support.patch which uses an older version of the
metacity library for theme support so that compiz can be built for Debian
unstable.
* Install a schemas file for the Gtk window decorator which is used to
enable the use of metacity themes.
* Suggest nvidia-glx (>= 1.0.9625-1). (Closes: #390326).
* Add code to the compiz wrapper to handle the NVIDIA GLX implementation
Closes: #390814.
* No longer build static versions of the plugins.
* Remove .la files manually because they are not needed.
* Clean up build-dependencies:
+ Remove unnecessarily versioned build-dependencies.
+ Tighten the build-dependency on libxcomposite-dev to (>= 1:0.3-2).
Closes: 390304, 390416.
* Add a manpage documenting the compiz wrapper.
* Check if the gconf plugin is installed before trying to load it in the
wrapper.
* Enable building the gconf-dump plugin.
* Add a README file to the compiz-core package.
* List copyright holders and contributors in the copyright file.
Closes: #392422.
* Add 013_dont-fail-if-theme-not-found.patch which will make compiz use its
default theme if the metacity theme cannot be found.
* Make compiz-gtk suggest gnome-themes so people can take advantage of the
metacity theme support.
[ David Nusinow ]
* Tighten up all the X library build-depends by explicitly using current
versions. Thanks aj.
-- David Nusinow <dnusinow@debian.org> Fri, 13 Oct 2006 16:22:17 -0400
compiz (0.0.13+git20060928-2) unstable; urgency=low
* Change the maintainer field to the Debian X Strike Force.
* Add myself to the uploaders field.
* Move compiz.{docs,install,manpages} to compiz-core.{docs,install,manpages}
so the installed files end up in the correct package.
* Rename compiz.1 to compiz.real.1, because it's actually documenting the
real compiz binary.
-- Thierry Reding <thierry@gilfi.de> Fri, 29 Sep 2006 09:24:30 +0200
compiz (0.0.13+git20060928-1) unstable; urgency=low
* Initial release. (Closes: #352151)
* Install the compiz schema during postinst and removes it during prerm
(using dh_gconf).
* Add patches by Kristian Høgsberg to make compiz work on AIGLX:
+ 002_tfp-server-extension.patch
+ 005_glfinish.patch
* No longer build the compiz-kde package, because it is unusable.
* Add gtk-window-decorator.1 manpage.
* Install the window settings configuration plugin into the right location
(/usr/lib/libgnome-window-settings1/libcompiz.so).
* Bump build-dependency on libxcomposite-dev (>= 0.3) because it provides
the XComposite{Get,Release}OverlayWindow functions.
* Install a compiz wrapper as /usr/bin/compiz to call compiz.real with
required arguments (load gconf plugin).
* Add 010_snap-by-default.patch to turn snapping on by default.
* Add a versioned build-dependency on x11proto-gl-dev (>= 1.4.8-1) to make
sure compiz gets built with the correct opcodes for the GLX_EXT_tfp
extension.
* Add build-dependency on libmetacity-dev, which is needed for metacity
theme support.
* Add the compiz-gtk package containing the former gnome-window-decorator.
The compiz-gnome package provides the files necessary to integrate compiz
and compiz-gtk with the GNOME desktop environment.
* Add a build-dependency on libxinerama-dev, needed to build compiz with
support for the xinerama extension.
* Revise the compiz.1 manpage.
* Rename the compiz package to compiz-core and make compiz a meta-package
pulling in everything necessary to run compiz from within GNOME.
* Add 011_plane-plugin-schema.patch by Eugene Konev gconf settings
for the plane plugin.
* Add 012_freedesktop-schema.patch that fixes a typo in compiz.schema.in.
-- Thierry Reding <thierry@gilfi.de> Fri, 29 Sep 2006 07:56:05 +0200
|