~vanvugt/compiz-plugins-main/fix-915236

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
Sam Spilsbury <sam.spilsbury@canonical.com>	2011-07-14

    Bump VERSION

Sam Spilsbury <sam.spilsbury@canonical.com>	2011-07-14

    Update NEWS for 0.9.5.0

Sam Spilsbury <sam.spilsbury@canonical.com>	2011-07-07

    Add VERSION file (0.9.5.0)

Sam Spilsbury <sam.spilsbury@canonical.com>	2011-03-14

    Don't try to delay the unreparent event and also use new core API

Sam Spilsbury <sam.spilsbury@canonical.com>	2011-02-24

    Revert "Set fx if were animating towards the left"
    
    This reverts commit 2cf4ee07185da6c1b873c3df783e10509dbc8187.
    
    There is probably a better way to do this, but it needs to be looked into
    later. For now just let the compiler spew at us

Sam Spilsbury <sam.spilsbury@canonical.com>	2011-02-24

    Set fx if were animating towards the left

Merge: b167f70 cfa722a
Sam Spilsbury <smspillaz@gmail.com>	2010-10-23

    Merge branch 'master' of git+ssh://git.opencompositing.org/git/compiz/plugins/animation

Sam Spilsbury <smspillaz@gmail.com>	2010-10-23

    Cleanup (static analysis)

Scott Moreau <oreaus@gmail.com>	2010-09-28

    Don't require composite since opengl already does.

Jay Catherwood <jay.catherwood@gmail.com>	2010-08-24

    Make grid methods public for MultiAnim

Jay Catherwood <jay.catherwood@gmail.com>	2010-08-23

    Only call drawGeometry on current animation

Jay Catherwood <jay.catherwood@gmail.com>	2010-08-22

    Revert "Don't call drawGeometry multiple times"
    
    This reverts commit 4a65645bd389914ce6f319f5d3214f6ed2be343d.

Jay Catherwood <jay.catherwood@gmail.com>	2010-08-22

    Don't call drawGeometry multiple times
    
    in a MultiAnim. The window is already drawn n times by
    different paintWindow calls.

Sam Spilsbury <smspillaz@gmail.com>	2010-08-18

    Add re-entry guards

Danny Baumann <dannybaumann@web.de>	2010-08-17

    Change to "window_animation" event

Danny Baumann <dannybaumann@web.de>	2010-08-17

    Don't fill in fields if no animation is running

Sam Spilsbury <smspillaz@gmail.com>	2010-08-17

    Add window_animation compiz event, so other plugins can track animations to windows

Sam Spilsbury <smspillaz@gmail.com>	2010-08-17

    Revert "Remove PAINT_WINDOW_NO_CORE_INSTANCE_MASK bit if we are animating a window"
    
    This reverts commit 55f2578b907349e361cf3b485787d912cf2f6592.

Sam Spilsbury <smspillaz@gmail.com>	2010-08-17

    Remove PAINT_WINDOW_NO_CORE_INSTANCE_MASK bit if we are animating a window

Sam Spilsbury <smspillaz@gmail.com>	2010-08-17

    Fixup multianim code, only increment unmap count on BeforeUnmap notification and include multi.h

Jay Catherwood <jay.catherwood@gmail.com>	2010-08-14

    Correct number of animations

Merge: a05c7cb ef1e50b
Jay Catherwood <jay.catherwood@gmail.com>	2010-08-11

    Merge branch 'master' of git://anongit.compiz.org/compiz/plugins/animation

Sam Spilsbury <smspillaz@gmail.com>	2010-08-12

    Split animation.h into files

Sam Spilsbury <smspillaz@gmail.com>	2010-08-12

    Add MultiAnim class, this class allows animations to draw multiple
    copies of a window
    
    The class is a template class, so to use it you'll need to create
    a class which represents a single copy of your window which you
    want to animate, and then create a new animation class which inherits:
    
        public MultiAnim <YourAnim, numberOfCopies>
    
    The class automatically hands off virtual function calls to your
    animation's class. In order to determine which copy of the window
    you are animating, you can call:
    
        MultiAnim <YourAnim, numberOfCopies>::getCurrAnimationNumber (AnimWindow *);

Jay Catherwood <jay.catherwood@gmail.com>	2010-07-22

    Fix animations not firing at times.
    
    A porting bug had the animation plugin checking for currently active
    window plugins and effects in the screen section, which would cause
    animations to sometimes not initiate. This puts the check into the
    correct place

Jay Catherwood <jay.catherwood@gmail.com>	2010-07-22

    Initialize pw->mPluginActive correctly

Merge: 422f3ad 56f0c23
Sam Spilsbury <SmSpillaz@gmail.com>	2010-05-25

    Merge branch 'master' of git+ssh://git.compiz.org/git/compiz/plugins/animation

Sam Spilsbury <SmSpillaz@gmail.com>	2010-05-11

    Fix possible crash

Sam Spilsbury <smspillaz@gmail.com>	2010-04-13

    Don't animate windows during kdecompat slide effect.
    
    Forward port of 67255a1e933f44d85c86cb877bc21378a709a33f to master

Erkin Bahceci <erkinbah@gmail.com>	2010-02-06

    Don't animate notify-osd.

Erkin Bahceci <erkinbah@gmail.com>	2010-02-06

    Fix close animations.

Erkin Bahceci <erkinbah@gmail.com>	2009-12-25

    Fix rare crash on animation start.

Erkin Bahceci <erkinbah@gmail.com>	2009-12-24

    Add some Point and Point3d operators.

Erkin Bahceci <erkinbah@gmail.com>	2009-12-24

    Disable error message for now.
    
    (since it's unnecessarily printed at startup when
    an option string is used).

Erkin Bahceci <erkinbah@gmail.com>	2009-12-16

    Fix invisible dropdown menu when it's reopened while it's still closing.

Erkin Bahceci <erkinbah@gmail.com>	2009-12-14

    Fix an issue with closing minimized windows.
    
    Minimized windows wouldn't get destroyed fully and removed from
    screen's window list if a close animation was selected.

