-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog
8579 lines (6241 loc) · 246 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
2011-12-25 Stefan Sauer <[email protected]>
* NEWS:
Releasing.
2011-12-23 Stefan Sauer <[email protected]>
* docs/reference/bt-ic/buzztrax-ic.types.in:
Fix leftover -methods.h file references.
2011-12-22 Stefan Sauer <[email protected]>
* NEWSLETTER:
Collect NEWS.
2011-12-22 Stefan Sauer <[email protected]>
* src/ui/edit/ruler.c:
Experiments with log rulers.
2011-12-20 Stefan Sauer <[email protected]>
* po/LINGUAS:
* po/zh_CN.po:
* po/zh_CN.po (added):
Add new translation.
2011-12-19 Stefan Sauer <[email protected]>
* configure.ac:
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
* src/ui/cmd/Makefile.am:
* src/ui/dec/Makefile.am:
* src/ui/edit/Makefile.am:
* tests/Makefile.am:
Add LIBM check and link it where needed.
2011-12-14 Stefan Sauer <[email protected]>
* configure.ac:
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
* src/ui/cmd/Makefile.am:
* src/ui/edit/Makefile.am:
* tests/Makefile.am:
Split BT_LIBS into BT_LDFLAGS and BT_LIBS. Sanitize link order.
2011-12-12 Stefan Sauer <[email protected]>
* src/lib/core/settings.c:
Fix choosing a default audiosink. First we were leaking strings. Next
we were copying the feature to the name. Also make the procedure
smarter - if the plugin in the settings does not exists or is
incompatible, disregard it. This improves the situation that might
happen after a distro upgrade.
2011-12-12 Stefan Sauer <[email protected]>
* tests/lib/core/t-sink-machine.c:
Add two more tests.
2011-12-08 Stefan Sauer <[email protected]>
* src/ui/edit/sequence-view.c:
Remove leftover define.
2011-12-08 Stefan Sauer <[email protected]>
* src/lib/core/song.c:
Check the right var in g_return_if_fail().
* src/ui/edit/main-toolbar.c:
Stop the playback-pos timer when song is stopped.
2011-12-08 Stefan Sauer <[email protected]>
* src/ui/edit/machine-properties-dialog.c:
Don't unref the weak pointer if the object is gone already.
2011-12-08 Stefan Sauer <[email protected]>
* src/ui/edit/main-statusbar.c:
Check the result, to handle the case where we load a new song while
playing and we still get some signal emitted for the old song.
2011-12-08 Stefan Sauer <[email protected]>
* src/lib/core/pattern.c:
Fix the enum blending logic even more.
2011-12-08 Stefan Sauer <[email protected]>
* src/lib/core/persistence.c:
* src/ui/edit/main-page-patterns.c:
Support the enum note type.
2011-12-08 Stefan Sauer <[email protected]>
* src/lib/core/libbuzztrax-core/childproxy.h:
Whitespace.
2011-12-08 Stefan Sauer <[email protected]>
* src/lib/ic/control.c:
* src/ui/edit/main-page-patterns.c:
Use new enums from gst-buzztrax.
2011-12-07 Stefan Sauer <[email protected]>
* src/lib/core/machine.c:
Some elements (like ladspa) don't use "src" and "sink" as pad-names.
Scanning the pads lists in that case.
2011-12-07 Stefan Sauer <[email protected]>
* src/ui/edit/pattern-editor.c:
Map keypad numbers to regular numbers.
2011-12-07 Stefan Sauer <[email protected]>
* docs/reference/bt-edit/buzztrax-edit-docs.sgml:
* docs/reference/bt-edit/buzztrax-edit-sections.txt:
* docs/reference/bt-edit/buzztrax-edit.types:
Add the ruler widget to the docs.
* src/ui/edit/Makefile.am:
* src/ui/edit/panorama-popup.c:
* src/ui/edit/pattern-editor.c:
* src/ui/edit/ruler.c:
* src/ui/edit/ruler.h:
* src/ui/edit/signal-analysis-dialog.c:
* src/ui/edit/volume-popup.c:
* src/ui/edit/vruler.c (deleted):
* src/ui/edit/vruler.h (deleted):
* src/ui/edit/hruler.c (deleted):
* src/ui/edit/hruler.h (deleted):
Remove the {h,v}ruler front-ends and add _new method to ruler.
2011-12-06 Stefan Sauer <[email protected]>
* src/ui/edit/ruler.c:
* src/ui/edit/ruler.h:
Remember backing-store width and height - no need to used deprecated
gdk api to fetch it.
2011-12-06 Stefan Sauer <[email protected]>
* src/ui/edit/ruler.c:
Cleanup the drawing code and add more docs.
2011-12-06 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-toolbar.c:
* src/ui/edit/signal-analysis-dialog.c:
Use gtk_widget_add_events instead of calling set+get.
2011-12-06 Stefan Sauer <[email protected]>
* src/ui/edit/panorama-popup.c:
* src/ui/edit/ruler.c:
* src/ui/edit/ruler.h:
* src/ui/edit/signal-analysis-dialog.c:
* src/ui/edit/volume-popup.c:
Add a draw-pos property in our own ruler to get rid of the class
method hack. Use the new property to only show the pos-marker in
spectrum-view. Clean up the metrics to deal with out unit-range.
2011-12-05 Stefan Sauer <[email protected]>
* src/ui/edit/sequence-view.c:
Improve positioning of the playline to avoid cairo spreading the line
over pixel boundaries. Also make invalidation area 1 pixel taller to
fix left-over lines when seeking backwards.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/cmd/bt-cmd.c:
* src/ui/edit/bt-edit.c:
* tests/m-bt-cmd.c:
* tests/m-bt-core.c:
* tests/m-bt-edit.c:
* tests/m-bt-ic.c:
Enclose deprecated g_thread api in ifdefs.
2011-12-04 Stefan Sauer <[email protected]>
* design/gobject/gobjectnotify.c:
* design/hal/halwatch.c:
Update test apps. g_thread_init() is deprecated in glib 2.31 and was
already commented out in the examples.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/sequence-view.c:
Use the right window for the overlay lines.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/tools.h:
And commit the replacement api.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/settings-page-audiodevices.c:
Replace more deprecated combo_box test api.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/sequence-view.c:
Convert from gdk to cairo.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/ruler.c:
Fix the widgets.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/Makefile.am:
* src/ui/edit/gtkvumeter.c:
* src/ui/edit/hruler.c:
* src/ui/edit/hruler.h:
* src/ui/edit/panorama-popup.c:
* src/ui/edit/ruler.c:
* src/ui/edit/ruler.h:
* src/ui/edit/signal-analysis-dialog.c:
* src/ui/edit/volume-popup.c:
* src/ui/edit/vruler.c:
* src/ui/edit/vruler.h:
* src/ui/edit/hruler.h (svn:keywords, svn:eol-style):
* src/ui/edit/vruler.h (svn:keywords, svn:eol-style):
* src/ui/edit/hruler.c (svn:keywords, svn:eol-style):
* src/ui/edit/vruler.c (svn:keywords, svn:eol-style):
* src/ui/edit/ruler.c (svn:keywords, svn:eol-style):
* src/ui/edit/ruler.h (svn:keywords, svn:eol-style):
* src/ui/edit/ruler.h (added):
* src/ui/edit/vruler.c (added):
* src/ui/edit/vruler.h (added):
* src/ui/edit/hruler.c (added):
* src/ui/edit/hruler.h (added):
* src/ui/edit/ruler.c (added):
Add a copy of gtk's former ruler widget.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/panorama-popup.c:
* src/ui/edit/tools.h:
My editors save-all is broekn, great. Too more files belonging to the
commit two down below.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/volume-popup.c:
Fix wrong gtk_widget_hide_all() replacement.
2011-12-04 Stefan Sauer <[email protected]>
* src/ui/edit/machine-preferences-dialog.c:
* src/ui/edit/machine-properties-dialog.c:
* src/ui/edit/main-menu.c:
* src/ui/edit/main-page-info.c:
* src/ui/edit/main-page-machines.c:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-page-waves.c:
* src/ui/edit/main-window.c:
* src/ui/edit/panorama-popup.c:
* src/ui/edit/render-dialog.c:
* src/ui/edit/settings-page-audiodevices.c:
* src/ui/edit/signal-analysis-dialog.c:
* src/ui/edit/tools.h:
* src/ui/edit/volume-popup.c:
Replace more deprecated API (mainly combobox-text).
2011-12-03 Stefan Sauer <[email protected]>
* configure.ac:
Fix deprecation flags.
2011-12-03 Stefan Sauer <[email protected]>
* src/ui/edit/about-dialog.c:
And two more deprecated functions replaced.
2011-12-03 Stefan Sauer <[email protected]>
* src/ui/edit/about-dialog.c:
* src/ui/edit/crash-recover-dialog.c:
* src/ui/edit/tip-dialog.c:
Remove 3 function that got deprecated without replacement in gtk 2.24.
2011-12-03 Stefan Sauer <[email protected]>
* po/cs.po:
* po/da.po:
* po/de.po:
* po/fi.po:
* po/fr.po:
* po/id.po:
* po/nl.po:
* po/nn.po:
* po/vi.po:
Update translations from translationproject.org
2011-12-02 Stefan Sauer <[email protected]>
* NEWSLETTER:
Wrote and send newsletter.
2011-12-02 Stefan Sauer <[email protected]>
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
* tests/Makefile.am:
Fix left over files (make distcheck warnings).
2011-12-01 Stefan Sauer <[email protected]>
* configure.ac:
* docs/reference/bt-ic/Makefile.am:
* docs/reference/bt-ic/buzztrax-ic-docs.sgml:
* docs/reference/bt-ic/buzztrax-ic-sections.txt.in:
* src/lib/ic/Makefile.am:
* docs/reference/bt-ic/buzztrax-ic-sections.txt.in (added):
* docs/reference/bt-ic/buzztrax-ic-sections.txt (deleted):
Make doc sections fully conditional.
2011-12-01 Stefan Sauer <[email protected]>
* docs/reference/bt-edit/buzztrax-edit-docs.sgml:
* docs/reference/bt-edit/buzztrax-edit-sections.txt:
Doc maintenance.
2011-12-01 Stefan Sauer <[email protected]>
* po/POTFILES.in:
* src/ui/edit/Makefile.am:
Fix desktop file handling (again).
2011-12-01 Stefan Sauer <[email protected]>
* docs/reference/bt-edit/buzztrax-edit-sections.txt:
Doc maintenance.
2011-12-01 Stefan Sauer <[email protected]>
* tests/bt-edit-cli.sh:
* tests/xmlvalid.sh:
Test script cleanups.
2011-12-01 Stefan Sauer <[email protected]>
* src/lib/core/libbuzztrax-core/song.h:
Forgot to save the file. This belongs to last commit.
2011-12-01 Stefan Sauer <[email protected]>
* docs/reference/bt-core/buzztrax-core-sections.txt:
* src/lib/core/song.c:
The xml pipeline stuff is deprecated upstream and removed in 0.11. Its
also of limited use, so remove it too.
2011-12-01 Stefan Sauer <[email protected]>
* src/lib/core/setup.c:
Add a ref to a commit that helps us a bit.
* tests/lib/core/e-network.c:
Split the dynamic linking tests.
2011-11-29 Stefan Sauer <[email protected]>
* docs/help/bt-edit/C/buzztrax-edit.xml:
Small doc update.
2011-11-29 Stefan Sauer <[email protected]>
* design/gst/dynlink3.c:
* design/gst/dynlink3.sh:
Add more checks for return values.
2011-11-27 Stefan Sauer <[email protected]>
* src/lib/core/machine.c:
* src/lib/core/wire.c:
Fix warnings about droping const.
2011-11-25 Stefan Sauer <[email protected]>
* design/input/gstinput.c:
Make fake input toy more flexible.
2011-11-25 Stefan Sauer <[email protected]>
* design/gst/dynlink3.c:
0.11 porting.
2011-11-15 Stefan Sauer <[email protected]>
* design/gst/dynlink3.c:
* design/input/gstinput.c:
* design/input/uinput.c:
* src/lib/core/setup.c:
* src/lib/core/sink-bin.c:
* design/input/uinput.c (added):
* design/input/gstinput.c (added):
More examples.
2011-11-08 Stefan Sauer <[email protected]>
* src/lib/ic/input-device.c:
Add a missing cast to avoid reinterpreting the values in a wrong way
(caused skips in controller movements).
2011-11-02 Stefan Sauer <[email protected]>
* design/gst/tonematrix.c:
Add tempo and scale controls.
2011-11-02 Stefan Sauer <[email protected]>
* design/gst/tonematrix.c:
More de-crufting.
2011-11-02 Stefan Sauer <[email protected]>
* design/gst/tonematrix.c:
Remove some cruft and add more comments.
2011-11-02 Stefan Sauer <[email protected]>
* design/gst/tonematrix.c:
* design/gst/tonematrix.c (added):
Add a toy example.
2011-10-28 Stefan Sauer <[email protected]>
* src/lib/core/setup.c:
More debug logging.
2011-10-28 Stefan Sauer <[email protected]>
* src/lib/core/setup.c:
Refactor updating play_seek_event, remove dead code.
2011-10-26 Stefan Sauer <[email protected]>
* src/lib/core/song.c:
Update comments.
2011-10-26 Stefan Sauer <[email protected]>
* design/gst/controller.c:
* design/gst/dynlink2.c:
* design/gst/dynlink3.c:
* design/gst/dynlink4.c:
* design/gst/dynlink4.sh:
* design/gst/seekinit.c:
* design/gst/dynlink4.sh (svn:executable):
* design/gst/seekinit.c (added):
* design/gst/dynlink4.sh (added):
* design/gst/dynlink4.c (added):
More test apps and cleanups in the others.
2011-10-20 Stefan Sauer <[email protected]>
* design/gst/dynlink3.sh:
* design/gst/dynlink3.sh (svn:executable):
* design/gst/dynlink3.sh (added):
* design/gst/dynlink2.sh (added):
* design/gst/dynlink.sh (deleted):
It is easier to have two scripts.
2011-10-20 Stefan Sauer <[email protected]>
* design/gst/dynlink.sh:
* design/gst/dynlink2.c:
* design/gst/dynlink3.c:
* design/gst/dynlink.sh (added):
* design/gst/dynlink3.c (added):
* design/gst/dynlink2.sh (deleted):
More test code.
2011-10-19 Stefan Sauer <[email protected]>
* src/lib/core/song.c:
* src/ui/edit/signal-analysis-dialog.c:
Comments and logging.
2011-10-19 Stefan Sauer <[email protected]>
* src/lib/core/wire.c:
Lower latency.
2011-10-13 Stefan Sauer <[email protected]>
* src/lib/core/sink-bin.c:
Add (commented out) hack to record in realtime.
* src/ui/edit/render-progress.c:
Actually return the proper code on EOS to not always remove the file.
2011-10-13 Stefan Sauer <[email protected]>
* src/ui/edit/render-progress.c:
Improve error handling. Delete partial output files on error.
2011-10-13 Stefan Sauer <[email protected]>
* src/lib/core/sink-bin.c:
Add a queue in record+play mode to play branch as well.
2011-10-13 Stefan Sauer <[email protected]>
* src/lib/core/song.c:
Also stop if pipeline is not in NULL state. This helps to stop in
error cases.
2011-10-13 Stefan Sauer <[email protected]>
* src/lib/core/machine.c:
Ensure unique machine names.
* tests/lib/core/t-machine.c:
Add a test for renaming failure.
2011-10-13 Stefan Sauer <[email protected]>
* design/gst/dynlink2.c:
Check more return codes. Cleanup the signal watch. Do a seek to
kickstart the pipeline.
2011-10-13 Stefan Sauer <[email protected]>
* design/gst/dynlink2.c:
Turn printf into locking.
* design/gst/dynlink2.sh:
* design/gst/dynlink2.sh (svn:executable):
* design/gst/dynlink2.sh (added):
Add starter for convenience.
2011-10-13 Stefan Sauer <[email protected]>
reviewed by: <delete if not using a buddy>
patch by: <delete if not someone else's patch>
* design/gst/dynlink2.c:
* po/cs.po:
* po/da.po:
* po/de.po:
* po/fi.po:
* po/fr.po:
* po/id.po:
* po/nl.po:
* po/nn.po:
* po/vi.po:
* src/lib/core/setup.c:
2011-10-12 Stefan Sauer <[email protected]>
* design/gst/dynlink.c:
Cleanups.
* design/gst/dynlink2.c:
* design/gst/dynlink2.c (added):
Another test program.
2011-10-07 Stefan Sauer <[email protected]>
* AUTHORS:
* src/ui/edit/about-dialog.c:
More translation preps.
2011-10-07 Stefan Sauer <[email protected]>
* README:
Update README.
* src/ui/edit/crash-recover-dialog.c:
* src/ui/edit/machine-properties-dialog.c:
* src/ui/edit/main-page-machines.c:
* src/ui/edit/main-toolbar.c:
* src/ui/edit/main-window.c:
* src/ui/edit/signal-analysis-dialog.c:
* src/ui/edit/tip-dialog.c:
Spell check ui strings.
2011-10-07 Stefan Sauer <[email protected]>
* docs/reference/bt-core/buzztrax-core-sections.txt:
* src/lib/core/core.c:
* src/lib/core/libbuzztrax-core/core.h:
* src/lib/core/tools.c:
* tests/m-bt-cmd.c:
* tests/m-bt-core.c:
* tests/m-bt-edit.c:
Improve valgrinding experience in the tests by explicitly cleaning up
at the end of tests.
2011-10-07 Stefan Sauer <[email protected]>
* buzztrax.supp:
Add a test function to the suppressions.
2011-10-07 Stefan Sauer <[email protected]>
* src/lib/core/setup.c:
Cleanup docs and comments. Fix the graph depth for wires.
2011-10-04 Stefan Sauer <[email protected]>
* src/lib/core/setup.c:
Improve pad_block handling.
2011-10-04 Stefan Sauer <[email protected]>
* src/lib/core/wave.c:
Don't leak the pipeline.
2011-10-04 Stefan Sauer <[email protected]>
* src/lib/core/machine.c:
* src/lib/core/wire.c:
Add assert to ensure that we don't create existing objects and leak
the previous instances.
2011-10-04 Stefan Sauer <[email protected]>
* tests/lib/core/t-source-machine.c:
Fix bogus test.
2011-10-04 Stefan Sauer <[email protected]>
* NEWSLETTER:
Wrote and sent NEWS.
* TODO:
Update TODO.
2011-10-04 Stefan Sauer <[email protected]>
* tests/songs/melo5.xml:
Also commit song that I forgot to save.
2011-10-04 Stefan Sauer <[email protected]>
* buzztrax.supp:
Update the suppression file.
2011-10-04 Stefan Sauer <[email protected]>
* tests/Makefile.am:
* tests/songs/buzz1.xml:
* tests/songs/buzz2.xml:
* tests/songs/buzz3.xml:
* tests/songs/buzz4.xml:
* tests/songs/buzz5.xml:
* tests/songs/buzz9.xml:
* tests/songs/combi1.xml:
* tests/songs/combi2.xml:
* tests/songs/combi3.xml:
* tests/songs/melo2.xml:
* tests/songs/melo5.xml:
* tests/songs/melo6.xml:
* tests/songs/melo6.xml (added):
Tune the demo songs a bit. Replace some binary only buzz machines with
ported machines.
2011-10-04 Stefan Sauer <[email protected]>
* src/ui/edit/main-window.c:
Don't deref song==NULL. Add a todo comment.
2011-09-29 Stefan Sauer <[email protected]>
* tests/lib/core/e-song-io-native.c:
Don't leak the wavelevel from the test.
2011-09-29 Stefan Sauer <[email protected]>
* src/lib/core/song.c:
Also kill the timeout when stopping the stop.
* tests/lib/core/t-network.c:
* tests/lib/core/t-song.c:
Stop the song in the tests.
2011-09-28 Stefan Sauer <[email protected]>
* tests/lib/core/e-song-io-native.c:
More logging.
2011-09-28 Stefan Sauer <[email protected]>
* src/lib/core/wire.c:
Don't do pad_blocking for deactive wires when add/remove wire-
analyzers. Fixes #29
2011-09-28 Stefan Sauer <[email protected]>
* src/lib/core/setup.c:
Disable locking src-pads when removing elements. That is not needed,
as we stop the elements anyway and also remove them.
2011-09-26 Stefan Sauer <[email protected]>
* tests/lib/core/e-song-io-native.c:
No need to create an extra test sample.
2011-09-26 Stefan Sauer <[email protected]>
* src/lib/core/setup.c:
A better fix for the lockup in when dynamically editing a song. The
locked_state order did not help and eventually made it worse. The key
is to not block the pad if it is flushing.
2011-09-23 Stefan Kost <[email protected]>
* src/lib/core/setup.c:
* tests/lib/core/e-network.c:
Add more logging. Fix oder of changing the element state and locking to
prevent lockup.
2011-09-22 Stefan Sauer <[email protected]>
* src/ui/edit/main-menu.c:
Don't leak recent_info.
2011-09-21 Stefan Sauer <[email protected]>
* NEWSLETTER:
Start writing down what we did this month.
* buzztrax.supp:
Update suppression file.
2011-09-21 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/sequence-grid-model.c:
Don't leak strings in the model and filters.
2011-09-20 Stefan Sauer <[email protected]>
* src/lib/core/pattern.c:
* src/ui/edit/edit-application.c:
Some logging cleanup.
* tests/Makefile.am:
Small valgrind test tweaks.
2011-09-20 Stefan Sauer <[email protected]>
* src/ui/edit/pattern-list-model.c:
Fix leak of pattern ref.
2011-09-20 Stefan Sauer <[email protected]>
* src/ui/edit/main-window.c:
Don't leak "since" string for unsaved-changes warning message.
2011-09-16 Stefan Sauer <[email protected]>
* src/lib/core/machine.c:
* src/lib/core/pattern.c:
* src/lib/core/processor-machine.c:
* src/lib/core/sequence.c:
* src/lib/core/setup.c:
* src/lib/core/sink-machine.c:
* src/lib/core/song.c:
* src/lib/core/source-machine.c:
* src/lib/core/wire.c:
* src/ui/edit/edit-application.c:
* src/ui/edit/interaction-controller-learn-dialog.c:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-toolbar.c:
Unify logging of ref_ct more to easy grepping.
2011-09-16 Stefan Sauer <[email protected]>
* src/ui/edit/main-pages.c:
* src/ui/edit/tools.c:
* src/ui/edit/tools.h:
Add an env-var that allows us in debug mode to configure a few things
in the UI for easier testing.
2011-09-16 Stefan Sauer <[email protected]>
* src/ui/edit/interaction-controller-learn-dialog.c:
* src/ui/edit/main-page-sequence.c:
Unify logging of ref_ct more to easy grepping.
2011-09-16 Stefan Sauer <[email protected]>
* src/lib/core/machine.c:
Make debugging code more clearly.
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/main-page-machines.c:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/pattern-editor.c:
* src/ui/edit/ui-resources.c:
* src/ui/edit/wire-canvas-item.c:
Unify logging of ref_ct more to easy grepping.
2011-09-16 Stefan Sauer <[email protected]>
* src/ui/edit/change-log.c:
But also don't use an invalidated filename.
2011-09-16 Stefan Sauer <[email protected]>
* src/ui/edit/change-log.c:
Don't overwrite (and leak) the ptr array.
2011-09-16 Stefan Sauer <[email protected]>
* src/ui/edit/pattern-editor.c:
Chain-up in unrealize() to not leak the gdk_window.
2011-09-16 Stefan Sauer <[email protected]>
* src/ui/edit/machine-list-model.c:
Don't leak pixbufs.
2011-09-15 Stefan Sauer <[email protected]>
* src/ui/edit/main-menu.c:
Use change_log from instance instead of getting a new one.
2011-09-15 Stefan Sauer <[email protected]>
* src/ui/edit/machine-list-model.c:
* src/ui/edit/pattern-list-model.c:
Remove weak pointers in dispose.
2011-09-15 Stefan Sauer <[email protected]>
* src/lib/core/song.c:
Also disconnect signal handler on async done.
2011-09-15 Stefan Sauer <[email protected]>
* src/lib/ic/abs-range-control.c:
* src/lib/ic/input-device.c:
* src/lib/ic/libbuzztrax-ic/abs-range-control.h:
Use long for the parameters. Makes valgrind happy on 64 bit too.
2011-09-15 Stefan Sauer <[email protected]>
* configure.ac:
Improve valgrind detection.
2011-09-15 Stefan Sauer <[email protected]>
* tests/bt-check.c:
Raise the memory limmit for the tests from 256Mb to 1Gb. That fixes
the tests on 64bit.
* tests/m-bt-cmd.c:
* tests/m-bt-core.c:
* tests/m-bt-edit.c:
* tests/m-bt-ic.c:
Cleanup the tests.
2011-09-15 Stefan Sauer <[email protected]>
* docs/help/bt-edit/C/aspell.pws:
* docs/help/bt-edit/C/buzztrax-edit.xml:
Spell check docs.
2011-09-15 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-info.c:
Disconnect on_song_changed in dispose. Fixes the tests even more.
2011-09-15 Stefan Sauer <[email protected]>
* NEWSLETTER:
Sent news.
2011-09-14 Stefan Kost <[email protected]>
* src/ui/edit/main-page-sequence.c:
Disconnect on_song_changed in dispose. Fixes the tests.
2011-09-14 Stefan Kost <[email protected]>
* po/POTFILES.in:
Add new file.
2011-09-07 Stefan Sauer <[email protected]>
* tests/lib/core/e-sequence.c:
Disable a failing test and explain.
* tests/m-bt-edit.c:
Move g_set_appname() so that we don't call it multiple times when
running with fork disabled.
2011-08-31 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-machines.c:
Cache the setup in the instance to avoid lots of lookups.
2011-08-30 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-machines.c:
Implement 'unmute all'.
2011-08-30 Stefan Sauer <[email protected]>
* docs/reference/bt-edit/buzztrax-edit-sections.txt:
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/machine-canvas-item.h:
* src/ui/edit/wire-canvas-item.c:
Add more properties to make the dialog state trackable.
2011-08-30 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-patterns.c:
Fix newlines in changelog after column edits.
2011-08-30 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-patterns.c:
Undo/redo for wire-params on wire-removal.
2011-08-30 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-machines.c:
No need to log position on removal as we track position now.
2011-08-30 Stefan Sauer <[email protected]>
* docs/reference/bt-edit/buzztrax-edit-sections.txt:
* src/ui/edit/main-page-machines.c:
* src/ui/edit/wire-canvas-item.c:
* src/ui/edit/wire-canvas-item.h:
Undo/Redo for machine property window and wire analyzer window.
2011-08-29 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-machines.c:
Fix ',' -> '.' bug in sources. Dunno how this ever worked.
2011-08-29 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-machines.c:
Prepare to handle more machine/wire state for undo/redo.
2011-08-29 Stefan Sauer <[email protected]>
* src/ui/edit/sequence-grid-model.c:
Log improvements.
2011-08-29 Stefan Sauer <[email protected]>
* src/lib/core/marshal.list:
* src/lib/core/sequence.c:
Add track-{added,removed} signals.
* src/ui/edit/main-page-machines.c:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-sequence.c:
Rework undo redo for machine-removed. After a lot of experiments,
leave a big comment in bt_main_page_machines_delete_machine() and
explain the troubles. Use signal handler blocking as a solution until
we have a better idea.
2011-08-29 Stefan Sauer <[email protected]>
* src/ui/edit/main-page-patterns.c:
Remove new lines in changelog caused by single pattern edits.
2011-08-29 Stefan Sauer <[email protected]>
patch by: [email protected]
* src/lib/ic/ic_private.h:
Fix the build.
2011-08-27 Stefan Sauer <[email protected]>
* docs/help/bt-edit/C/buzztrax-edit.xml:
Improve user-docs on sequence editing (labels and patterns).
* src/ui/edit/main-page-sequence.c:
Expand sequence on edit (like we did for labels).