-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog-0.4
2942 lines (2275 loc) · 81.8 KB
/
ChangeLog-0.4
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
=== release 0.4.0 ===
2008-11-26 Stefan Kost <[email protected]>
* NEWS:
Prepare release.
* po/LINGUAS:
* po/da.po:
* po/da.po (added):
Add new translation.
2008-11-24 Stefan Kost <[email protected]>
* src/lib/core/buzzcallbacks.c:
* src/ui/edit/machine-properties-dialog.c:
* src/ui/edit/main-toolbar.c:
Downgrade some warning-logs from development.
2008-11-24 Stefan Kost <[email protected]>
* README:
* src/lib/core/sink-bin.c:
* src/lib/core/song.c:
Remove hack, now that premature eos is fixed in GStreamer (needs
gst-plugins-base 0.10.22).
2008-11-24 Stefan Kost <[email protected]>
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/main-toolbar.c:
Also use a mutex here to fix concurret access.
* src/ui/edit/settings-page-audiodevices.c:
Add todo.
2008-11-23 Stefan Kost <[email protected]>
* docs/help/bt-edit/C/figures/machine-preferences.png:
* docs/help/bt-edit/C/figures/machine-properties.png:
* docs/help/bt-edit/C/figures/main-window.png:
* docs/help/bt-edit/C/figures/page-info-view.png:
* docs/help/bt-edit/C/figures/page-machine-view.png:
* docs/help/bt-edit/C/figures/page-pattern-view.png:
* docs/help/bt-edit/C/figures/page-sequence-view.png:
* docs/help/bt-edit/C/figures/page-wavetable-view.png:
* docs/help/bt-edit/C/figures/pattern-properties.png:
* docs/help/bt-edit/C/figures/settings-audio.png:
* docs/help/bt-edit/C/figures/settings-colors.png:
* docs/help/bt-edit/C/figures/settings-directories.png:
* docs/help/bt-edit/C/figures/settings-ic.png:
* docs/help/bt-edit/C/figures/settings-pc.png:
* docs/help/bt-edit/C/figures/settings-shortcuts.png:
* tests/Makefile.am:
Update all screenshot and force english locale.
* src/ui/edit/machine-properties-dialog.c:
Make machien windows a bit wider.
* tests/bt-check.c:
More experiments with settings.
* tests/songs/melo3.xml:
Improve machine placement for screenshot.
* po/de.po:
Add official translation.
* src/lib/core/sink-bin.c:
Play with one more option for the premature end issues.
2008-11-22 Stefan Kost <[email protected]>
* docs/help/bt-edit/C/Makefile.am:
* docs/help/bt-edit/C/buzztrax-edit.xml:
* docs/help/bt-edit/C/figures/machine-preferences.png:
* docs/help/bt-edit/C/figures/machine-properties.png:
* docs/help/bt-edit/C/figures/main-window.png:
* docs/help/bt-edit/C/figures/page-info-view.png:
* docs/help/bt-edit/C/figures/page-machine-view.png:
* docs/help/bt-edit/C/figures/page-pattern-view.png:
* docs/help/bt-edit/C/figures/page-sequence-view.png:
* docs/help/bt-edit/C/figures/page-wavetable-view.png:
* docs/help/bt-edit/C/figures/pattern-properties.png:
* docs/help/bt-edit/C/figures/settings-audio.png:
* docs/help/bt-edit/C/figures/settings-colors.png:
* docs/help/bt-edit/C/figures/settings-directories.png:
* docs/help/bt-edit/C/figures/settings-ic.png:
* docs/help/bt-edit/C/figures/settings-pc.png:
* docs/help/bt-edit/C/figures/settings-shortcuts.png:
Improve docs.
* src/ui/edit/main-toolbar.c:
Comment update (stereo is working fine since 0.3).
2008-11-22 Stefan Kost <[email protected]>
* src/lib/core/sink-bin.c:
* src/lib/core/song.c:
Make testing code conditional. Do position queries on master and not
on the whole pipeline. Seems to fix the premature stop and is faster
too.
2008-11-21 Krzysztof Foltman <[email protected]>
* src/lib/core/pattern.c:
Fix downward interpolation (blending) for uints.
2008-11-21 Stefan Kost <[email protected]>
* src/ui/edit/main-menu.c:
Fix property name when using pattern->copy.
2008-11-21 Krzysztof Foltman <[email protected]>
* src/ui/edit/main-toolbar.c:
Make volume slider logarithmic.
2008-11-21 Stefan Kost <[email protected]>
* src/lib/core/song.c:
Define extra bars as a workaround for premature stopping. Need to
figure the real reason still.
2008-11-20 Stefan Kost <[email protected]>
* src/ui/edit/main-page-sequence.c:
Use a mutex to protect access to self from two thread contexts.
2008-11-20 Stefan Kost <[email protected]>
* design/bindings/play.js:
Add javascript example.
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
Fix gi support (also scann *c files).
* src/lib/core/core.c:
Add annotation.
* src/ui/edit/main-page-sequence.c:
Add comment abou glib warning we get.
2008-11-19 Stefan Kost <[email protected]>
* TODO:
Update.
* po/nl.po:
Update translations.
* src/ui/edit/machine-properties-dialog.c:
Re-indent.
* src/ui/edit/main-toolbar.c:
Handle controller interaction.
2008-11-18 Stefan Kost <[email protected]>
* design/bindings/play.py:
Add comment about env-var.
* src/lib/core/wire.c:
Better logging.
2008-11-17 Stefan Kost <[email protected]>
* tests/bt-check.c:
Ubuntu gcc is picky. Fix two warnings.
2008-11-16 Stefan Kost <[email protected]>
* po/LINGUAS:
* po/de.po:
* po/nl.po (added):
Add dutch translations. Fix fuzzyness of german ones.
2008-11-11 Stefan Kost <[email protected]>
* src/ui/edit/gtkvumeter.c:
Use less deprecated API. Spotted by Brendan Howell.
2008-11-08 Stefan Kost <[email protected]>
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
gir typelibs are now in libdir.
2008-11-06 Stefan Kost <[email protected]>
patch by: Marc Broekhuis <[email protected]>
* Makefile.am:
Use real tabs.
2008-11-04 Stefan Kost <[email protected]>
* src/lib/core/song.c:
Make expession easier to understand.
* src/ui/edit/main-statusbar.c:
Add idea.
* src/ui/edit/main-toolbar.c:
Remove one warning. Update playback pos more often.
2008-11-03 Stefan Kost <[email protected]>
* NEWSLETTER:
Sent news.
* src/ui/edit/machine-properties-dialog.c:
Make label columns wider.
2008-11-03 Stefan Kost <[email protected]>
* Makefile.am:
Add test target.
* src/ui/edit/edit-application.c:
Work around gcc warning :/
2008-11-02 Stefan Kost <[email protected]>
* po/de.po:
Add official german translations.
2008-11-02 Stefan Kost <[email protected]>
* src/lib/core/Makefile.am:
And fix "make dist".
2008-11-02 Stefan Kost <[email protected]>
* configure.ac:
* po/de.po:
* src/lib/core/core.c:
* src/lib/ic/ic.c:
* src/ui/cmd/bt-cmd.c:
* src/ui/edit/about-dialog.c:
* src/ui/edit/bt-edit.c:
Fix gettext handling.
2008-11-02 Stefan Kost <[email protected]>
* NEWSLETTER:
Write news.
* TODO:
Planning.
2008-11-02 Stefan Kost <[email protected]>
* src/lib/ic/libbuzztrax-ic/abs-range-control.h:
* src/lib/ic/libbuzztrax-ic/midi-device.h:
* src/lib/ic/libbuzztrax-ic/trigger-control.h:
Add missing includes, helps the gir-scanner.
2008-11-02 Stefan Kost <[email protected]>
* docs/reference/bt-core/buzztrax-core-sections.txt:
* src/lib/core/libbuzztrax-core/machine-methods.h:
* src/lib/core/machine.c:
* src/lib/core/sequence.c:
* src/ui/edit/machine-properties-dialog.c:
Add API to reset default values only if there is no control-point at
ts=0. Reorder 'voice' param in machine api for consistency.
2008-10-29 Stefan Kost <[email protected]>
* src/lib/core/machine.c:
Add todos.
* src/ui/edit/machine-properties-dialog.c:
Reset default controller values at ts=0, after live changes. Needs
api in machine.c for final fix.
* src/ui/edit/edit-application.c:
* src/ui/edit/main-menu.c:
* src/ui/edit/main-page-patterns.c:
Fix one refcount leak. Fix access to dangling pointer shadowed by the
leak. Fix initial statusbar update on pattern-page.
2008-10-24 Stefan Kost <[email protected]>
* src/ui/edit/main-page-machines.c:
Avoid relative scroll positions to become NAN (when window is big
enough to not need scrolling).
2008-10-23 Stefan Kost <[email protected]>
* src/ui/edit/main-page-sequence.c:
Rework handling of allocations to fix horizontal scrolling.
* src/ui/edit/sequence-view.c:
Always draw dashed lines from zero to avoid misallignments of
patterns.
2008-10-21 Stefan Kost <[email protected]>
* src/ui/edit/tools.c:
Fix debug log message.
2008-10-20 Stefan Kost <[email protected]>
* docs/buzztrax.xsd:
More docs.
* src/lib/core/sequence.c:
* src/lib/core/song.c:
More logging.
* src/lib/core/song-info.c:
* src/ui/edit/main-page-info.c:
Put file-name into song title if we save and title is still the
default.
* src/ui/edit/pattern-editor.c:
* src/ui/edit/tools.h:
Focus on clicks
2008-10-20 Stefan Kost <[email protected]>
* src/ui/edit/main-statusbar.c:
Use "-" instead of "_" in signal names.
2008-10-17 Stefan Kost <[email protected]>
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
New gir tool syntax.
2008-10-15 Stefan Kost <[email protected]>
* tests/bt-check.h:
Also remove include here (belongs to constructor cleanup).
* tests/gtkdoccomplete.sh:
* tests/xmlvalid.sh:
Fix tests.
2008-10-15 Stefan Kost <[email protected]>
* src/lib/core/buzzcallbacks.c:
Implement missing function. Be more failsave.
* src/lib/core/core.c:
Try annotations.
* src/lib/core/libbuzztrax-core/core.h:
Include always.
* docs/reference/bt-core/buzztrax-core-sections.txt:
* src/lib/core/application.c:
* src/lib/core/libbuzztrax-core/application-private.h:
* src/ui/cmd/cmd-application.c:
* src/ui/edit/edit-application.c:
* tests/lib/core/m-bt-core.h:
* tests/lib/core/t-song-io-native.c:
* tests/lib/core/t-setup.c:
* tests/lib/core/e-processor-machine.c:
* tests/lib/core/t-machine.c:
* tests/lib/core/t-sink-machine.c:
* tests/lib/core/t-song.c:
* tests/lib/core/t-wire.c:
* tests/lib/core/t-sequence.c:
* tests/lib/core/e-network.c:
* tests/lib/core/e-song.c:
* tests/lib/core/t-network.c:
* tests/lib/core/e-sequence.c:
* tests/lib/core/e-pattern.c:
* tests/lib/core/t-source-machine.c:
* tests/lib/core/t-pattern.c:
* tests/lib/core/e-song-info.c:
* tests/lib/core/e-setup.c:
* tests/lib/core/e-source-machine.c:
* tests/lib/core/e-machine.c:
* tests/lib/core/e-song-io-native.c:
Overload constructors for proper post init.
* src/lib/core/libbuzztrax-core/song-io-methods.h:
* src/lib/core/song-io.c:
Fix method signatures.
* src/lib/core/machine.c:
* src/lib/core/wire.c:
Better loggings
* src/ui/edit/machine-actions.c:
Escape markup in description too.
* src/ui/edit/main-page-machines.c:
Ideas.
2008-10-12 Stefan Kost <[email protected]>
* src/lib/core/buzzcallbacks.c:
Fix wave index and implement volume+flag queries.
* src/lib/core/machine.c:
* src/lib/core/pattern.c:
* src/lib/core/sink-bin.c:
Fix enums for bindings.
* src/lib/core/wave.c:
* src/lib/core/wavelevel.c:
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-page-waves.c:
Ideas and debug log tweaking.
* src/ui/edit/pattern-editor.c:
Clutch for redraw bug. Need proper fix for faster redraws.
* src/ui/edit/wave-viewer.c:
Set peaks to zero if data is NULL.
2008-10-12 Stefan Kost <[email protected]>
* configure.ac:
* design/python/play.py:
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
Check for gir tools and build typelib. Example for python bindings.
* src/lib/ic/libbuzztrax-ic/Makefile.am:
Move distclean target.
* src/lib/ic/libbuzztrax-ic/ic.h:
Don't include config.h here.
* src/ui/cmd/bt-cmd.h:
* src/ui/edit/bt-edit.h:
Include config.h here instead.
2008-10-08 Stefan Kost <[email protected]>
* NEWSLETTER:
sent news.
* docs/reference/bt-core/buzztrax-core-sections.txt:
* src/lib/core/libbuzztrax-core/machine-methods.h:
* src/lib/core/machine.c:
Cleanup API. Use current values as defaults in controller timelines.
* src/lib/core/sequence.c:
* src/lib/core/sink-bin.c:
Downgrade some debug logs.
* src/ui/edit/machine-properties-dialog.c:
Sync the code in simillar methods.
2008-10-03 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
Don't crash on pattern with no parameters.
2008-10-02 Stefan Kost <[email protected]>
* docs/buzztrax.xsd:
Docuemnt schema.
2008-09-30 Stefan Kost <[email protected]>
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/main-page-machines.c:
Implement proper centering when resizing the machine view.
2008-09-29 Stefan Kost <[email protected]>
* src/ui/edit/bt-edit.c:
* src/ui/edit/edit-application.c:
* src/ui/edit/interaction-controller-menu.c:
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/machine-menu.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-machines.h:
* 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-pages.c:
* src/ui/edit/main-statusbar.c:
* src/ui/edit/main-toolbar.c:
* src/ui/edit/main-window.c:
* src/ui/edit/playback-controller-socket.c:
* src/ui/edit/render-progress.c:
* src/ui/edit/sequence-view.c:
* src/ui/edit/settings-page-audiodevices.c:
* src/ui/edit/settings-page-directories.c:
* src/ui/edit/settings-page-interaction-controller.c:
* src/ui/edit/settings-page-playback-controller.c:
Leak fixes and hopefully non-crashing shutdown in the case of no
working audio sink.
2008-09-26 Stefan Kost <[email protected]>
* NEWSLETTER:
Prepare NEWS.
* design/gui/pated.c:
* design/gui/svgcanvas.c:
More testing.
* src/ui/edit/main-page-machines.c:
* src/ui/edit/main-page-machines.h:
Enlarge the canvas a bit. Need proper workaround for
http://bugzilla.gnome.org/show_bug.cgi?id=553997
2008-09-25 Stefan Kost <[email protected]>
* design/gst/timing.c:
* src/lib/core/libbuzztrax-core/sequence-methods.h:
* src/lib/core/sequence.c:
* src/lib/core/song.c:
* src/ui/cmd/cmd-application.c:
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-statusbar.c:
* src/ui/edit/playback-controller-socket.c:
* src/ui/edit/render-progress.c:
Now that error propagation is fixed in plugins, bring bar time back to
guint64 to make seeking work again. It means that not all bpms are
done exactly, but on the other hand stuff won't drift out of sync
suddenly.
2008-09-24 Stefan Kost <[email protected]>
* design/gst/timing.c:
Timing test code.
* src/lib/core/sequence.c:
Remove some debug code and disable quantization again.
* src/ui/edit/main-toolbar.c:
Don't stop playback on warnings.
2008-09-24 Stefan Kost <[email protected]>
* docs/reference/bt-cmd/Makefile.am:
* docs/reference/bt-core/Makefile.am:
* docs/reference/bt-edit/Makefile.am:
* docs/reference/bt-ic/Makefile.am:
Get rid of INCLUDES variable (automake deprecates it). Use namespace
feature for docs.
2008-09-24 Stefan Kost <[email protected]>
* docs/help/bt-edit/C/buzztrax-edit.xml:
More docs.
2008-09-24 Stefan Kost <[email protected]>
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
* src/ui/cmd/Makefile.am:
* src/ui/edit/Makefile.am:
* tests/Makefile.am:
* tests/lib/core/Makefile.am:
* tests/ui/cmd/Makefile.am:
* tests/ui/edit/Makefile.am:
Get rid of INCLUDES variable (automake deprecates it).
2008-09-22 Stefan Kost <[email protected]>
* Makefile.am:
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
* src/ui/edit/Makefile.am:
make distcehck fixes. correct uninstall for gconf schemas.
* src/ui/edit/main-menu.c:
add a todo.
2008-09-22 Stefan Kost <[email protected]>
* src/ui/edit/machine-preferences-dialog.c:
* src/ui/edit/main-page-info.c:
* src/ui/edit/pattern-properties-dialog.c:
* src/ui/edit/settings-page-playback-controller.c:
Set page-size in spin-buttons to 0.0 as the docs suggest.
2008-09-22 Stefan Kost <[email protected]>
* NEWSLETTER:
Collect news.
2008-09-22 Stefan Kost <[email protected]>
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-toolbar.c:
Drop late level changes.
2008-09-22 Stefan Kost <[email protected]>
* configure.ac:
Display summary after configure.
2008-09-14 Stefan Kost <[email protected]>
* src/lib/core/sequence.c:
Add some test code to figure out needed quantisation fixes for trigger
parameters. Quantize to samples, more work needed.
* src/lib/core/sink-bin.c:
Enforce rendering at 44100 Hz + add resampler (if needed). Foundation
to use other sampling rates later.
2008-09-14 Stefan Kost <[email protected]>
* configure.ac:
We should rename debug mode flag, but as we enable more build
warnings there already also check for link warnings.
2008-09-13 Stefan Kost <[email protected]>
* src/ui/edit/main-page-sequence.c
Correctly set song-length when pressing Ctrl-E on loop-end pos.
2008-09-13 Stefan Kost <[email protected]>
* src/ui/cmd/bt-cmd.c:
* src/ui/edit/bt-edit.c:
* src/ui/edit/main-menu.c:
* src/ui/edit/main-window.c:
* src/ui/edit/playback-controller-socket.c:
Some more bt-edit -> buzztrax-edit replacement. Also harmonize option
strings.
2008-09-10 Stefan Kost <[email protected]>
* src/lib/core/sink-bin.c:
Mark the place where we can enforce a sample-rate.
2008-09-10 Stefan Kost <[email protected]>
* configure.ac:
libbml is optional.
* src/lib/core/Makefile.am:
* src/lib/core/libbuzztrax-core/Makefile.am:
Move DISTCLEAN to where the file is.
2008-09-10 Stefan Kost <[email protected]>
* src/lib/core/song.c:
* src/ui/cmd/cmd-application.c:
Some more logging and cleanups.
* tests/Makefile.am:
* tests/bt-cmd-cli.sh:
* tests/bt-edit-cli.sh:
Run tests via libtool to pickup uninstalled libs.
2008-09-09 Stefan Kost <[email protected]>
* NEWSLETTER:
collect news.
* src/lib/core/machine.c:
* src/lib/core/sink-bin.c:
* src/ui/edit/bt-edit.h:
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/machine-properties-dialog.c:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-waves.c:
* tests/bt-test-plugin.c:
Adjust to gst-buzztrax api break.
2008-09-08 Stefan Kost <[email protected]>
* NEWSLETTER:
Sent news.
* src/lib/core/sink-bin.c:
* src/lib/core/song-info.c:
Update todos.
2008-09-08 Stefan Kost <[email protected]>
* src/lib/core/Makefile.am:
Fix one more use of old libname.
2008-09-07 Stefan Kost <[email protected]>
* src/lib/ic/ic_private.h:
Fix one broken include.
2008-09-07 Stefan Kost <[email protected]>
* NEWSLETTER:
Write news.
* configure.ac:
* docs/reference/bt-cmd/buzztrax-cmd.types:
* docs/reference/bt-core/Makefile.am:
* docs/reference/bt-core/buzztrax-core.types:
* docs/reference/bt-edit/buzztrax-edit.types:
* docs/reference/bt-ic/Makefile.am:
* docs/reference/bt-ic/buzztrax-ic.types:
* src/ui/cmd/bt-cmd.h:
* src/ui/cmd/cmd-application.c:
* src/ui/edit/bt-edit.h:
* src/ui/edit/edit-application.c:
* src/ui/edit/ui-resources-methods.h:
* tests/bt-check.h:
* tests/bt-test-settings.c:
* tests/bt-test-settings.h:
* tests/lib/core/m-bt-core.h:
* tests/m-bt-core.c:
Rename includes.
2008-09-07 Stefan Kost <[email protected]>
* docs/reference/bt-core/Makefile.am:
* docs/reference/bt-cmd/Makefile.am:
* docs/reference/bt-edit/Makefile.am:
* docs/reference/bt-ic/Makefile.am:
* src/lib/core/Makefile.am:
* src/lib/core/libbuzztrax-core.pc.in:
* src/lib/ic/Makefile.am:
* src/lib/ic/libbuzztrax-ic.pc.in:
* src/ui/cmd/Makefile.am:
* src/ui/edit/Makefile.am:
* tests/Makefile.am:
Rename libs.
2008-09-07 Stefan Kost <[email protected]>
* configure.ac:
* src/lib/core/Makefile.am:
* src/lib/ic/Makefile.am:
Rename the pkg-config files.
2008-09-07 Stefan Kost <[email protected]>
* docs/reference/bt-cmd/Makefile.am:
* docs/reference/bt-cmd/bt-cmd-sections.txt:
* docs/reference/bt-cmd/bt-cmd.types:
* docs/reference/bt-ic/Makefile.am:
Rename docs.
2008-09-07 Stefan Kost <[email protected]>
* po/POTFILES.in:
* po/POTFILES.skip:
Update after renames.
2008-09-07 Stefan Kost <[email protected]>
* src/ui/cmd/Makefile.am:
* src/ui/edit/Makefile.am:
* src/ui/edit/buzztrax-edit.desktop.in.in:
* tests/bt-cfg.sh.in:
* tests/bt-cmd-cli.sh:
* tests/bt-cmd-convert.sh:
* tests/bt-cmd-encode.sh:
* tests/bt-cmd-info.sh:
* tests/bt-edit-cli.sh:
* tests/xmlvalid.sh:
Rename application binaries.
2008-09-07 Stefan Kost <[email protected]>
* Makefile.am:
* configure.ac:
* docs/help/bt-edit/C/bt-edit.xml:
* docs/help/bt-edit/Makefile.am:
Rename help-doc files. Makefile cleanups.
2008-09-07 Stefan Kost <[email protected]>
* configure.ac:
* src/ui/edit/Makefile.am:
* src/ui/edit/bt-edit.desktop.in.in:
Rename files.
2008-09-05 Stefan Kost <[email protected]>
* src/lib/core/song-info.c:
Another attempt to get all variants caught to avoid crashing on NULL.
2008-09-04 Stefan Kost <[email protected]>
* src/lib/core/song-io.c:
Rename songio plugin dir. More portable paths.
2008-09-02 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/sequence-methods.h:
* src/lib/core/sequence.c:
* src/lib/core/song.c:
* src/ui/cmd/cmd-application.c:
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-statusbar.c:
* src/ui/edit/playback-controller-socket.c:
* src/ui/edit/render-progress.c:
Change api to use tick-time as double to make most bpm work and not
swallow notes. Also adjust seek-events on tempo changes.
2008-09-01 Stefan Kost <[email protected]>
* src/lib/core/sequence.c:
Refactor ticktime calculation and add todos.
* tests/bt-check.h:
Update api.
2008-09-01 Stefan Kost <[email protected]>
* src/ui/edit/bt-edit.h:
Move include to right place to fix the build.
* src/ui/edit/gtkvumeter.c:
* src/ui/edit/gtkvumeter.h:
Also don't use deprecated gtk stuff here.
2008-09-01 Stefan Kost <[email protected]>
* src/ui/edit/bt-edit.h:
Add a workaround for use of deprecated gtk macros in gnomecanvas.
2008-09-01 Stefan Kost <[email protected]>
* pixmaps/gnome/16x16/menu_processor_machine.png:
* pixmaps/gnome/16x16/menu_sink_machine.png:
* pixmaps/gnome/16x16/menu_source_machine.png:
* pixmaps/gnome/22x22/buzztrax.png:
* pixmaps/gnome/24x24/buzztrax.png:
* pixmaps/gnome/32x32/buzztrax.png:
* pixmaps/gnome/48x48/buzztrax.png:
* pixmaps/gnome/scalable/buzztrax.svg:
* pixmaps/gnome/scalable/effect-bypass.svg:
* pixmaps/gnome/scalable/effect-mute.svg:
* pixmaps/gnome/scalable/effect.svg:
* pixmaps/gnome/scalable/generator-mute.svg:
* pixmaps/gnome/scalable/generator-solo.svg:
* pixmaps/gnome/scalable/generator.svg:
* pixmaps/gnome/scalable/master-mute.svg:
* pixmaps/gnome/scalable/master.svg:
Icon update by Marc.
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/libbtcore/sequence-methods.h:
* src/lib/core/sequence.c:
* src/lib/core/song-info.c:
Update tempo corectly.
* src/lib/core/pattern.c:
Fix on 64 bit platform by putting correct type on the stack.
* src/ui/edit/machine-canvas-item.c:
Don't cast, we have the right type already.
2008-08-28 Stefan Kost <[email protected]>
* configure.ac:
* tests/Makefile.am:
* tests/bt-check.c:
Play with more effectively limiting test runs.
2008-08-26 Stefan Kost <[email protected]>
* 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/panorama-popup.c:
* src/ui/edit/tools.c:
* src/ui/edit/tools.h:
* src/ui/edit/volume-popup.c:
Use save focus-grabs everywhere.
2008-08-25 Stefan Kost <[email protected]>
* src/lib/core/sequence.c:
Comment insert/delete operation for sequence. Refactor to properly
update controller queues.
* src/ui/cmd/cmd-application.c:
Add a fixme.
* src/ui/edit/main-page-sequence.c:
Use "bypass" instead of "thru" like in pattern names. Now that we have
refactored pattern list refresh, use new method.
* src/ui/edit/main-statusbar.c:
Add comment.
2008-08-19 Stefan Kost <[email protected]>
* tests/m-bt-edit.c:
Comments for UI tests.
2008-08-19 Stefan Kost <[email protected]>
* tests/gtkdoccomplete.sh:
Fix output formatting and calculation.
2008-08-18 Stefan Kost <[email protected]>
* src/ui/edit/main-statusbar.c:
Clamp cpu-load by 100.0 right now.
* src/ui/edit/tools.c:
* src/ui/edit/ui-resources.c:
Better workaround than the last one.
2008-08-18 Stefan Kost <[email protected]>
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/ui-resources.c:
Fix crashers when we can't load theme icons. Need a better work-around
for testing.
2008-08-18 Stefan Kost <[email protected]>
* src/ui/edit/machine-canvas-item.c:
More tracing.
2008-08-18 Stefan Kost <[email protected]>
* src/ui/edit/machine-canvas-item.c:
Add more logging to track test failure.
2008-08-18 Stefan Kost <[email protected]>
* src/ui/edit/ui-resources.c:
Don't crash in the log command, when the objects are NULL.
2008-08-18 Stefan Kost <[email protected]>
* src/lib/core/settings.c:
Turn INFO in WARNING.
* tests/bt-test-settings.c:
Preserve changed values.
* tests/lib/core/e-song-io-native.c:
Override audiosink for right test.
2008-08-17 Stefan Kost <[email protected]>
* src/ui/edit/main-menu.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-toolbar.c:
* src/ui/edit/main-window.c:
More "tool bar" -> "toolbar".
* tests/lib/core/e-song-io-native.c:
* tests/lib/core/t-sink-machine.c:
Try to use fakesink as an audiosink to avoid timeouts.
2008-08-16 Stefan Kost <[email protected]>
* src/lib/core/song-info.c:
Don't crash on NULL details.
* src/ui/edit/main-page-sequence.c:
Set cursor to top-left cell, after loading a new song.
2008-08-16 Stefan Kost <[email protected]>
* NEWS:
* NEWSLETTER:
Prepare for release and gather NEWS.
* src/lib/core/song-io.c:
* src/lib/core/song.c:
* src/ui/edit/about-dialog.c:
* src/ui/edit/edit-application.c:
* src/ui/edit/machine-actions.c:
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/machine-rename-dialog.c:
* src/ui/edit/main-menu.c:
* src/ui/edit/main-page-machines.c:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-waves.c:
* src/ui/edit/main-toolbar.c:
* src/ui/edit/main-window.c:
* src/ui/edit/missing-framework-elements-dialog.c:
* src/ui/edit/wire-canvas-item.c:
Apply suggestions from translation project to improve strings. Many
thanks to Benno Schulenberg.
2008-08-16 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
Add mapped -check to all grabs here, maybe we should do this globally
in a helper. Also create new patterns when adding a new source-
machine, like in buzz.
* src/ui/edit/main-page-sequence.c:
Update pattern list also when machine is the same, but pattern has
been added/removed.