Erkin Bahceci <erkinbah@gmail.com>	2009-12-06

    Fix animation artifacts.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-28

    Fix crash.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-28

    Various extension-related changes.

Dennis Kasprzyk <onestone@compiz-fusion.org>	2009-11-18

    Track core changes.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-17

    Fix deceleration direction for zoom, glide, magic lamp, and sidekick.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-15

    Fix typo.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-14

    Fix crash when a window closes during focus animation.
    
    Partial forward-port of d6ec1392b04de16420593f65c1a4d957a570f0e6.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-14

    Prevent focus animation also when ring, shift, scale ends.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-13

    Prevent focus animation after switching windows, by waiting longer.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-07

    Add max grid size param.
    
    Not used yet.

Erkin Bahceci <erkinbah@gmail.com>	2009-11-05

    Revert part of the last commit.
    
    This fixes the issue with ccsm dialogs.

Erkin Bahceci <erkinbah@gmail.com>	2009-10-19

    Fix some issues with closing windows.

Erkin Bahceci <erkinbah@gmail.com>	2009-10-18

    Fix uninitialized variable.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-27

    Fix uninitialized variables.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-22

    Increase start countdown to avoid open anim. for already opened windows.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-22

    Fix uninitialized member variables.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-12

    Disable painting functions when not needed.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-12

    Make destructor virtual.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-12

    Remove allocation of unused char array.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-11

    Fix another dodge crash.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-11

    Fix crash on going fullscreen in evince with dodge selected.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-02

    Fix sign warnings.

Erkin Bahceci <erkinbah@gmail.com>	2009-08-02

    decoration -> decor

Erkin Bahceci <erkinbah@gmail.com>	2009-07-30

    Add library linker flag.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-24

    Various minor optimizations.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-18

    Clean up.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-18

    Fix freeze when unshading during shade animation.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-18

    Fix lack of animations with all-default settings.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-17

    Improve magic lamp performance (reduce damaged area).
    
    The difference can be seen by using the showrepaint plugin.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-16

    Optimize magic lamp, dream, rollup, wave, curved/hor. fold.
    
    These grid-model based effects have two grid objects per grid row,
    which have the same computed y coordinates. This commit makes
    the right-hand side object copy over those values from the
    left-hand side object on the same row instead of recomputing
    the same values.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-15

    Speed up bounding box calculation for magic lamp.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-14

    Various code safety improvements.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-14

    Fix lack of focus animation.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-13

    Fix crash.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-13

    Initial C++ port. Dodge and magic lamp changes.
    
    - New dodge mode: all windows moving (made the default).
    - Fixed dodge artifacts/weirdness showing up in certain situations.
    - Magic Lamp renamed to Magic Lamp Wavy.
    - Vacuum renamed to Magic Lamp, allowed for minimize (made the default).
    - Separated restack stuff (dodge and focus-fade) from animation core.

Erkin Bahceci <erkinbah@gmail.com>	2009-07-13

    Initial setup for compiz++ port.

Erkin Bahceci <erkinbah@gmail.com>	2009-04-18

    Prevent (un)minimize anim. for hidden (switcher) windows.

Kristian Lyngstol <kristian@bohemians.org>	2009-02-07

    Fix warning CORRECTLY

Kristian Lyngstol <kristian@bohemians.org>	2009-02-07

    Fix warning (int != void... sigh).

Erkin Bahceci <erkinbah@gmail.com>	2009-02-06

    Remove unused variables.

Erkin Bahceci <erkinbah@gmail.com>	2008-12-21

    Allow model engine use in extensions. Expose more functions.

Erkin Bahceci <erkinbah@gmail.com>	2008-11-25

    Fix occasional crash with dodge (bug 1080).

Erkin Bahceci <erkinbah@gmail.com>	2008-11-07

    Fix artifacts with non-animated closing windows.

Danny Baumann <dannybaumann@web.de>	2008-11-06

    Fix memory leak.

Erkin Bahceci <erkinbah@gmail.com>	2008-10-02

    Dodge closer.

Erkin Bahceci <erkinbah@gmail.com>	2008-10-02

    Don't focus-fade or dodge if only shadows overlap.

Erkin Bahceci <erkinbah@gmail.com>	2008-10-02

    Fix minimize/restore inconsistency with skip-taskbar windows (bug 1049).

Erkin Bahceci <erkinbah@gmail.com>	2008-09-24

    Don't damage window region at the end of close/minimize/shade.
    
    Slightly improves performance by not damaging the full window region
    at the end of close, minimize, and shade animations.

Merge: 21e18d3 4fa639c
Erkin Bahceci <erkinbah@gmail.com>	2008-09-21

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2008-09-21

    Improve performance with some animations.
    
    This change mainly improves (on minimize) curved/horiz.fold, dream, glide, and
    (on open/close/minimize) zoom and sidekick, by damaging a smaller region.
    The damage region was being computed as the bounding box of the current and
    the last drawing boxes. This was unnecessary as we just need the union of
    those two boxes. This change implements that.

Danny Baumann <dannybaumann@web.de>	2008-09-17

    Fix potential memleak.

Danny Baumann <dannybaumann@web.de>	2008-09-17

    Prevent animations for switcher window by default.

Erkin Bahceci <erkinbah@gmail.com>	2008-09-16

    Track libcompizconfig changes.

Erkin Bahceci <erkinbah@gmail.com>	2008-09-09

    Reorder groups and subgroups in metadata.

Erkin Bahceci <erkinbah@gmail.com>	2008-09-07

    Remove unused attribute.

Erkin Bahceci <erkinbah@gmail.com>	2008-09-06

    Remove unnecessary includes.

Merge: 89f0827 bcaa862
Erkin Bahceci <erkinbah@gmail.com>	2008-09-01

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2008-09-01

    Fix potential crash with wave/curved/horiz.fold.

Merge: 9dc5ca4 3e8d7df
Danny Baumann <dannybaumann@web.de>	2008-09-01

    Merge branch 'master' of git+ssh://maniac@git.opencompositing.org/git/fusion/plugins/animation

