-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathChangeLog
9956 lines (6691 loc) · 287 KB
/
ChangeLog
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
commit f7498113cc2162d6bc22fc2abe95ab672cac8d0e
Author: Alexandre Quessy <[email protected]>
Date: Mon Nov 7 17:04:06 2011 +0100
add -Wno-unused-result for Oneiric
commit ad36a4faf45e9d495d202ed2e30f2b1f1d47bd5a
Author: Alexandre Quessy <[email protected]>
Date: Mon Nov 7 16:54:35 2011 +0100
fixes for Ubunto oneiric
commit c7b5c61fcdc2b6fe8d53f514f5d750601987522e
Author: Alexandre Quessy <[email protected]>
Date: Wed Oct 5 23:59:20 2011 -0400
post-release version bump
commit 43f2ddc4167cf7e78231ec151d8528bba73f8eea
Author: Alexandre Quessy <[email protected]>
Date: Wed Oct 5 23:58:31 2011 -0400
prepare 2.1.16
commit 187a844f59a99a90dff169bc0400916178db4274
Author: Alexandre Quessy <[email protected]>
Date: Wed Oct 5 23:42:02 2011 -0400
fix a bug on Lucid
commit 03c80422936c080486fd70872914a647650de3ad
Author: Alexandre Quessy <[email protected]>
Date: Wed Oct 5 20:12:01 2011 -0400
implement osc callbacks for playhead_goto and playback_enable
commit 8dda2930022dcb9d9ad80d61e71b7796d7605aff
Author: Alexandre Quessy <[email protected]>
Date: Wed Oct 5 19:23:43 2011 -0400
can now pause with the p key
commit 7fc0a62ce56cb82e6a6d96c7a183efaf21ffaba1
Author: Alexandre Quessy <[email protected]>
Date: Mon Sep 26 16:42:12 2011 -0400
fix bug with info HUD saying it's Git while wrong
commit 28ea3edc880135e5fa20c33703ce0896734244dd
Merge: 4f07572 c6ed2bf
Author: Alexandre Quessy <[email protected]>
Date: Mon Sep 19 13:10:01 2011 -0400
Merge branch 'experimental-bleuorange'
commit 4f0757261ea80653ce48f43ea03b60680c618902
Author: Alexandre Quessy <[email protected]>
Date: Tue Sep 13 12:44:34 2011 -0400
fix a critical error - gui.cpp:1237:69: error: ‘blend’ may be used uninitialized in this function
commit c6ed2bf43ee85c6d09e791d32a22245636c11103
Author: Alexandre Quessy <[email protected]>
Date: Thu Aug 25 14:10:41 2011 -0400
trying to show the playback group if in overlay layout
commit d92e633bd651d9fc85093e00c26dfdb05dafe8ba
Author: Alexandre Quessy <[email protected]>
Date: Thu Aug 25 00:07:51 2011 -0400
update BUGS
commit 1db54af1b9e20c838755645738c6fcaab93740ba
Author: Alexandre Quessy <[email protected]>
Date: Wed Aug 24 23:21:40 2011 -0400
add /toon/set_int and /toon/set_float osc callbacks
commit ce483850603ec43cee28036f7a4944e6e6f66809
Author: Alexandre Quessy <[email protected]>
Date: Wed Aug 24 11:42:28 2011 -0400
no icon window
commit 3d076a30b2996307e6bb3f56f6b340e5a602f2b7
Author: Alexandre Quessy <[email protected]>
Date: Wed Aug 24 11:42:11 2011 -0400
more BUGS
commit 51faa949c5322cdf19105025fd5bc8bee53590f1
Author: Alexandre Quessy <[email protected]>
Date: Wed Aug 24 10:58:49 2011 -0400
prioritize clutter-gst 1.0, not 0.10
commit 01eae34e4ae5388704c0fc5a77103ef559959ab6
Author: Alexandre Quessy <[email protected]>
Date: Tue Aug 9 20:53:47 2011 -0400
update NEWS
commit f99a4089ae4c1d88615145812d9ff06ee3ba89f3
Author: Alexandre Quessy <[email protected]>
Date: Tue Aug 9 19:41:20 2011 -0400
less verbose
commit bb0e365ec17d5fc1b07d7b3a3438fb56dc5cfd29
Author: Alexandre Quessy <[email protected]>
Date: Tue Aug 9 19:36:09 2011 -0400
improve parsability of --print-properties
commit 2a6a7e8e9e6bf3a0fbcb96cdf7a3446d4f964a9c
Author: Alexandre Quessy <[email protected]>
Date: Tue Aug 9 19:21:22 2011 -0400
change --print-properties to --list-properties
commit 4d581ba3d7c874389665fa9431dbde204c1257ca
Author: Alexandre Quessy <[email protected]>
Date: Tue Aug 9 18:44:52 2011 -0400
Create Gui::load_effects and Gui::show_effects
commit a9d9ca99760d620543e9f86f70a8fd9b50e96768
Author: Alexandre Quessy <[email protected]>
Date: Tue Aug 9 18:39:48 2011 -0400
move implementation of BrCoSaEffect's constructor into its cpp file.
commit 432bacbee9f0630d68fb2617e00150b89e323bf9
Author: Alexandre Quessy <[email protected]>
Date: Sat Aug 6 11:49:41 2011 +0200
removed some newlines
commit 507d88d073891e62f2a1cf529c3a8a79e29c85ec
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 21:40:45 2011 +0200
less to do
commit 4760708e77aac184b5648001beff375d6a583246
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 21:39:04 2011 +0200
remove some todos that are done
commit 3b5020793647a5babd897a2f336717b088ded25c
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 21:36:42 2011 +0200
less to do
commit 5da8f2f449859ea9b670eb9c9df350044763bb04
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 21:36:13 2011 +0200
--print-properties prints all options and exits
commit 5d6b7e439c9e13c5ca7d54e16d29ed10fef1a896
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 21:28:45 2011 +0200
separate Gui::show() from its contructor
commit 8dbe054fdfdb7484da07d01e2cca01fdb60e1ee5
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 21:10:33 2011 +0200
add Controller::choose_clip_and_add_frame
commit 5426e9d918479d58fb102fc47dfb43a8559b890e
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 21:01:12 2011 +0200
test source's size is now configurable as well
commit 947dc5ada85e91b86d07790961a52698451d16d7
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 17:21:37 2011 +0200
update NEWS
commit b8dbf50afe11271ce08d2f9225566cde7fca3845
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 17:20:19 2011 +0200
append clip id to name of exported video files
commit 43b0dd17ceed29e56d971448637f7e5c9f7883fe
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 17:19:38 2011 +0200
Import boost/lexical_cast where we use it
commit 8e27f02c93135699be534efb2f3455afcd0a1f2a
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 17:10:51 2011 +0200
post-release version bump
commit 13349f8b8ad5cf4b0b00d872ed6af3db7f55a2da
Author: Alexandre Quessy <[email protected]>
Date: Fri Aug 5 17:07:03 2011 +0200
update date of release
commit f165a79895c995b19fa1377a64a264afb4097d00
Author: Alexandre Quessy <[email protected]>
Date: Mon Aug 1 18:38:58 2011 +0200
prepare for 2.1.14
commit e4b064b519df6436c869bcfb7827573c34224d95
Author: Alexandre Quessy <[email protected]>
Date: Fri Jul 15 23:54:19 2011 +0200
update NEWS
commit 2f274cddd21036c472971cd5c5ef2c74b588d2be
Author: Alexandre Quessy <[email protected]>
Date: Fri Jul 15 23:37:22 2011 +0200
add Michal Seta to AUTHORS
commit 6716bf6af50f34c3451efdf2536e1e126f1106f4
Author: Alexandre Quessy <[email protected]>
Date: Fri Jul 15 23:31:16 2011 +0200
update NEWS
commit e94e6f8c9f61e3ba3caad0d87ef205f3647dc8c0
Author: Michal Seta <[email protected]>
Date: Mon Jul 11 18:00:20 2011 -0400
Saving current clip was unbound in MIDI control and resulted in a segfault
commit 2277f72dd7a627968f72869eded4efce3d23b215
Author: Alexandre Quessy <[email protected]>
Date: Fri Jul 1 11:36:35 2011 -0400
change default fps to 8
commit f14dcedf026dcfa649e51783befe391c6f8f0606
Author: Alexandre Quessy <[email protected]>
Date: Thu Jun 30 10:47:58 2011 -0400
fix to version of clutter for key symbols
commit c14912ea738d3c4ade0b3a9b9f62b3740b88c10e
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 19:51:11 2011 -0400
more comments
commit f6412fd36a295fa071829319ea93f85b323f436e
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 19:46:28 2011 -0400
remove some headers
commit c5fd2b619002fe866d6ecdad3ace6d8de4fbbf88
Merge: 69a5f50 959aeb0
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 19:29:48 2011 -0400
Merge branch 'master' of github.com:aalex/toonloop
commit 69a5f506a7cecbae577a30571366eed15884b9f2
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 19:24:37 2011 -0400
move toon_clutter_stage_set_window_icon to clutter-tools.h
commit 959aeb09d8f6e780440419141fb703cc9dfe9b81
Merge: e3aa19d be97796
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 17:50:31 2011 -0400
Merge branch 'master' of https://github.com/aalex/toonloop
commit 997309e0f6cc62a0933f82200a48e6859a902623
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 17:23:23 2011 -0400
see some window icon in double
commit 4591f84537e106ee31d3fbc7e34c15c961241e07
Merge: 934a626 be97796
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 16:52:24 2011 -0400
Merge branch 'master' into window-icon
commit be97796cf1025a24990fccd961a07ea3435898fb
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 16:50:54 2011 -0400
update NEWS
commit 934a626914735ed98e1c8652064b9dbb385586bb
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 16:42:30 2011 -0400
try to see some window icon
commit 4e9477df1a5afbae0ae2b1d516015ad7eb2fb462
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 16:06:29 2011 -0400
add alpha channel to png
commit b03250ad7c5b52dad2602c48c8ef867de74dcb24
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 16:06:18 2011 -0400
we see some buggy window icon
commit 88eddf6d7eebff87d349de393154d0279762ef38
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 15:07:45 2011 -0400
add some notes about setting the window icon
commit e3aa19d5ec09a8b683b6e355717cafad4d6d17a1
Author: Alexandre Quessy <[email protected]>
Date: Wed Jun 29 14:49:46 2011 -0400
adding install_maverick
commit b36b37e3c11ebc054103a1c303b49837cbdd3cde
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 15:40:31 2011 -0400
use clutter, not clutter-gtk in a test
commit 02b6c454239caa9031fcb3ecb888272b68b6d8f2
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 14:11:30 2011 -0400
fine tune animation curves
commit 4284b9d6e03d7a05cc9a5be15a9a28c564b8ec83
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 14:09:49 2011 -0400
fix segfault on 64 bits when animating opacity
commit d127188126293cdc7a52f34d425f4d1f8b16176a
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 03:29:10 2011 -0400
go to beginning of clip when choose it
commit 206fa05dc454ac87369b0d7b0217de3042df3329
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 03:02:48 2011 -0400
add toonloop_window_icon.png to pixmaps
commit d3747feed51f1c79101914ad14e2f045aacb2f24
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 02:33:46 2011 -0400
flash when grab an image
commit 690aecde9502fd8e0cb144042780aee94b5b1e09
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 02:20:10 2011 -0400
fix progress bar so that we see it
commit a888b01d1c124487e67f39a5ff8947009e6b4f9e
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 01:58:14 2011 -0400
display text when saving clip or project
commit 248f96a17cad68ed382ae9351d5899d5756104f4
Merge: 463d5b4 069e3e2
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 00:48:10 2011 -0400
Merge branch 'master' into nogtk
commit 463d5b463fc9afcf70b25233b9c71e7bfaf5d7bc
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 00:43:19 2011 -0400
update CONTRIBUTING
commit b908eeb44e0068d02e1d955b18f806b576955f25
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 28 00:42:11 2011 -0400
update README
commit 5fe666d9eee42e7f8515dec09f7705739c081d0a
Author: Alexandre Quessy <[email protected]>
Date: Mon Jun 27 22:08:55 2011 -0400
Get rid of GTK
commit 4b4be544c8b7c69275ca49a6ca69692cf639ec9e
Author: Alexandre Quessy <[email protected]>
Date: Mon Jun 27 21:13:13 2011 -0400
trivial change
commit 069e3e29b4d98f99f51621b88dbd9ee6544b3db8
Author: Alexandre Quessy <[email protected]>
Date: Mon Jun 27 20:50:09 2011 -0400
do not die if cannot find MIDI XML config file
commit 44323cf834a73642f5b2cd3d038e099d6a70dcf8
Author: Alexandre Quessy <[email protected]>
Date: Mon Jun 27 18:09:30 2011 -0400
Interface to serial button sends OSC via Twisted
commit 7b130aad1fb3bc634b10d1f927956c174170d55a
Author: Alexandre Quessy <[email protected]>
Date: Mon Jun 27 17:53:29 2011 -0400
switch utils/toon-button to Twisted
commit c4511102eb33502748dc87fda27f96f25fd2c91f
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 24 17:26:45 2011 -0400
add Arduino sketch and Python serial reader
commit a339b8083ad25fe333a806b752ffabafd017670e
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 24 14:51:54 2011 -0400
add doc/toonloop-title.svg
commit 1a554526d29063d4456d81c1d0573a84ff9d91b1
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 24 11:46:02 2011 -0400
add Gui::set_window_icon
commit 92dc04e8126083b7e63498e363770aaaf103bb3e
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 24 10:58:59 2011 -0400
remove a todo
commit 25331b3fc61687bb76ad03e6ea69301b84cdaa7f
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 24 10:52:40 2011 -0400
add legacyclutter.h
commit 4f55d89338e567edb304acd2ca6f2346dd9ef3d9
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 24 10:48:18 2011 -0400
handle Clutter's button-press event, not GDK's
commit 9d73cf5c907633e974f0edc3d74db085670dcf31
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 24 10:36:06 2011 -0400
remove unused include
commit 064921bbaef6cd3356fe2ed6f2f26f25b4e60fc3
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 24 10:10:44 2011 -0400
Use Clutter key symbols, not GDK's
commit b61d1eb6b5e933c6c83968fdb5fbc0b29afecbac
Merge: 7f6d704 8eedb55
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 18:10:37 2011 +0200
Merge branch 'fixmakecheck'
commit 8eedb55a34e352edcc97a2ea3b3669eae9625a82
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 18:06:14 2011 +0200
fix make distcheck
commit 7f6d704b17af9cace2695cfaa613cd0c4e9388a7
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 17:54:28 2011 +0200
post-release version bump
commit 458658067dfd2fc6ac9226b6940063d4cce5859c
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 17:53:33 2011 +0200
update version to 2.1.12
commit 1d1ff878b06fde12bc9e86a9adc5a3536edf8106
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 17:50:16 2011 +0200
update NEWS
commit 4799b83026ba0dce6d4fa478707ac4e67ab00aff
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 17:34:26 2011 +0200
do not hide cursor if on amd64, since it crashes
commit 487532e0eb13dbabb574de0a3f57df5c338c273e
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 17:29:49 2011 +0200
use GtkEvent* in window-state-event cb
commit 2c1cb2c728999cadb3c809ff208523b35c6a021b
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 17:18:25 2011 +0200
cast null to GdkCursor * for amd64
commit a0818b2c7228a909341278858a88555b8d24099f
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 17:16:05 2011 +0200
update to NEWS
commit bc27adc9fd036e46c5535430d72588e02974db9f
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 17:09:35 2011 +0200
change signature for texture size changes cb
commit 05743b02e272f542cc4a3dcc4ff2ac0748c900d9
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 16:32:59 2011 +0200
Cast GDK_BLANK_CURSOR to GdkCursor*
commit bf5d3aa8a0215fecf40e41924e835eea61c5239b
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 16:16:04 2011 +0200
Set cursor to blank the proper way (gtk 2.16+)
commit 1fd6d7ec8a5a4c649c5808bc87fc903b6c21a6be
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 16:12:35 2011 +0200
avoid linking to libclutter-gtk-1.0
it relies on gtk-3
commit df524c76c1541c28f954ffc8750e131f4ab7a11f
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 15:53:28 2011 +0200
adding utils/list_deps_version
commit 627d6e6993290cfdd184a9c12c6c1668be8cca9f
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 14:37:52 2011 +0200
add utils/install_deps
commit 10479ec6b3692dfe364354a3829e3e848cd8e887
Author: Alexandre Quessy <[email protected]>
Date: Tue Jun 7 14:19:50 2011 +0200
Compile against clutter-gtk/gst either 1.0 or 0.10
commit 6f3ffe4c662c30949efd505743b2dbb726455a3c
Author: Alexandre Quessy <[email protected]>
Date: Sun Jun 5 16:06:07 2011 -0400
Fix segfault upon texture size changes signal triggered
commit dbca79dbff1e4fe8d957f2bff9e025ad7f16f79b
Author: Alexandre Quessy <[email protected]>
Date: Sat Jun 4 21:52:03 2011 -0400
Set CLUTTER_VBLANK=none before clutter_init
commit 4748a091a34fcf670b0213bbea53a82bdb789a87
Author: Alexandre Quessy <[email protected]>
Date: Sat Jun 4 21:04:52 2011 -0400
Disable double buffering in drawing area
commit 917c0ba6bed2fd3115415f7228b87b99ce661e6e
Author: Alexandre Quessy <[email protected]>
Date: Sat Jun 4 19:24:43 2011 -0400
move check_properties to tests/
commit 743ad733ce5c6969f5923ce8b65d2ab72d26aef2
Author: Alexandre Quessy <[email protected]>
Date: Sat Jun 4 19:12:58 2011 -0400
Use $(top_srcdir) in Makefile.am for tests
commit 8f82d0d80a02290b4ae0dd78a62e1c65882af17b
Merge: 2488d96 4cd06a5
Author: Alexandre Quessy <[email protected]>
Date: Sat Jun 4 19:06:41 2011 -0400
Merge branch 'future'
commit 4cd06a543b44b8a2bd603f11271db3d21c1bcb24
Author: Alexandre Quessy <[email protected]>
Date: Sat Jun 4 19:05:57 2011 -0400
back to 2.1.11
commit 34c89498619bdf40704e890b002962ca8cbcbdb3
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 3 01:33:44 2011 -0400
fix check_imageimporter
commit 2488d96c4c640d5eb6d4a884626d02379f4c73b4
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 3 01:23:35 2011 -0400
post-release version bump
commit 5e18e3d3ec8745cfdb888a3eca9a6e7119f8e384
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 3 01:22:03 2011 -0400
update version to 0.2.0
commit 80d6c713f6ae762ed20132bbdf72f8a811ea4e2b
Author: Alexandre Quessy <[email protected]>
Date: Fri Jun 3 01:21:12 2011 -0400
prepare 0.2.0
commit 330f2e00abb505bdd1b4ddd7af952b5bb82a8acd
Author: Alexandre Quessy <[email protected]>
Date: Sun May 22 19:31:31 2011 -0400
one item less to do
commit 90193b9f82be2f6c9dc4473acba76ae18fecd3c9
Author: Alexandre Quessy <[email protected]>
Date: Sat May 14 16:43:28 2011 -0400
implement /toon/clip/import_image ,s <file_name>
commit adfa77dfd501efd770846f4a71856714d0620bf2
Author: Alexandre Quessy <[email protected]>
Date: Sat May 14 16:21:08 2011 -0400
implement Controller::import_image
commit 7e689ea89e40dc03541842e134546b92fc549fb7
Author: Alexandre Quessy <[email protected]>
Date: Sat May 14 15:40:01 2011 -0400
make sure all JPEG are 100%
commit 6f7c8563ff597ab0235172a087f352cf3926891d
Author: Alexandre Quessy <[email protected]>
Date: Sat May 14 15:20:32 2011 -0400
Improved check_imageimporter a lot
commit 80bfa32f23bbb36752b7948529e7330eb871ad21
Author: Alexandre Quessy <[email protected]>
Date: Fri May 13 17:21:30 2011 -0400
towards a test for image_importer
commit c187d3af93ff7e955a8c93085fbfe310f3d8fd5a
Author: Alexandre Quessy <[email protected]>
Date: Fri May 13 17:07:51 2011 -0400
adding image_importer.cpp
commit ea1ab044a5386e0a7d90adb450c0e2af8c6e6f06
Author: Alexandre Quessy <[email protected]>
Date: Fri May 13 10:15:59 2011 -0400
updated doc/midi_notes_and_controls.pd patch
commit 07227f674ffd336216b5482780ae6ff6445f9cb9
Author: Alexandre Quessy <[email protected]>
Date: Fri May 13 09:06:08 2011 -0400
updated to the gst-pipeline.odg diagram
commit 0648477906382a836032c3964e09a4b85eb91add
Merge: 1b09d61 ce3c8c1
Author: Alexandre Quessy <[email protected]>
Date: Mon Apr 4 10:15:48 2011 -0400
Merge branch 'master' of github.com:aalex/toonloop
commit 1b09d610599f05b1d56262f9c19917138f53b87d
Author: Alexandre Quessy <[email protected]>
Date: Mon Apr 4 10:15:03 2011 -0400
adding .description
ln -s .description .git/description
commit ce3c8c17b1cc737d8956fbbba6de380e88a84cd6
Author: Alexandre Quessy <[email protected]>
Date: Fri Mar 4 13:45:04 2011 -0500
critical bug fixed
commit 3bc6f9bb6830e135b908249a1f2c495919d560ca
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 15 10:57:35 2011 +0100
more verbose midi
commit 11c66b44c92a20e200f5209707da38c43105ba88
Author: Alexandre Quessy <[email protected]>
Date: Wed Feb 2 10:57:54 2011 -0500
post-release version bump
commit 308fee43b5c62fe77e4ba920e438f61e71b42f01
Author: Alexandre Quessy <[email protected]>
Date: Wed Feb 2 10:56:29 2011 -0500
Updated to 2.1.10 for a release
commit 1e167c78663db92152ab872d48d55094db619d66
Author: Alexandre Quessy <[email protected]>
Date: Wed Feb 2 10:50:48 2011 -0500
got rid of undesired text in man page
commit 5771396947cacb6287695ed0024f9d1152411ecb
Author: Alexandre Quessy <[email protected]>
Date: Wed Feb 2 10:47:04 2011 -0500
missing end of line
commit feba52e81d56054b344ccc5472cfd0aa7a6f2c1f
Author: Alexandre Quessy <[email protected]>
Date: Wed Feb 2 10:46:23 2011 -0500
more verbose when save the project
commit 628443123c67500fd62c69a0d07cdea68eb9ca3e
Author: Alexandre Quessy <[email protected]>
Date: Wed Feb 2 10:44:34 2011 -0500
Use ctrl-e to export the current clip.
commit 40156ae56303d6c92051897c789fbb597046e61a
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 14:19:50 2011 -0500
updated RELEASE
commit 4ffd14e2012aa1ce3d423fa517d77e41dcbf1194
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 14:17:02 2011 -0500
updated RELEASE notes
commit 9ad24a938d518616fd98120a05e241c56d6f0cf0
Merge: b331d2a 75d2a04
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 14:15:55 2011 -0500
Merge branch 'master' into dv2
commit 75d2a04ecc76d4f455a074d716053b4c6f5a9e66
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 14:08:44 2011 -0500
updated RELEASE notes
commit 24b1fa411be677dbf9980987856b60f6b94e2771
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 13:47:43 2011 -0500
gdk_pixbuf_unref is deprecated
commit a04bd944a8133b8ecdca18b47fbd17bfe3c82e57
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 13:32:13 2011 -0500
Less verbose pipeline
commit 088466bd30fae1e87279e8bf796a777713ca3852
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 13:25:11 2011 -0500
updated RELEASE file
commit a673d4a36c3fa7cb57a948d6586344c32a515bef
Merge: bee2ca9 0459b23
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 13:22:49 2011 -0500
Merge branch 'dv'
commit 0459b233a605b6b31fe5230639eab12eb67792b4
Author: Alexandre Quessy <[email protected]>
Date: Tue Feb 1 13:21:55 2011 -0500
Fixed DV pipeline!
commit bee2ca933dce5185353a9d72914b7f384457ca95
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 29 11:04:16 2011 -0500
Decreased playback rate verbosity. Moved doc strs
commit 51e521a42f2923798bc69260f516c521c8fc56e0
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 29 10:49:18 2011 -0500
no private stuff in doxygen doc
commit d385e2ebe57d58b3a46fc807ce9b44f1eba182f0
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 29 10:37:06 2011 -0500
saving current clip number
commit fccaaf7c7e7ca54fe158fce983f7b090e39e591a
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 29 10:27:31 2011 -0500
added --auto-save-project option
commit 67dc3ae405f3c7170dc4935f90bd3e07a4a7381f
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 29 10:09:38 2011 -0500
created Application::get_project_file_name()
commit 7e3e1f938875ef149b7e84f501faab1036842f2e
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 29 10:04:27 2011 -0500
updated some comments and prints
commit 37b630b52d264c9e811436c95cbfcbb026a10168
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 29 09:56:27 2011 -0500
added --no-load-project option
commit 04a7b37d75a5c311ee94ac62a54d078f5d9b058a
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 29 09:48:48 2011 -0500
check for install and ln -s
commit c7057744b0ad317ba3bfbe614f5c4826470aaf7f
Author: Alexandre Quessy <[email protected]>
Date: Mon Jan 24 09:30:49 2011 -0500
updated TODO
commit b7b1e28c6d494914352b470cdedf0789dc952c74
Author: Alexandre Quessy <[email protected]>
Date: Mon Jan 24 08:53:07 2011 -0500
updated ChangeLog
commit 08525bfc47440c4bd3952d72bd7b7f807cc9b7ac
Author: Alexandre Quessy <[email protected]>
Date: Mon Jan 24 08:52:44 2011 -0500
updated RELEASE
commit 5d0626f8fda5494e0eedefe1b2377a2f8dcfb4db
Author: Alexandre Quessy <[email protected]>
Date: Mon Jan 24 06:24:10 2011 -0500
style corrections
commit 3b7bdd4a2bb02120cc6d28100783b57c14e82511
Merge: 8b9b811 9830f8c
Author: Alexandre Quessy <[email protected]>
Date: Mon Jan 24 06:17:32 2011 -0500
Merge branch 'master' into dv
commit 9830f8c6667e65607427619dcca0cc768f2d0c7d
Author: Alexandre Quessy <[email protected]>
Date: Sun Jan 23 21:36:00 2011 -0500
Now saves and load images name with extension
commit 2288be91933617fb973b230398302826f8872941
Author: Alexandre Quessy <[email protected]>
Date: Sun Jan 23 21:24:05 2011 -0500
save toonloop version as well
commit 65b27919b110e1a3c41f92c70852de1cbbe667e4
Author: Alexandre Quessy <[email protected]>
Date: Sun Jan 23 21:20:18 2011 -0500
save and restore clip FPS and direction as well
commit 52c84cd095d60985741d4423626704212914f26e
Author: Alexandre Quessy <[email protected]>
Date: Sun Jan 23 21:07:31 2011 -0500
restoring previous project's images in clips!
commit 43668c18fa36d400676dcdafccbe389722aae8e7
Author: Alexandre Quessy <[email protected]>
Date: Sun Jan 23 20:39:42 2011 -0500
print project XML data at startup
commit 8802483f64d21b9aab66a0618e934f978cf2bc96
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 22 15:09:12 2011 -0500
deleted statesaving.cpp
commit eb789da327ef69ea5f0f2dfcad0f760e8b8df28b
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 22 15:08:26 2011 -0500
do not save empty clips
commit f350de5a4bc4c23dfbaa1fd7b8f8757697f06862
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 22 15:08:18 2011 -0500
F2 saves the project
commit ca45ea9097f5194103f3566b6d941e7525fe0ffd
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 22 15:02:22 2011 -0500
implemented Controller::save_project (not tested)
commit 389aa88dd5ea6c1560488f70362af1326c164557
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 22 14:31:13 2011 -0500
implmented Application::save_project (not tested)
commit 6ccebb921a24f11b5a2100b6233dc7ac886f53cb
Author: Alexandre Quessy <[email protected]>
Date: Sat Jan 22 11:18:14 2011 -0500
check for libxml2
commit bdae9feef16f9a66368a346c63892e1ccaf91208
Author: Alexandre Quessy <[email protected]>
Date: Wed Jan 19 22:14:00 2011 -0500
little indentation changes
commit 287020b0d3c08d68c6d5540be937330bfe390e1c
Author: Alexandre Quessy <[email protected]>
Date: Wed Jan 19 22:09:23 2011 -0500
need <sstream> in infowindow.cpp as well
commit 63fb1442042dba7fefa6aa2b4d37f55220642b87
Merge: 8a7e50e b03209e
Author: Alexandre Quessy <[email protected]>
Date: Wed Jan 19 18:32:53 2011 -0500
Merge branch 'master' of github.com:aalex/toonloop
commit 8a7e50e260ffc16382f73866261453c7f94e6353
Author: Alexandre Quessy <[email protected]>
Date: Wed Jan 19 18:19:37 2011 -0500
need to include <sstream>
commit b03209e022f8649195258dc28dda9ef965d32af1
Author: Alexandre Quessy <[email protected]>
Date: Wed Jan 19 09:09:31 2011 -0500
less verbose
commit 4fc66cd30a379546b4dc6fade1e6f90fc50bf332
Merge: 4590482 c8bb5a6
Author: Alexandre Quessy <[email protected]>
Date: Tue Jan 18 18:51:27 2011 -0500
Merge branch 'master' of github.com:aalex/toonloop