Danny Baumann <dannybaumann@web.de>	2008-09-01

    Track core changes.

Merge: 63b5597 b62f74d
Danny Baumann <dannybaumann@web.de>	2008-09-01

    Merge branch 'master' of git+ssh://maniac@git.opencompositing.org/git/fusion/plugins/animation

Danny Baumann <dannybaumann@web.de>	2008-08-31

    Fini display options properly.

Erkin Bahceci <erkinbah@gmail.com>	2008-08-29

    Fix crash when extension is disabled during animation.
    
    This happened with animations provided by extension plugins.

Erkin Bahceci <erkinbah@gmail.com>	2008-08-28

    Fix dodge regression.

Danny Baumann <dannybaumann@web.de>	2008-08-28

    Fix typo in animation name.

Erkin Bahceci <erkinbah@gmail.com>	2008-08-26

    Allow extensions. Move some effects to animationaddon.
    
    * Change effect and random effect options from int to string.
    
    * Allow other plugins to extend the animation plugin to provide new
      animation effects.
    
    * Remove particle and polygon engines, along with the effects
      airplane, beamup, burn, domino, explode, fold, leafspread, and skewer.
      These are now provided by the new animationaddon plugin.
    
    * Simplify some option-related code and remove CompScreen parameter
      where there is also a CompWindow parameter.

Erkin Bahceci <erkinbah@gmail.com>	2008-08-21

    Fix multiple output problem in curved/horiz.fold/wave.

Erkin Bahceci <erkinbah@gmail.com>	2008-08-17

    Rearrange some code in focusfade.

Erkin Bahceci <erkinbah@gmail.com>	2008-08-17

    Fix wrong opacity during focusfade with trailfocus.

Erkin Bahceci <erkinbah@gmail.com>	2008-08-06

    Fix blur/reflex/neg conflicts with wave/dream/horizfold/curvedfold.
    
    * Modifications for wave, dream, horizfold, curvedfold to avoid using
    the Q texture coordinate, which was causing conflicts with blur/reflex/neg.
    
    * Amplitude option changes for these effects due to their new implementations.
    
    * Plus some code refactoring.

Erkin Bahceci <erkinbah@gmail.com>	2008-07-18

    Fix a crash during focus fade.
    
    Specifically while a window that was in a "focus chain" was being "finished",
    it was still being left in the chain. This commit fixes that.

Danny Baumann <dannybaumann@web.de>	2008-07-18

    Always return TRUE after sucessfully processing screen option changes.

Erkin Bahceci <erkinbah@gmail.com>	2008-07-16

    Reduce CPU use in magiclamp, dream, wave, rollup, horiz/curvedfold.
    
    This commit optimizes these animations to avoid doing the same things
    over and over again for every model object.

Erkin Bahceci <erkinbah@gmail.com>	2008-07-15

    Remove unnecessary parameter.

Erkin Bahceci <erkinbah@gmail.com>	2008-07-15

    Reduce CPU usage in non-dodge/focusfade animations.
    
    The walker interface is only necessary for dodge and focus fade animations,
    but it was being used for all of them. This commit fixes that.

Erkin Bahceci <erkinbah@gmail.com>	2008-06-30

    Damage window region if it's killed during animation.
    
    This probably fixes the occasional gksu artifacts (bug 949).

Erkin Bahceci <erkinbah@gmail.com>	2008-06-21

    Plug mem leak.

Erkin Bahceci <erkinbah@gmail.com>	2008-06-12

    Fix excess damaging in burn/beamup.

Danny Baumann <dannybaumann@web.de>	2008-06-09

    Use icon geometry stored in CompWindow struct.

Danny Baumann <dannybaumann@web.de>	2008-06-08

    Plug mem leak.

Danny Baumann <dannybaumann@web.de>	2008-06-07

    Plug mem leaks.

Erkin Bahceci <erkinbah@gmail.com>	2008-05-09

    Fix crash during magic lamp animation (bug 932).

Erkin Bahceci <erkinbah@gmail.com>	2008-05-04

    Prevent dodging of nonmatching windows (like toolbars).

Erkin Bahceci <erkinbah@gmail.com>	2008-04-29

    Restore shade model (bug 919).

Erkin Bahceci <erkinbah@gmail.com>	2008-04-29

    Use more realistic lighting in animations.
    
    For animations like explode, leaf spread, etc., side faces of polygon objects
    were being painted with the same shade as the front face. This changeset
    enables more accurate lighting in those animations using correct side face
    normals. Also we now allow polygon objects with 0 thickness. Airplane normals
    are removed as side face normals are not necessary for 0-thickness objects.

Danny Baumann <dannybaumann@web.de>	2008-04-22

    Optimizations.

Erkin Bahceci <erkinbah@gmail.com>	2008-04-21

    Fix all possible freezes for good.
    
    This adds a cycle check so that a cycle doesn't happen anymore during
    focus animations, which was the source of all the freezes. Specifically
    there was still a freeze that happened in some cases with gobby with
    dodge set as the focus animation, and this is fixed now.

Erkin Bahceci <erkinbah@gmail.com>	2008-04-21

    Simplify the last commit.

Erkin Bahceci <erkinbah@gmail.com>	2008-04-21

    Fix freeze (bug 906).

Dennis Kasprzyk <onestone@opencompositing.org>	2008-04-04

    CMake build file.

Dennis Kasprzyk <onestone@opencompositing.org>	2008-04-03

    Makefile update.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-29

    Fix artifacts in Rollup animation.

Merge: 25f20f4 4d561a9
Erkin Bahceci <erkinbah@gmail.com>	2008-03-16

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2008-03-16

    Fix 1st unminimize anim. after compiz (re)start.
    
    Windows that were in minimized state when compiz is (re)started are being
    animated with the open animation instead of the unminimize animation when
    unminimized the first time. This fixes that bug, so that unminimize
    animation is played for such windows on the first unminimize.

Dennis Kasprzyk <onestone@opencompositing.org>	2008-03-14

    Makefile update.

Merge: a95ae39 762e18c
Erkin Bahceci <erkinbah@gmail.com>	2008-03-14

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2008-03-14

    Fix crash due to last commit (e.g. with razr).

Dennis Kasprzyk <onestone@opencompositing.org>	2008-03-14

    Makefile update.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-12

    Use core changes in Animation. Refactor some code.
    
    Also take multiple texture units into account and add more comments.

Merge: ed1c60b bea31b8
Danny Baumann <dannybaumann@web.de>	2008-03-12

    Merge branch 'master' of git+ssh://maniac@git.opencompositing.org/git/fusion/plugins/animation

Danny Baumann <dannybaumann@web.de>	2008-03-12

    Makefile update

Erkin Bahceci <erkinbah@gmail.com>	2008-03-11

    Use better gksu/logout window match.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-08

    Cancel focus fade properly on no overlap.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-08

    Prevent focus fade when windows don't overlap.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-08

    Clean up.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-08

    Remove unused variable.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-08

    Refactor code.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-08

    Fix slight jump in the middle of magic lamp anim.

Erkin Bahceci <erkinbah@gmail.com>	2008-03-08

    Use regex for logout window.

Erkin Bahceci <erkinbah@gmail.com>	2008-02-27

    Remove unnecessary switcher window workaround.

Erkin Bahceci <erkinbah@gmail.com>	2008-02-26

    Group utility with tooltip, remove from minimize matches.
    
    Utility windows should be distinguished from normal windows by default.
    It's more suitable to group them together with tooltips and notifications.

Erkin Bahceci <erkinbah@gmail.com>	2008-02-24

    Make sidekick symmetric.

Erkin Bahceci <erkinbah@gmail.com>	2008-02-23

    Fix crash by mismatch in anim selection (bug 761).
    
    3 columns in "Animation Selection" were already being checked for mismatch.
    This adds a check for the 4th column "options" and updates the error message.

Danny Baumann <dannybaumann@web.de>	2008-02-19

    Damage bounding box only if not finishing.

Erkin Bahceci <erkinbah@gmail.com>	2008-02-10

    Fix broken focus fade / dodge for dialogs.
    
    Fixes broken focus animations for child windows like dialog, utility, ...

Erkin Bahceci <erkinbah@gmail.com>	2008-02-10

    Safety measure against circular focus chains.

Erkin Bahceci <erkinbah@gmail.com>	2008-02-10

    Fix focus freeze with xine setup window.

Erkin Bahceci <erkinbah@gmail.com>	2008-02-07

    Fix animation artifacts.
    
    Fixes damage problems with razr/domino by taking the rotation axis offset
    into consideration, and possibly with other effects by removing unnecessary
    ending lastBB update.

Erkin Bahceci <erkinbah@gmail.com>	2008-02-05

    Clarification.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-27

    Fix bug 381: Dark decoration textures in 3D effects.
    
    This fixes the problem of dark window decoration textures in
    airplane, domino, explode, fold, leaf spread, razr, and skewer effects.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-25

    Fix possible freeze.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-25

    Remove unnecessary return value and code.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-24

    Always make animations progress.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-24

    Properly abort failed animation.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-23

    Fix an occassional freeze.
    
    Resets stacking related info (for focus effects) upon open, close,
    (un)minimize events. Lack of this was the likely cause of a rare freeze
    with focus fade effect.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-23

    Refactor and add a pixmap check for close event.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-23

    Fix finite freeze w/ superkaramba after monitor standby.
    
    Some system monitor applications like superkaramba widgets
    (create and) destroy an (invisible) window every second, which
    was triggering an unnecessary addWindowDamage in Animation
    plugin for those windows. When the monitor is in stand-by mode,
    compiz doesn't redraw the screen, causing these (potential)
    closing animations to be delayed until the user returns
    leading to high cpu usage or a (finite) freeze at that time.
    This fix prevents the problem by not calling addWindowDamage
    for such windows.

Dennis Kasprzyk <onestone@opencompositing.org>	2008-01-23

    Makefile update.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-11

    Remove unnecessary variable.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-10

    Optimize Burn and Beamup.

Erkin Bahceci <erkinbah@gmail.com>	2008-01-09

    Fix possible crash (bug 714).

Erkin Bahceci <erkinbah@gmail.com>	2007-12-25

    Fix drawing of polygon effects only on current cube side.

Erkin Bahceci <erkinbah@gmail.com>	2007-12-25

    Don't draw burn/beamup particles on all cube sides.

Erkin Bahceci <erkinbah@gmail.com>	2007-12-23

    Fix freeze after Switcher usage (bug 705).
    
    Fixes the freeze by properly cleaning all stacking related variables after
    Switcher is used to restack windows.

Erkin Bahceci <erkinbah@gmail.com>	2007-12-10

    Fix crash on cleanup. Should fix bug 671.

Merge: f5e33cd f112f5f
Erkin Bahceci <erkinbah@gmail.com>	2007-12-09

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2007-12-09

    Handle possible null pointer. Should fix bug 667.

Merge: da88cf5 47b445c
Danny Baumann <dannybaumann@web.de>	2007-10-27

    Merge branch 'master' of git+ssh://maniac@git.opencompositing.org/git/fusion/plugins/animation
    
    Conflicts:
    
animation.c           

Danny Baumann <dannybaumann@web.de>	2007-10-24

    Use CompVector.

Danny Baumann <dannybaumann@web.de>	2007-10-24

    Correct arguments.

Danny Baumann <dannybaumann@web.de>	2007-10-24

    resetToIdentity is no longer present.

Danny Baumann <dannybaumann@web.de>	2007-10-24

    Complete using core matrix functions.

Danny Baumann <dannybaumann@web.de>	2007-10-24

    Use core's matrix functions.

Erkin Bahceci <erkinbah@gmail.com>	2007-10-22

    Make sure dodging windows get one last damage.

Erkin Bahceci <erkinbah@gmail.com>	2007-10-22

    Fix focus anim freeze when quickly alternating focus.

Erkin Bahceci <erkinbah@gmail.com>	2007-10-22

    Cleanup, indent.

Erkin Bahceci <erkinbah@gmail.com>	2007-10-22

    Fix focus fade with multiple utility windows (e.g. gobby).

Erkin Bahceci <erkinbah@gmail.com>	2007-10-22

    Walker interface for focus effects.

Erkin Bahceci <erkinbah@gmail.com>	2007-10-13

    Prevent focus anim after Switcher when zoom is low.
    
    This prevents the unintended focus animation that happens right after
    Switcher is done, when Switcher's zoom option value is close to 0.

Danny Baumann <dannybaumann@web.de>	2007-09-19

    Initialize as->output to a valid output structure.
    This prevents a crash in the first preparePaintScreen call because as->output is assigned in paintOutput.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-15

    Multi-monitor: Optimize damaging and fix perspective.
    
    Now the damaged region should be minimal on multiple monitors too.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-13

    Fix polygon-based glide damaging with multiple monitors.
    Polygon perspective correction on multiple monitors need to be fixed
    for a more proper solution.

Danny Baumann <dannybaumann@web.de>	2007-09-07

    Track core changes.

Jigish Gohil <cyberorg@prime.cyberorg.info>	2007-09-06

    typo correction, thanks Excentrik

Erkin Bahceci <erkinbah@gmail.com>	2007-09-03

    Play better with bs (focus effects). Small optimization.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-03

    Further optimize dodge.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-02

    Fix crash (Avoid possibly creating damage box with negative size).

Erkin Bahceci <erkinbah@gmail.com>	2007-09-02

    Quick fix for multi-monitor damaging (should be further optimized).

Erkin Bahceci <erkinbah@gmail.com>	2007-09-02

    Fix glide transform (and damaging).

Erkin Bahceci <erkinbah@gmail.com>	2007-09-01

    Fully damage window for magic lamp with menus.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-01

    Fix 1 pixel line artifact.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-01

    Correct wave direction.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-01

    Equalize dream duration with others. Move constants.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-01

    Remove unnecessary variable.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-01

    Fix initial damage of dodging windows.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-01

    Do shadow damaging for future polygon-based focus effects.

Erkin Bahceci <erkinbah@gmail.com>	2007-09-01

    Fix dodge damaging.

Erkin Bahceci <erkinbah@gmail.com>	2007-08-31

    Initialize variable.

Merge: 6925ab6 24f4fdd
Erkin Bahceci <erkinbah@gmail.com>	2007-08-31

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2007-08-31

    Fix explode tessellation.

Erkin Bahceci <erkinbah@gmail.com>	2007-08-31

    Reduce animation cpu/gpu usage by damaging minimally.
    
    At each animation step, damage only the parts of the screen that should
    be updated instead of the whole screen. The smaller the animated window
    and the larger the screen resolution, the higher the performance improvement
    will be (especially tooltip and menu animations will benefit significantly).
    This changeset affects all animation effects except Airplane.

Danny Baumann <dannybaumann@web.de>	2007-08-30

    Fix typo.

Danny Baumann <dannybaumann@web.de>	2007-08-30

    Revert accidential change.

Danny Baumann <dannybaumann@web.de>	2007-08-30

    Track core changes.

Merge: ed8489f 0d046f7
Erkin Bahceci <erkinbah@gmail.com>	2007-08-20

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Dennis Kasprzyk <onestone@opencompositing.org>	2007-08-20

    const char*

Erkin Bahceci <erkinbah@gmail.com>	2007-08-19

    Remove unused variables.

Erkin Bahceci <erkinbah@gmail.com>	2007-08-18

    Remove unused code.

Roland Baer <roland@verifysoft.net>	2007-08-15

    Fix missing check on animEnsureModel().

Erkin Bahceci <erkinbah@gmail.com>	2007-08-11

    Make perceived durations same across all effects.
    (Adjusts domino, razr, explode, and leafspread duration multiplier).

Erkin Bahceci <erkinbah@gmail.com>	2007-08-11

    Set default Fold direction to Out.

Erkin Bahceci <erkinbah@gmail.com>	2007-08-07

    Fix gnome 2.19.X shutdown dialog & dimming layer handling.
    (Animate shutdown dialog, but not dimming layer).

Erkin Bahceci <erkinbah@gmail.com>	2007-08-07

    Make airplane follow pointer during close animation.

Danny Baumann <dannybaumann@web.de>	2007-08-07

    Fix some compiler warnings.

Dennis Kasprzyk <onestone@opencompositing.org>	2007-08-06

    Makefile update.

Erkin Bahceci <erkinbah@gmail.com>	2007-08-06

    Fix Airplane path end point.

Erkin Bahceci <erkinbah@gmail.com>	2007-08-05

    Better error message.

Erkin Bahceci <erkinbah@gmail.com>	2007-08-05

    Update first-effect-setting constant.

Erkin Bahceci <erkinbah@gmail.com>	2007-08-05

    Tweak Skewer defaults.

Carlo Palma <carlopalma@salug.it>	2007-08-05

    New effect: Airplane

Tomasz Kolodziejski <tkolodziejski@gmail.com>	2007-08-05

    New effects: Fold & Skewer

Danny Baumann <dannybaumann@web.de>	2007-07-31

    Use event name from structure rather than a hardcoded one for comparison.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-29

    Clean up.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-29

    Some polygon engine additions for complex effects.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-29

    Clean up commented code.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-29

    Fix screen lock window handling after workaround changes.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-29

    Fix KDE menus.
    Please do more testing before removing stuff ;)

Danny Baumann <dannybaumann@web.de>	2007-07-28

    Remove animation workarounds (handled by workarounds plugin).

Erkin Bahceci <erkinbah@gmail.com>	2007-07-28

    Don't animate during Shift. Get rid of code repetition.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-27

    Get rid of a constant.

Roland Baer <roland@verifysoft.net>	2007-07-27

    Minor memory leak fixes.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-27

    Set min explode thickness to 1. Fix descriptions.
    This prevents the flashing when thickness is small.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-25

    Fix crash on (un)shading during focus effect.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-25

    Fix overflow in "no window above when lowering" case.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-25

    Fix freeing after event order change.

Dennis Kasprzyk <onestone@opencompositing.org>	2007-07-25

    Fixed memory corruption.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-25

    Re-enable gksudo darkening layer anim prevention.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-24

    Implement options string for anim selection lists.
    These are comma separated lists of option value assignments to
    override effect settings, such as:
    fire_color=#0080ffff, fire_particles=700, fire_smoke=1
    Only the options in the "Effect Settings" group can be used here.
    An html documentation of all options can be generated with optionDocGen.xslt
    under the Documentation project in git by doing
    xsltproc -o animationDoc.html optionDocGen.xslt /usr/share/compiz/animation.xml

Erkin Bahceci <erkinbah@gmail.com>	2007-07-23

    Fix dodge.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-22

    Switch durations to ms because of gconf. Rename options.
    Switching to integer millisecond durations, since gconf apparently
    doesn't support float lists.
    Renaming effect, duration, match options to plurals (which make
    more sense anyway) to prevent any problems related to this duration
    change and the recent switch to multiple effect selection.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-22

    Minor code reorganization.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-22

    Plug the memory leak.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-22

    Fix lack of focus animations after using switcher.

Merge: b8171dd 6d5e713
Danny Baumann <dannybaumann@web.de>	2007-07-21

    Merge branch 'master' of git+ssh://maniac@git.opencompositing.org/git/fusion/plugins/animation

Danny Baumann <dannybaumann@web.de>	2007-07-21

    Minor cleanup.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-21

    Add window-centered perspective correction to polygon engine.

Roland Baer <roland@Vista.(none)>	2007-07-18

    animation unused vars

Erkin Bahceci <erkinbah@gmail.com>	2007-07-16

    Put empty descriptions for now.

Dennis Kasprzyk <onestone@opencompositing.org>	2007-07-16

    Remove obsolete deps/features from vtable

Erkin Bahceci <erkinbah@gmail.com>	2007-07-15

    Correct notification-daemon window type.

Merge: acbd508 70b1628
Erkin Bahceci <erkinbah@gmail.com>	2007-07-14

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2007-07-14

    Implement multiple effect selection. Rename create -> open.
    And a little cleanup.

Danny Baumann <dannybaumann@web.de>	2007-07-13

    Properly handle out-of-memory conditions when updating the client list copy.

Danny Baumann <dannybaumann@web.de>	2007-07-13

    Properly initialize variables for the client list storage.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-12

    Replace simple matchEvals with strcmp.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-12

    Simplify match strings by handling workarounds in code.
    getActualWinType should be eventually moved to the Workarounds plugin when
    it is included and enabled by default in plugins-main.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-11

    Fix lack of focus animation in some cases.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-11

    Hopefully fix the occasional focus anim crash.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-10

    Fix Qt3 menu anim interrupt on 1st opening. Pass on resize notify.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-10

    Fix Qt3 and Qt4 tooltip animations (Regexp plugin should be enabled).

Erkin Bahceci <erkinbah@gmail.com>	2007-07-10

    Little cleanup.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-09

    Fix lack of menu animations in Qt4 applications.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-09

    Change subgroup title.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-09

    Change group title.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-09

    Improve a few descriptions.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-09

    Allow some more time for zoom.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-08

    Fix crash when closing gobby.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-08

    Fix focusfade hang: focus win A, B, then A, before 1st anim is done.
    (where A is not focused initially and A & B are overlapping).

Erkin Bahceci <erkinbah@gmail.com>	2007-07-08

    Fix changing window opacity during focus fade.
    Shadows will still suffer though. And windows with alpha
    (with translucent regions) are not touched,
    as this would make them even more opaque during animation.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-08

    Change zoom behavior when springiness is 0 to have no bump.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-08

    Avoid conflict with FadeDesktop.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-08

    Apply Compiz indentation.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-08

    Make curved fold amplitude depend on window height.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-08

    Fix KDE secondary windows (they are all treated as drop-down menu now).

Erkin Bahceci <erkinbah@gmail.com>	2007-07-06

    Apply curve change to shade mode too.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-06

    Curvier curved fold.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-06

    Fix zoom springiness.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-06

    Prevent animation of gnome-screensaver black screen.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-06

    Improve movement in magic lamp & vacuum.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-06

    Add magic lamp moving end option (default on). Rename vacuum.
    Remove unnecessary options from vacuum.

Danny Baumann <maniac@opencompositing.org>	2007-07-05

    Fix missing anim with transparent cube in magic lamp, dream, folds.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-05

    Move xine, xpdf, gitk, etc. from Open/Close 2 to 1.
    (including all unknown windows)

Erkin Bahceci <erkinbah@gmail.com>	2007-07-05

    Prevent gksudo darkening layer animation.

Dennis Kasprzyk <onestone@opencompositing.org>	2007-07-03

    Makefile update.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-03

    Add "zoom to taskbar on minimize" and "sidekick zoom from center" options.

Merge: fded361 e9c33a7
Erkin Bahceci <erkinbah@gmail.com>	2007-07-03

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2007-07-03

    Make animations minimize to taskbar. Make RollUp duration consistent.
    Improve curved/horizontal fold animations' open/close behavior.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-03

    Move some code between files.

Danny Baumann <dannybaumann@web.de>	2007-07-02

    Added NULL pointer check.
    Patch by Roland BÀr.

Danny Baumann <dannybaumann@web.de>	2007-07-02

    Check return value.
    Catched by Roland BÀr.

Merge: 281163a ec7e8a8
Erkin Bahceci <erkinbah@gmail.com>	2007-07-01

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2007-07-01

    Emit "activate" event to inform plugins that an animation is in progress.

Dennis Kasprzyk <onestone@opencompositing.org>	2007-07-01

    Makefile update.

Merge: 0291252 c0d2a8e
Erkin Bahceci <erkinbah@gmail.com>	2007-07-01

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/plugins/animation

Erkin Bahceci <erkinbah@gmail.com>	2007-07-01

    Zoom/Sidekick: Improve motion, set default springiness to 0.

Erkin Bahceci <erkinbah@gmail.com>	2007-07-01

    Glide: Fix lack of drawing of window's back.

Danny Baumann <dannybaumann@web.de>	2007-06-30

    xml -> xml.in

Erkin Bahceci <erkinbah@gmail.com>	2007-06-29

    Fix lack of focus/minimize/shade anim of xine, xterm & some other apps
    like gitk, xpdf, xdvi, xvncviewer, xfontsel, ... by adding "unknown"
    to match strings.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-29

    Get rid of Switcher window opening animation.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-29

    Fix lack of open & focus anim. for some windows
    (e.g. NetworkManager "create new wireless..." dialog).

Erkin Bahceci <erkinbah@gmail.com>	2007-06-29

    Fix BeamUp opacity bug (when the 2 time-step values are different). Remove some unused code.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-28

    Put back sigmoid motion to RollUp.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-28

    Get rid of unnecessary subEffectNo.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-28

    Remove left over header file.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-28

    Simplify and speed up most remaining effects.
    Namely curvedfold, dodge, domino, dream, explode3d, horizontalfold,
    leafspread, magiclamp, razr, rollup, and wave.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-28

    Simplify and speed up glide (use CompTransform).

Erkin Bahceci <erkinbah@gmail.com>	2007-06-28

    Simplify and speed up sidekick and zoom (use CompTransform).

Dennis Kasprzyk <onestone@opencompositing.org>	2007-06-28

    Makefile update.

Merge: edf5d2f 9e06ab7
Dennis Kasprzyk <onestone@opencompositing.org>	2007-06-28

    Merge branch 'master' of git+ssh://git.opencompositing.org/git/fusion/plugins/animation

Dennis Kasprzyk <onestone@opencompositing.org>	2007-06-28

    Make Coverity happy ;-)

Danny Baumann <dannybaumann@web.de>	2007-06-28

    Fix some possible NULL pointer dereferences.
    Thanks to Roland BÀr for catching those.

Danny Baumann <dannybaumann@web.de>	2007-06-23

    dded comments noting that the NUM_EFFECT macros and the actual list size never should become out of sync.

Danny Baumann <dannybaumann@web.de>	2007-06-23

    Add prefix to display private index variable to prevent symbol conflicts.

Danny Baumann <dannybaumann@web.de>	2007-06-23

    Function and variable scope cleanup.
    Sort prototypes in header files and get rid of the tiny source-file specific header files.
    Move polygon and particle set specific functions to polygon.c / particle.c.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-22

    Fix max-dodge-amount update while moving win. Fix going through dialogs when they only intersects during dodge.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-22

    Get rid of remaining warnings.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-22

    Update Makefile. Get rid of some warnings. Add license note to files.

Merge: 4f493bc 1d60062
Erkin Bahceci <erkinbah@gmail.com>	2007-06-22

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/compcomm/plugins/animation

Robert Carr <racarr@gorbie.(none)>	2007-06-22

    Working split in to files! thanks maniac.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-22

    Dodge support for apps with open dialog/utility windows (file, find dialogs, gobby, etc.).

Erkin Bahceci <erkinbah@gmail.com>	2007-06-22

    Fix flashing in focus animation with utility windows.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-22

    Allow focus animations on shaded windows.

Dennis Kasprzyk <onestone@beryl-project.org>	2007-06-11

    Makefile update.

Dennis Kasprzyk <onestone@beryl-project.org>	2007-06-11

    Updated Makefile

Erkin Bahceci <erkinbah@gmail.com>	2007-06-10

    Fix indentation.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-10

    Reordered some options. Fixed some options.

Merge: 7f97b2a 9397678
Danny Baumann <dannybaumann@web.de>	2007-06-10

    Merge branch 'master' of git+ssh://maniac@git.opencompositing.org/git/compcomm/plugins/animation

Danny Baumann <dannybaumann@web.de>	2007-06-10

    printf -> compLogMessage

Erkin Bahceci <erkinbah@gmail.com>	2007-06-10

    Prevent dodging panels when apps are switching from fullscreen.

Danny Baumann <dannybaumann@web.de>	2007-06-08

    Don't do a fade animation while scale is active.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-07

    Fix Explode.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-07

    Correct indentation.

Treviño <trevi55@gmail.com>	2007-06-08

    Set right animations for Java apps by default. Hello git! :)

Danny Baumann <dannybaumann@web.de>	2007-06-03

    Use int options and int descriptions for the animation type options.

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    Avoid crash when using dodge with ring switcher

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    Fix fade focus and dodge problem when used after switcher

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    Consistent indentation in xml

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    Get rid of compile warnings

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    Add some Makefile options

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    * commit msg test: (a), d.e. a / b
    * a

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    push test /

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    * New focus effect: Dodge  (idea from Dennis Kasprzyk)
    * Dodge Gap Ratio option
    * Fix focus stacking (lowering case with 2 windows)
    * Allow animations with CompTransform
    * Allow modelless animations, i.e. using only CompTransform, WindowPaintAttrib
    * Remove duplicate functions

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    * push test
    * case correction

Erkin Bahceci <erkinbah@gmail.com>	2007-06-02

    test commit

Merge: 200ef55 badae01
Erkin Bahceci <erkinbah@gmail.com>	2007-05-31

    Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/compcomm/plugins/animation

Dennis Kasprzyk <onestone@opencompositing.org>	2007-06-01

    Applied lastest core changes

Erkin Bahceci <erkinbah@gmail.com>	2007-05-29

    Rename function and little clean-up.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-29

    Variable relocation.

Danny Baumann <dannybaumann@web.de>	2007-05-21

    Fix basic metadata for former string options.

Danny Baumann <dannybaumann@web.de>	2007-05-21

    Begin to convert animation to use int descriptions.

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-21

    Makefile update

Erkin Bahceci <erkinbah@gmail.com>	2007-05-18

    Reduce duration option precisions.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-18

    Springy Zoom and Sidekick (with springiness options).

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-16

    added new dependency rules

Erkin Bahceci <erkinbah@gmail.com>	2007-05-15

    Disabled setting of 0 wave amplitude in magic lamp.

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-15

    disabled setting of 0 waves in magic lamp with modified metadata

Erkin Bahceci <erkinbah@gmail.com>	2007-05-12

    Fix focus-fade flashing problem when Group plugin forms a tabbed window group.

marex <marex@beryl-project.org>	2007-05-12

    Grouped the options in the metadata

Erkin Bahceci <erkinbah@gmail.com>	2007-05-12

    Fix typo.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-12

    Fix fade-focus conflict with Group's tab change animation.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-12

    Avoid division by zero.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-11

    Fix missing AnimEffectProperties.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-11

    Fix effect count bug, and minor typo.

Danny Baumann <dannybaumann@web.de>	2007-05-10

    Syntax fix.

Danny Baumann <dannybaumann@web.de>	2007-05-10

    Fix some of the most weird indentations.
    Still some more work to do. Sue automatic indentation :-/

Danny Baumann <dannybaumann@web.de>	2007-05-10

    Some minor cleanup.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-09

    Fix explode tessellation default.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-09

    Fix "empty random effect list" behavior.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-09

    Fix explode tessellation option.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-09

    Fix random effects.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-09

    Fix horizontal folds option.

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-09

    fake commit to move animation to the merged repo
    removed animation.schema (the Makefile generates one from the xml file)

Merge: b8a9f57 a8b2ca0
marex <marex@beryl-project.org>	2007-05-09

    Merge with git+ssh://marex@git.beryl-project.org/git/compcomm/plugins/animation

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-09

    Makefile update

marex <marex@beryl-project.org>	2007-05-09

    Fixed metadata category

Danny Baumann <dannybaumann@web.de>	2007-05-09

    Revert accidential change.

Merge: 8a1d66d 92c6e0b
Danny Baumann <dannybaumann@web.de>	2007-05-09

    Merge branch 'master' of git+ssh://maniac@git.beryl-project.org/git/compcomm/plugins/animation

Danny Baumann <dannybaumann@web.de>	2007-05-09

    Remove Beryl leftover.

Danny Baumann <dannybaumann@web.de>	2007-05-09

    Make animation plugin use the new metadata system.

Roi Cohen <roico@roico-desktop.(none)>	2007-05-08

    fix a typo in makefile

Erkin Bahceci <erkinbah@gmail.com>	2007-05-08

    Avoid "switcher minimization" problem by dropping minimize triggering on "no window icon geometry" cases (no window list applet case).

Merge: 22ce758 d370696
Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-07

    Merge branch 'master' of git+ssh://git.opencompositing.org/git/compcomm/plugins/animation

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-07

    updated Makefile

Erkin Bahceci <erkinbah@gmail.com>	2007-05-06

    metadata: Added categories.

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-06

    updated makefile

Guillaume Seguin <ixce@ed3n-m.(none)>	2007-05-06

    Fix Makefile typo

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-06

    updated Makefile

Dennis Kasprzyk <onestone@beryl-project.org>	2007-05-06

    updated Makefile

Erkin Bahceci <erkinbah@gmail.com>	2007-05-04

    Complete updating animation.xml for latest changes to animation options.

Danny Baumann <dannybaumann@web.de>	2007-05-04

    Adapt animation for latest Compiz git.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-02

    Avoid "focus fading" shaded windows.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-02

    Fix "minimize all" behavior.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-02

    Avoid Roll Up decoration texture problem.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-02

    Updated default match strings (to be more accurate for menus of Mozilla apps)

Erkin Bahceci <erkinbah@gmail.com>	2007-05-02

    * Merged Magic Lamp 1/2
    * Corrected explode tessellation default

Erkin Bahceci <erkinbah@gmail.com>	2007-05-01

    Merged minimize/unminimize and shade/unshade options, to make effect options more concise and easier to change.

Erkin Bahceci <erkinbah@gmail.com>	2007-05-01

    Use the new override_redirect matching.

Bellegarde Cedric <gnumdk@gmail.com>	2007-04-21

    Use compiz matching interface

Danny Baumann <daba@rechenknecht.peppercon.de>	2007-04-18

    Remove now unneeded blurfx IPCS interface.

Erkin Bahceci <erkinbah@gmail.com>	2007-04-04

    test commit 2

Erkin Bahceci <erkinbah@gmail.com>	2007-04-04

    test commit

Erkin Bahceci <erkin@flux.(none)>	2007-04-04

    Fixed a crash! (when closing certain windows)

Erkin Bahceci <erkin@flux.(none)>	2007-04-03

    Fixed memory leak when using Burn and Beam Up

Erkin Bahceci <erkin@flux.(none)>	2007-04-03

    Fixed missing hexagon tiles problem in Explode

Erkin Bahceci <erkinbah@gmail.com>	2007-04-03

    Updated for option function changes

Erkin Bahceci <erkinbah@gmail.com>	2007-04-02

    Fixed flashing of a minimized window when unminimizing another window

Erkin Bahceci <erkinbah@gmail.com>	2007-04-01

    Fixed a crash! (with hexagonal tessellation)

Erkin Bahceci <erkinbah@gmail.com>	2007-04-01

    Slightly improved explode effect

Erkin Bahceci <erkinbah@gmail.com>	2007-04-01

    Fixed focus wave

Erkin Bahceci <erkinbah@gmail.com>	2007-04-01

    Added plugin order dependency for Fade plugin.

Erkin Bahceci <erkinbah@gmail.com>	2007-03-31

    Updated authors section

Erkin Bahceci <erkinbah@gmail.com>	2007-03-30

    Tessellation type is now selectable (rectangular/hexagonal) for Explode

Erkin Bahceci <erkinbah@gmail.com>	2007-03-30

    Hexagon tessellation function (by tehpola)

Erkin Bahceci <erkinbah@gmail.com>	2007-03-30

    Temporary menu fix for mozilla apps (until mozilla bug is fixed).

Erkin Bahceci <erkinbah@gmail.com>	2007-03-30

    Updated author email.

Erkin Bahceci <erkin@flux.(none)>	2007-03-30

    Fixed schema beginning & ending.

David Reveman <davidr@novell.com>	2007-03-30

    Initial commit.