-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog-0.1
10853 lines (9021 loc) · 415 KB
/
ChangeLog-0.1
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.1.0 ===
2006-10-22 Stefan Kost <[email protected]>
* src/lib/core/pattern.c: (bt_pattern_set_property):
don't access self->priv->machine if it was set to NULL
2006-10-22 Stefan Kost <[email protected]>
* NEWSLETTER:
report about buildbot news and patternwidget progress
* src/lib/core/song.c: (bt_song_is_playable),
(on_song_state_changed):
more logging to debug build-slave failure
2006-10-16 Stefan Kost <[email protected]>
* src/lib/core/setup.c: (bt_setup_dispose):
* src/lib/core/song.c: (bt_song_new):
don't acces NULL point, not even from LOG statements :)
2006-10-16 Stefan Kost <[email protected]>
* src/lib/core/processor-machine.c:
(bt_processor_machine_persistence_load):
* src/lib/core/sink-machine.c: (bt_sink_machine_persistence_load):
don't do post init when super::persistence_load failed
2006-10-16 Stefan Kost <[email protected]>
* Makefile.am:
no stalled icons, if uninstalling and re-installing
* src/lib/core/machine.c: (bt_machine_make_internal_element),
(bt_machine_setup), (bt_machine_dispose):
* src/lib/core/song-io-native.c: (bt_song_io_native_detect):
* src/lib/core/song.c: (bt_song_write_to_dot_file):
fixing leaks
* tests/bt-check.h:
conditionally define BT_TEST_START
2006-10-15 Stefan Kost <[email protected]>
* NEWSLETTER:
draft
* docs/help/bt-edit/C/bt-edit.xml:
describe sequence-length editing, mention tooltips
* pixmaps/grid.png:
* pixmaps/menu_processor_machine.png:
* pixmaps/menu_sink_machine.png:
* pixmaps/menu_source_machine.png:
* pixmaps/tab_info.png:
* pixmaps/tab_patterns.png:
* pixmaps/tab_sequence.png:
* pixmaps/tab_waves.png:
slight overhaul
* po/de.po:
translated tooltip texts
* src/lib/core/sequence.c: (bt_sequence_persistence_save),
(bt_sequence_set_property):
adjust play_start/stop also when turning loop off
* src/lib/core/song.c: (on_song_state_changed):
don't notify is_playing on loop wrap around
* src/ui/edit/main-page-sequence.c: (update_labels_menu),
(sequence_table_init), (on_song_play_pos_notify),
(on_sequence_table_key_release_event),
(on_sequence_table_scroll_event), (update_bars_menu),
(on_song_changed), (bt_main_page_sequence_init_ui),
(bt_main_page_sequence_dispose):
don't clear cells when pressing Ctrl-B/E, create dummy labels menu
* src/ui/edit/main-statusbar.c: (bt_main_statusbar_update_length),
(on_song_play_pos_notify), (on_song_is_playing_notify),
(on_song_info_rhythm_notify), (on_sequence_loop_time_notify),
(on_song_changed), (bt_main_statusbar_init_ui),
(bt_main_statusbar_dispose):
update time displays, show total playtime
2006-10-14 Stefan Kost <[email protected]>
* src/lib/core/core.c: (bt_init_post), (bt_init_get_option_group),
(bt_init_check):
removed logging before its initialized (fixes gui test)
* src/lib/core/sink-bin.c:
more todos
* src/ui/edit/main-page-sequence.c: (on_sequence_tick),
(on_sequence_table_key_release_event):
* src/ui/edit/sequence-view.c: (bt_sequence_view_expose_event):
fix scrolling and '.' command to clear sequence cells
* tests/Makefile.am:
add 'make help' and test specific subtargets
* tests/bt-check.h:
fix tests for check-0.9.4
2006-10-11 Stefan Kost <[email protected]>
* Makefile.am:
* configure.ac:
fix undefined variables in po/Makefile
* src/lib/core/sink-bin.c: (on_audio_sink_changed),
(on_system_audio_sink_changed):
todo comments
* src/lib/core/song.c: (bt_song_seek_to_play_pos),
(bt_song_update_play_seek_event):
change loop-end pos again to +1
* src/lib/core/machine.c: (bt_machine_persistence_load):
* src/lib/core/wire.c: (bt_wire_persistence_load):
fix global param handling, add more logging
* src/ui/edit/machine-properties-dialog.c:
(on_int_range_global_property_format_value),
(on_int_range_voice_property_format_value),
(on_uint_range_global_property_format_value),
(on_uint_range_voice_property_format_value),
(on_double_range_property_changed),
(bt_machine_properties_dialog_init_ui):
handle range-params without value descriptions
* tests/songs/broken2.xml:
* tests/songs/buzz1.xml:
* tests/songs/buzz2.xml:
* tests/songs/buzz3.xml:
* tests/songs/buzz4.xml:
* tests/songs/buzz5.xml:
* tests/songs/buzz6.xml:
* tests/songs/buzz7.xml:
* tests/songs/buzz8.xml:
* tests/songs/buzz9.xml:
* tests/songs/combi1.xml:
* tests/songs/melo1.xml:
* tests/songs/melo2.xml:
* tests/songs/melo3.xml:
* tests/songs/melo4.xml:
* tests/songs/melo5.xml:
* tests/songs/simple1.xml:
* tests/songs/simple2.xml:
* tests/songs/simple3.xml:
* tests/songs/simple4.xml:
* tests/songs/simple5.xml:
* tests/songs/test-simple1.xml:
remove global settings for bpm/volume until it is supported
2006-09-30 Stefan Kost <[email protected]>
* src/lib/core/song.c: (bt_song_update_play_seek_event):
* src/ui/edit/main-page-sequence.c: (sequence_view_set_pos),
(on_sequence_table_key_release_event), (update_bars_menu),
(on_song_info_bars_changed), (on_song_changed):
* src/ui/edit/sequence-view.c: (bt_sequence_view_realize),
(bt_sequence_view_expose_event), (bt_sequence_view_set_property),
(bt_sequence_view_dispose):
* src/ui/edit/ui-ressources.c: (bt_ui_ressources_init_colors):
* src/ui/edit/ui-ressources.h:
add song-end bar to sequence view. fix settings loops start/end via
keyboard shortcut.
2006-09-30 Stefan Kost <[email protected]>
* tests/lib/core/t-sink-machine.c: (BT_START_TEST),
(bt_sink_machine_test_case):
4 more test cases.
2006-09-30 Stefan Kost <[email protected]>
* src/lib/core/sequence.c: (bt_sequence_get_bar_time),
(bt_sequence_persistence_load):
report bar-time in debuglog
* src/lib/core/settings.c: (bt_settings_new),
(bt_settings_class_init):
* src/lib/core/song-io.c: (bt_song_io_new):
* src/lib/core/song.c: (bt_song_persistence_load):
add more debug logging, change default audiosink to be 'autoaudiosink'
* tests/bt-check.h:
* tests/bt-test-settings.c: (bt_test_settings_new):
* tests/lib/core/e-song.c: (BT_START_TEST):
* tests/lib/core/t-song.c: (BT_START_TEST):
* tests/m-bt-core.c: (bt_core_setup):
make use of test settings, fix remaining last failing test for now
* tests/songs/test-simple1.xml:
reformat
2006-09-29 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/settings-private.h:
* tests/Makefile.am:
* tests/bt-test-settings.c: (bt_test_settings_new),
(bt_test_settings_get_property), (bt_test_settings_set_property),
(bt_test_settings_dispose), (bt_test_settings_finalize),
(bt_test_settings_init), (bt_test_settings_class_init),
(bt_test_settings_get_type):
* tests/bt-test-settings.h:
add test-settings class implementation
2006-09-28 Stefan Kost <[email protected]>
* README:
add another example
2006-09-28 Stefan Kost <[email protected]>
* README:
add gst-plugins-bad to the requirements (spectrum)
2006-09-27 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/libbtcore/settings-methods.h:
* src/lib/core/libbtcore/settings.h:
* src/lib/core/settings.c: (bt_settings_new),
(bt_settings_set_factory):
prepare addition of test-setting class (add BtSettingFactory)
2006-09-19 Stefan Kost <[email protected]>
* src/lib/core/song.c: (bt_song_update_play_seek_event),
(on_song_state_changed), (bt_song_play),
(bt_song_update_playback_position), (bt_song_write_to_xml_file):
raise timeout to 3 seconds (for debugging), fix loop-length, make song
dump-names unique
2006-09-17 Stefan Kost <[email protected]>
* design/gst/.cvsignore:
* design/gst/connection1.c: (message_received):
* design/gst/loop1.c: (message_received), (state_changed),
(segment_done), (main):
add looper example
* src/lib/core/machine.c:
infos about dynamic element reconnection
* src/lib/core/song.c: (bt_song_update_play_seek_event),
(bt_song_on_loop_changed), (bt_song_on_loop_start_changed),
(bt_song_on_loop_end_changed), (bt_song_on_length_changed),
(bt_song_new):
always flush when looping
2006-09-16 Stefan Kost <[email protected]>
* design/gst/link.c: (main):
* design/gst/link2.c: (main):
* design/gst/seek1.c: (main):
* design/gst/states.c: (main):
* design/gst/states1.c: (main):
* design/gst/states1a.c: (main):
* design/gst/states1b.c: (main):
* design/gst/states1c.c: (main):
* design/gst/states2.c: (main):
* design/gst/states3.c: (main):
* design/gst/states3a.c: (main):
* design/gst/tags1.c: (main):
* design/gst/test.c: (main):
Cleanup examples
* src/lib/core/libbtcore/settings-private.h:
Add GUI config ideas
* src/lib/core/song.c: (bt_song_is_playable),
(on_song_paused_timeout), (on_song_playback_timeout),
(on_song_state_changed), (bt_song_play), (bt_song_stop):
* src/ui/edit/main-toolbar.c: (on_song_is_playing_notify):
Better error handling for playback of partialy connected songs
2006-09-14 Stefan Kost <[email protected]>
* design/gst/.cvsignore:
* design/gst/connection1.c: (message_received), (test_timeout),
(main):
* design/gst/states3.c: (main):
new test app and cleanup
2006-09-12 Stefan Kost <[email protected]>
* src/lib/core/sequence.c: (bt_sequence_persistence_save):
formatting
* src/lib/core/song.c: (on_song_state_changed), (bt_song_new),
(bt_song_play):
* src/ui/edit/main-toolbar.c: (on_song_is_playing_notify),
(on_toolbar_play_clicked), (on_song_error), (on_song_changed):
next try on avoiding play empty songs (not yet covers everything)
2006-09-11 Patric Schmitz <[email protected]>
* src/ui/edit/main-page-sequence.c:
(sequence_calculate_visible_lines), (sequence_view_set_pos),
(on_sequence_table_key_release_event),
(on_sequence_table_button_press_event):
added ctrl-b/ctrl-e hotkeys which set loop begin/end position, and enhance sequence-length if needed
made sequence_view_set_pos take mode (0=pos,1=loop_begin,2=loop_end) instead of modifier key, switch has to be done by caller now
2006-09-11 Stefan Kost <[email protected]>
* configure.ac:
coverage fixes for gcc-4
2006-09-08 Stefan Kost <[email protected]>
* src/lib/core/song-info.c: (bt_song_info_get_property):
* src/lib/core/song.c: (bt_song_update_play_seek_event),
(bt_song_send_tags), (on_song_segment_done), (bt_song_new),
(bt_song_play):
* src/ui/edit/main-toolbar.c: (on_song_changed):
Cleanup of song-play. Backout change for #1551578 partially, as it
broke normal playback
2006-09-07 Stefan Kost <[email protected]>
* src/ui/edit/machine-canvas-item.c:
(bt_machine_canvas_item_init_context_menu),
(bt_machine_canvas_item_set_property),
(bt_machine_canvas_item_realize):
* src/ui/edit/main-page-machines.c: (on_canvas_event):
* src/ui/edit/main-page-machines.h:
* src/ui/edit/ui-ressources.c: (bt_ui_ressources_init_colors):
* src/ui/edit/ui-ressources.h:
bettern machine drawing, fix layout a bit more
2006-09-06 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/application.c: (bt_application_finalize),
(bt_application_init):
* src/lib/core/libbtcore/application-methods.h:
* src/lib/core/song.c: (bt_song_new), (bt_song_play),
(bt_song_dispose):
* src/ui/edit/main-toolbar.c: (on_toolbar_play_clicked),
(on_song_error), (on_song_changed):
* src/ui/edit/tools.c: (bt_dialog_message):
Remove obsolete bus api. Listen to bus error messages. Handle async
state-changes with timeouts (fixes #1551578).
* src/lib/core/wire.c: (bt_wire_connect):
Reflow that code a little (return immediately).
2006-09-06 Stefan Kost <[email protected]>
patch by: Samuel Cormier-Iijima <[email protected]>
* src/lib/core/wire.c: (bt_wire_connect):
Fix segfault when hooking wires to nonexistant endpoints (#1553321).
2006-09-06 Stefan Kost <[email protected]>
* src/ui/edit/machine-canvas-item.c:
(bt_machine_canvas_item_init_context_menu):
* src/ui/edit/main-page-patterns.c:
(pattern_view_update_column_description), (context_menu_refresh):
* src/ui/edit/main-page-sequence.c: (pattern_list_refresh),
(on_sequence_table_key_release_event):
* src/ui/edit/main-window.c: (bt_main_window_init_ui):
Fix use of two removed icons. Dynamically disabled items for pattern,
menu base on the existence of patterns. Fix crash when displaying
parameter tip in status bar in pattern view and going beyond the
parameters to the right. Fix pattern list short-cuts in sequence view.
2006-09-03 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c: (pattern_table_refresh):
Use smaller font for pattern table headings
2006-09-03 Stefan Kost <[email protected]>
* src/ui/edit/main-page-info-methods.h:
* src/ui/edit/main-page-info.c: (on_page_switched_idle),
(on_page_switched), (bt_main_page_info_init_ui),
(bt_main_page_info_new):
* src/ui/edit/main-page-machines-methods.h:
* src/ui/edit/main-page-machines.c:
(bt_main_page_machines_init_ui), (bt_main_page_machines_new):
* src/ui/edit/main-page-patterns-methods.h:
* src/ui/edit/main-page-patterns.c:
(pattern_view_update_column_description), (on_page_switched_idle),
(on_page_switched), (on_pattern_table_cursor_changed_idle),
(pattern_table_refresh), (on_pattern_menu_changed),
(bt_main_page_patterns_init_ui), (bt_main_page_patterns_new):
* src/ui/edit/main-page-sequence-methods.h:
* src/ui/edit/main-page-sequence.c: (on_page_switched_idle),
(on_page_switched), (sequence_table_init),
(sequence_table_refresh), (on_song_changed),
(bt_main_page_sequence_init_ui), (bt_main_page_sequence_new):
* src/ui/edit/main-page-waves-methods.h:
* src/ui/edit/main-page-waves.c: (bt_main_page_waves_init_ui),
(bt_main_page_waves_new):
* src/ui/edit/main-pages.c: (bt_main_pages_init_ui):
* src/ui/edit/main-statusbar.c: (bt_main_statusbar_class_init):
* src/ui/edit/main-statusbar.h:
Add machine quick-info to pattern editing. Add default focused widgets
to pattern, sequence and info page.
* tests/songs/buzz8.xml:
Fix machines positions.
2006-09-03 Stefan Kost <[email protected]>
patch by: Tommi Sakari Uimonen <[email protected]>
* src/lib/core/application.c: (bus_handler), (bt_application_new),
(bt_application_add_bus_watch), (bt_application_remove_bus_watch),
(bt_application_get_property), (bt_application_set_property),
(bt_application_dispose), (bt_application_finalize),
(bt_application_init), (bt_application_class_init):
* src/lib/core/core.c: (bt_init_add_option_groups):
* src/lib/core/gconf-settings.c:
(bt_gconf_settings_notify_toolbar_style), (bt_gconf_settings_new),
(bt_gconf_settings_get_property), (bt_gconf_settings_set_property),
(bt_gconf_settings_dispose), (bt_gconf_settings_finalize),
(bt_gconf_settings_init), (bt_gconf_settings_class_init):
* src/lib/core/libbtcore/application-methods.h:
* src/lib/core/libbtcore/application-private.h:
* src/lib/core/libbtcore/application.h:
* src/lib/core/libbtcore/core.h:
* src/lib/core/libbtcore/gconf-settings.h:
* src/lib/core/libbtcore/machine-methods.h:
* src/lib/core/libbtcore/machine-private.h:
* src/lib/core/libbtcore/machine.h:
* src/lib/core/libbtcore/pattern-methods.h:
* src/lib/core/libbtcore/pattern.h:
* src/lib/core/libbtcore/persistence-location.h:
* src/lib/core/libbtcore/persistence-methods.h:
* src/lib/core/libbtcore/persistence-selection.h:
* src/lib/core/libbtcore/persistence.h:
* src/lib/core/libbtcore/plainfile-settings-methods.h:
* src/lib/core/libbtcore/plainfile-settings.h:
* src/lib/core/libbtcore/processor-machine-methods.h:
* src/lib/core/libbtcore/processor-machine.h:
* src/lib/core/libbtcore/sequence-methods.h:
* src/lib/core/libbtcore/sequence.h:
* src/lib/core/libbtcore/settings.h:
* src/lib/core/libbtcore/setup-methods.h:
* src/lib/core/libbtcore/setup.h:
* src/lib/core/libbtcore/sink-bin.h:
* src/lib/core/libbtcore/sink-machine-methods.h:
* src/lib/core/libbtcore/sink-machine.h:
* src/lib/core/libbtcore/song-info-methods.h:
* src/lib/core/libbtcore/song-info.h:
* src/lib/core/libbtcore/song-io-methods.h:
* src/lib/core/libbtcore/song-io-native-methods.h:
* src/lib/core/libbtcore/song-io-native.h:
* src/lib/core/libbtcore/song-io.h:
* src/lib/core/libbtcore/song-methods.h:
* src/lib/core/libbtcore/song.h:
* src/lib/core/libbtcore/source-machine-methods.h:
* src/lib/core/libbtcore/source-machine.h:
* src/lib/core/libbtcore/tools.h:
* src/lib/core/libbtcore/wave-methods.h:
* src/lib/core/libbtcore/wave.h:
* src/lib/core/libbtcore/wavelevel-methods.h:
* src/lib/core/libbtcore/wavelevel.h:
* src/lib/core/libbtcore/wavetable-methods.h:
* src/lib/core/libbtcore/wavetable.h:
* src/lib/core/libbtcore/wire.h:
* src/lib/core/machine.c: (bt_machine_on_bpm_changed),
(bt_machine_on_tpb_changed), (bt_machine_get_peer),
(bt_machine_get_sink_peer), (bt_machine_get_source_peer),
(bt_machine_set_mute), (bt_machine_unset_mute),
(bt_machine_change_state), (bt_machine_insert_element),
(bt_machine_resize_pattern_voices), (bt_machine_resize_voices),
(bt_machine_get_property_meta_value),
(bt_machine_make_internal_element), (bt_machine_add_input_element),
(bt_machine_add_output_element), (bt_machine_init_core_machine),
(bt_machine_init_interfaces), (bt_machine_check_type),
(bt_machine_init_global_params), (bt_machine_init_voice_params),
(bt_machine_setup), (bt_machine_new),
(bt_machine_enable_input_level), (bt_machine_enable_input_gain),
(bt_machine_enable_output_gain), (bt_machine_activate_adder),
(bt_machine_has_active_adder), (bt_machine_activate_spreader),
(bt_machine_has_active_spreader), (bt_machine_add_pattern),
(bt_machine_remove_pattern), (bt_machine_get_pattern_by_id),
(bt_machine_get_pattern_by_index),
(bt_machine_get_unique_pattern_name), (bt_machine_is_polyphonic),
(bt_machine_get_global_param_index),
(bt_machine_get_voice_param_index),
(bt_machine_get_global_param_spec),
(bt_machine_get_voice_param_spec),
(bt_machine_get_global_param_type),
(bt_machine_get_voice_param_type),
(bt_machine_set_global_param_value),
(bt_machine_set_voice_param_value),
(bt_machine_set_global_param_no_value),
(bt_machine_set_voice_param_no_value),
(bt_machine_get_global_param_name),
(bt_machine_get_voice_param_name),
(bt_machine_get_param_min_value),
(bt_machine_get_global_param_min_value),
(bt_machine_get_voice_param_min_value),
(bt_machine_get_param_max_value),
(bt_machine_get_global_param_max_value),
(bt_machine_get_voice_param_max_value),
(bt_machine_is_global_param_trigger),
(bt_machine_is_voice_param_trigger),
(bt_machine_is_global_param_no_value),
(bt_machine_is_voice_param_no_value),
(bt_machine_describe_global_param_value),
(bt_machine_describe_voice_param_value),
(bt_machine_global_controller_change_value),
(bt_machine_voice_controller_change_value),
(bt_machine_get_element_list), (bt_machine_dbg_print_parts),
(bt_machine_dbg_dump_global_controller_queue),
(bt_machine_persistence_save), (bt_machine_persistence_load),
(bt_machine_persistence_interface_init), (bt_machine_get_property),
(bt_machine_set_property), (bt_machine_dispose),
(bt_machine_finalize), (bt_machine_init), (bt_machine_class_init):
* src/lib/core/pattern.c: (bt_pattern_init_data),
(bt_pattern_resize_data_length), (bt_pattern_resize_data_voices),
(bt_pattern_get_internal_event_data),
(bt_pattern_init_global_event), (bt_pattern_init_voice_event),
(bt_pattern_new), (bt_pattern_new_with_event), (bt_pattern_copy),
(bt_pattern_get_global_param_index),
(bt_pattern_get_voice_param_index),
(bt_pattern_get_global_event_data),
(bt_pattern_get_voice_event_data), (bt_pattern_set_global_event),
(bt_pattern_set_voice_event), (bt_pattern_get_global_event),
(bt_pattern_get_voice_event), (bt_pattern_test_global_event),
(bt_pattern_test_voice_event), (bt_pattern_get_cmd),
(bt_pattern_tick_has_data), (bt_pattern_play_tick),
(bt_pattern_persistence_save), (bt_pattern_persistence_load),
(bt_pattern_persistence_interface_init), (bt_pattern_get_property),
(bt_pattern_set_property), (bt_pattern_dispose),
(bt_pattern_finalize), (bt_pattern_init), (bt_pattern_class_init):
* src/lib/core/persistence.c: (bt_persistence_strfmt_uchar),
(bt_persistence_strfmt_long), (bt_persistence_strfmt_ulong),
(bt_persistence_strfmt_double), (bt_persistence_save_list),
(bt_persistence_save_hashtable_entries),
(bt_persistence_save_hashtable), (bt_persistence_set_value),
(bt_persistence_get_value), (bt_persistence_save),
(bt_persistence_load):
* src/lib/core/plainfile-settings.c: (bt_plainfile_settings_new),
(bt_plainfile_settings_get_property),
(bt_plainfile_settings_set_property),
(bt_plainfile_settings_dispose), (bt_plainfile_settings_finalize),
(bt_plainfile_settings_init), (bt_plainfile_settings_class_init):
* src/lib/core/processor-machine.c:
(bt_processor_machine_post_init), (bt_processor_machine_new),
(bt_processor_machine_persistence_save),
(bt_processor_machine_persistence_load),
(bt_processor_machine_persistence_interface_init),
(bt_processor_machine_check_type), (bt_processor_machine_setup),
(bt_processor_machine_get_property),
(bt_processor_machine_set_property),
(bt_processor_machine_dispose), (bt_processor_machine_finalize),
(bt_processor_machine_init), (bt_processor_machine_class_init):
* src/lib/core/sequence.c: (bt_sequence_init_data),
(bt_sequence_resize_data_length), (bt_sequence_resize_data_tracks),
(bt_sequence_get_track_by_machine),
(bt_sequence_limit_play_pos_internal),
(bt_sequence_get_number_of_pattern_uses),
(bt_sequence_test_pattern), (bt_sequence_invalidate_param),
(bt_sequence_invalidate_global_param),
(bt_sequence_invalidate_voice_param),
(bt_sequence_invalidate_pattern_region),
(bt_sequence_repair_global_damage_entry),
(bt_sequence_repair_voice_damage_entry),
(bt_sequence_repair_damage),
(bt_sequence_on_pattern_global_param_changed),
(bt_sequence_on_pattern_voice_param_changed),
(bt_sequence_on_pattern_removed), (bt_sequence_new),
(bt_sequence_get_machine), (bt_sequence_add_track),
(bt_sequence_remove_track_by_ix),
(bt_sequence_remove_track_by_machine), (bt_sequence_get_label),
(bt_sequence_set_label), (bt_sequence_get_pattern),
(bt_sequence_set_pattern), (bt_sequence_get_bar_time),
(bt_sequence_get_loop_time), (bt_sequence_limit_play_pos),
(bt_sequence_persistence_save), (bt_sequence_persistence_load),
(bt_sequence_persistence_interface_init),
(bt_sequence_get_property), (bt_sequence_set_property),
(bt_sequence_dispose), (bt_sequence_finalize), (bt_sequence_init),
(bt_sequence_class_init):
* src/lib/core/settings.c: (bt_settings_get_property),
(bt_settings_set_property), (bt_settings_dispose),
(bt_settings_finalize), (bt_settings_init),
(bt_settings_class_init):
* src/lib/core/setup.c: (bt_setup_new),
(bt_setup_get_wire_by_machine_type),
(bt_setup_get_wires_by_machine_type), (bt_setup_add_machine),
(bt_setup_add_wire), (bt_setup_remove_machine),
(bt_setup_remove_wire), (bt_setup_get_machine_by_id),
(bt_setup_get_machine_by_index), (bt_setup_get_machine_by_type),
(bt_setup_get_machines_by_type),
(bt_setup_get_wire_by_src_machine),
(bt_setup_get_wire_by_dst_machine),
(bt_setup_get_wire_by_machines),
(bt_setup_get_wires_by_src_machine),
(bt_setup_get_wires_by_dst_machine),
(bt_setup_get_unique_machine_id),
(bt_setup_remember_missing_machine), (bt_setup_persistence_save),
(bt_setup_persistence_load), (bt_setup_persistence_interface_init),
(bt_setup_get_property), (bt_setup_set_property),
(bt_setup_dispose), (bt_setup_finalize), (bt_setup_init),
(bt_setup_class_init):
* src/lib/core/sink-bin.c: (bt_sink_bin_clear),
(bt_sink_bin_add_many), (bt_sink_bin_link_many),
(bt_sink_bin_determine_plugin_name),
(bt_sink_bin_get_player_elements),
(bt_sink_bin_get_recorder_elements), (bt_sink_bin_update),
(on_audio_sink_changed):
* src/lib/core/sink-machine.c: (bt_sink_machine_post_init),
(bt_sink_machine_new), (bt_sink_machine_persistence_save),
(bt_sink_machine_persistence_load),
(bt_sink_machine_persistence_interface_init),
(bt_sink_machine_check_type), (bt_sink_machine_get_property),
(bt_sink_machine_set_property), (bt_sink_machine_dispose),
(bt_sink_machine_finalize), (bt_sink_machine_init),
(bt_sink_machine_class_init):
* src/lib/core/song-info.c: (bt_song_info_new),
(bt_song_info_persistence_save), (bt_song_info_persistence_load),
(bt_song_info_persistence_interface_init),
(bt_song_info_get_property), (bt_song_info_set_property),
(bt_song_info_dispose), (bt_song_info_finalize),
(bt_song_info_init), (bt_song_info_class_init):
* src/lib/core/song-io-native.c: (bt_song_io_native_detect),
(bt_song_io_native_load), (bt_song_io_native_save),
(bt_song_io_native_get_property), (bt_song_io_native_set_property),
(bt_song_io_native_dispose), (bt_song_io_native_finalize),
(bt_song_io_native_init), (bt_song_io_native_class_init):
* src/lib/core/song-io.c: (bt_song_io_register_plugins),
(bt_song_io_detect), (bt_song_io_update_filename),
(bt_song_io_new), (bt_song_io_real_load), (bt_song_io_real_save),
(bt_song_io_load), (bt_song_io_save), (bt_song_io_get_property),
(bt_song_io_set_property), (bt_song_io_dispose),
(bt_song_io_finalize), (bt_song_io_init), (bt_song_io_class_init):
* src/lib/core/song.c: (bt_song_seek_to_play_pos),
(bt_song_update_play_seek_event), (bt_song_bus_handler),
(on_song_segment_done), (on_song_eos), (bt_song_on_loop_changed),
(bt_song_on_loop_start_changed), (bt_song_on_loop_end_changed),
(bt_song_on_length_changed), (bt_song_new), (bt_song_set_unsaved),
(bt_song_idle_start), (bt_song_idle_stop), (bt_song_play),
(bt_song_stop), (bt_song_pause), (bt_song_continue),
(bt_song_update_playback_position), (bt_song_write_to_xml_file),
(bt_song_write_to_dot_file), (bt_song_persistence_save),
(bt_song_persistence_load), (bt_song_persistence_interface_init),
(bt_song_get_property), (bt_song_set_property), (bt_song_dispose),
(bt_song_finalize), (bt_song_init), (bt_song_class_init):
* src/lib/core/source-machine.c: (bt_source_machine_new),
(bt_source_machine_persistence_save),
(bt_source_machine_persistence_load),
(bt_source_machine_persistence_interface_init),
(bt_source_machine_check_type), (bt_source_machine_setup),
(bt_source_machine_get_property), (bt_source_machine_set_property),
(bt_source_machine_dispose), (bt_source_machine_finalize),
(bt_source_machine_init), (bt_source_machine_class_init):
* src/lib/core/tools.c: (bt_gst_registry_class_filter),
(bt_gst_registry_get_element_names_by_class),
(gst_element_dbg_pads), (g_try_malloc0):
* src/lib/core/wave.c: (bt_wave_new), (bt_wave_add_wavelevel),
(bt_wave_load_from_url), (bt_wave_persistence_save),
(bt_wave_persistence_load), (bt_wave_persistence_interface_init),
(bt_wave_get_property), (bt_wave_set_property), (bt_wave_dispose),
(bt_wave_finalize), (bt_wave_init), (bt_wave_class_init):
* src/lib/core/wavelevel.c: (bt_wavelevel_new),
(bt_wavelevel_persistence_save), (bt_wavelevel_persistence_load),
(bt_wavelevel_persistence_interface_init),
(bt_wavelevel_get_property), (bt_wavelevel_set_property),
(bt_wavelevel_dispose), (bt_wavelevel_finalize),
(bt_wavelevel_init), (bt_wavelevel_class_init):
* src/lib/core/wavetable.c: (bt_wavetable_new),
(bt_wavetable_add_wave), (bt_wavetable_get_wave_by_index),
(bt_wavetable_remember_missing_wave),
(bt_wavetable_persistence_save), (bt_wavetable_persistence_load),
(bt_wavetable_persistence_interface_init),
(bt_wavetable_get_property), (bt_wavetable_set_property),
(bt_wavetable_dispose), (bt_wavetable_finalize),
(bt_wavetable_init), (bt_wavetable_class_init):
* src/lib/core/wire.c: (bt_wire_make_internal_element),
(bt_wire_activate_analyzers), (bt_wire_deactivate_analyzers),
(bt_wire_change_gain), (bt_wire_link_machines),
(bt_wire_unlink_machines), (bt_wire_connect), (bt_wire_new),
(bt_wire_reconnect), (bt_wire_get_element_list),
(bt_wire_dbg_print_parts), (bt_wire_persistence_save),
(bt_wire_persistence_load), (bt_wire_persistence_interface_init),
(bt_wire_get_property), (bt_wire_set_property), (bt_wire_dispose),
(bt_wire_finalize), (bt_wire_init), (bt_wire_class_init):
constify API
2006-09-03 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/tools.h:
* src/lib/core/tools.c:
(bt_gst_registry_get_element_names_by_class):
make filter param const
* src/ui/edit/machine-menu.c: (bt_machine_menu_compare),
(bt_machine_menu_init_submenu), (bt_machine_menu_init_ui):
* src/ui/edit/main-page-patterns.c:
make machine menu hierarchy and sort properly
2006-09-02 Stefan Kost <[email protected]>
* src/lib/core/song-info.c: (bt_song_info_init),
(bt_song_info_class_init):
fix default bars-value
* src/ui/edit/bt-edit.c: (main):
remove too early log statement
* src/ui/edit/settings-dialog.c: (bt_settings_dialog_init_ui):
add font-settings todo
2006-09-02 Stefan Kost <[email protected]>
* tests/songs/buzz2.xml:
* tests/songs/buzz3.xml:
* tests/songs/buzz5.xml:
* tests/songs/buzz8.xml:
use human readable note-names
2006-08-31 Stefan Kost <[email protected]>
* design/cpu/cpuload.c: (main):
* docs/help/bt-edit/C/version.entities:
* po/.cvsignore:
* tests/.cvsignore:
add test add and missing file for the docs,
cleanup cvsignore files
2006-08-31 Stefan Kost <[email protected]>
* src/ui/edit/bt-edit.c:
* src/ui/edit/bt-edit.h:
* src/ui/edit/edit-application-methods.h:
* src/ui/edit/edit-application.c:
* src/ui/edit/edit-application.h:
* src/ui/edit/gtkvumeter.c:
* src/ui/edit/gtkvumeter.h:
* src/ui/edit/machine-canvas-item-methods.h:
* src/ui/edit/machine-canvas-item.c:
* src/ui/edit/machine-canvas-item.h:
* src/ui/edit/machine-menu-methods.h:
* src/ui/edit/machine-menu.c:
* src/ui/edit/machine-menu.h:
* src/ui/edit/machine-preferences-dialog-methods.h:
* src/ui/edit/machine-preferences-dialog.c:
* src/ui/edit/machine-preferences-dialog.h:
* src/ui/edit/machine-properties-dialog-methods.h:
* src/ui/edit/machine-properties-dialog.c:
* src/ui/edit/machine-properties-dialog.h:
* src/ui/edit/main-menu-methods.h:
* src/ui/edit/main-menu.c:
* src/ui/edit/main-menu.h:
* src/ui/edit/main-page-info-methods.h:
* src/ui/edit/main-page-info.c:
* src/ui/edit/main-page-info.h:
* src/ui/edit/main-page-machines-methods.h:
* src/ui/edit/main-page-machines.c:
* src/ui/edit/main-page-machines.h:
* src/ui/edit/main-page-patterns-methods.h:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-patterns.h:
* src/ui/edit/main-page-sequence-methods.h:
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-page-sequence.h:
* src/ui/edit/main-page-waves-methods.h:
* src/ui/edit/main-page-waves.c:
* src/ui/edit/main-page-waves.h:
* src/ui/edit/main-pages-methods.h:
* src/ui/edit/main-pages.c:
* src/ui/edit/main-pages.h:
* src/ui/edit/main-statusbar-methods.h:
* src/ui/edit/main-statusbar.c:
* src/ui/edit/main-statusbar.h:
* src/ui/edit/main-toolbar-methods.h:
* src/ui/edit/main-toolbar.c:
* src/ui/edit/main-toolbar.h:
* src/ui/edit/main-window-methods.h:
* src/ui/edit/main-window.c:
* src/ui/edit/main-window.h:
* src/ui/edit/pattern-properties-dialog-methods.h:
* src/ui/edit/pattern-properties-dialog.c:
* src/ui/edit/pattern-properties-dialog.h:
* src/ui/edit/pattern-view-methods.h:
* src/ui/edit/pattern-view.c:
* src/ui/edit/pattern-view.h:
* src/ui/edit/sequence-view-methods.h:
* src/ui/edit/sequence-view.c:
* src/ui/edit/sequence-view.h:
* src/ui/edit/settings-dialog-methods.h:
* src/ui/edit/settings-dialog.c:
* src/ui/edit/settings-dialog.h:
* src/ui/edit/settings-page-audiodevices-methods.h:
* src/ui/edit/settings-page-audiodevices.c:
* src/ui/edit/settings-page-audiodevices.h:
* src/ui/edit/tools.c:
* src/ui/edit/tools.h:
* src/ui/edit/ui-ressources-methods.h:
* src/ui/edit/ui-ressources.c:
* src/ui/edit/ui-ressources.h:
* src/ui/edit/volume-popup.c:
* src/ui/edit/volume-popup.h:
* src/ui/edit/wire-analysis-dialog-methods.h:
* src/ui/edit/wire-analysis-dialog.c:
* src/ui/edit/wire-analysis-dialog.h:
* src/ui/edit/wire-canvas-item-methods.h:
* src/ui/edit/wire-canvas-item.c:
* src/ui/edit/wire-canvas-item.h:
add copyright headers
2006-08-30 Stefan Kost <[email protected]>
* src/lib/core/song-info.c:
* src/ui/edit/machine-menu.c: (on_source_machine_add_activated),
(on_processor_machine_add_activated):
* src/ui/edit/main-page-info.c: (on_tpb_changed),
(on_beats_changed), (on_song_changed), (bt_main_page_info_init_ui):
* src/ui/edit/main-page-patterns.c:
(on_context_menu_pattern_new_activate):
* src/ui/edit/main-page-sequence.c: (update_bars_menu),
(on_song_info_bars_changed), (on_song_changed):
Add settings for beat to song-info. Dynamically update bars menu.
2006-08-28 Patric Schmitz <[email protected]>
* src/ui/edit/main-page-machines.c:
(bt_main_page_machines_init_main_context_menu):
fixed typo in machine context menu
2006-08-28 Stefan Kost <[email protected]>
* src/lib/core/song-info.c:
more docs
* src/ui/edit/main-page-sequence.c:
(bt_main_page_sequence_init_bars_menu), (on_song_changed):
more comments about rythm
* src/ui/edit/main-toolbar.c: (on_toolbar_play_clicked):
lower update interval for a smoother playbar
2006-08-28 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
(bt_main_page_patterns_init_ui):
* src/ui/edit/main-page-sequence.c: (step_visible_filter),
(sequence_model_recolorize), (sequence_calculate_visible_lines),
(on_bars_menu_changed), (on_sequence_table_cursor_changed_idle),
(bt_main_page_sequence_init_bars_menu), (on_song_changed),
(bt_main_page_sequence_init_ui),
(bt_main_page_sequence_get_current_pos):
set visible-rows for song-end, remove some unused stuff in view-filter
2006-08-28 Patric Schmitz <[email protected]>
* src/ui/edit/main-page-sequence.c: (on_song_changed):
set dynamic list-length and step-filter to song-length at song change.
2006-08-28 Patric Schmitz <[email protected]>
* src/ui/edit/main-page-sequence.c: (sequence_model_recolorize),
(sequence_table_refresh), (on_sequence_table_cursor_changed_idle),
(bt_main_page_sequence_init_bars_menu), (on_song_changed),
(bt_main_page_sequence_init_ui), (bt_main_page_sequence_init):
made dynamically added rows be colorized correctly
provisionally implemented dynamic bars_menu
2006-08-27 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
* docs/reference/bt-edit/bt-edit-sections.txt:
* docs/reference/bt-edit/bt-edit.types:
* src/lib/core/core.c: (bt_init_post), (bt_init_get_option_group),
(bt_init_check):
clean up docs a bit
* src/lib/core/libbtcore/tools.h:
* src/lib/core/tools.c:
* src/ui/edit/bt-edit.c: (main):
* src/ui/edit/bt-edit.h:
remove trace-log, we now have gst-plot-timeslines
* tests/bt-cmd-encode.sh:
use -q and write no encoding log
2006-08-27 Stefan Kost <[email protected]>
* AUTHORS:
* Makefile.am:
* NEWS:
* README:
* configure.ac:
prepare 0.1 release
* po/POTFILES.in:
* po/de.po:
more translations
* src/lib/core/song-info.c: (bt_song_info_init):
* src/lib/core/song-io.c: (bt_song_io_load):
* src/lib/core/song.c: (bt_song_set_property):
* src/ui/edit/edit-application.c: (bt_edit_application_new_song),
(bt_edit_application_show_about):
* src/ui/edit/main-menu.c: (on_song_unsaved_changed):
* src/ui/edit/main-page-waves.c: (bt_main_page_waves_init_ui):
* src/ui/edit/main-window.c: (on_song_unsaved_changed):
a new song is unchanged, no need to warn when exiting
* src/ui/cmd/cmd-application.c: (bt_cmd_application_play_song):
don't print newlines in quiet mode
* tests/Makefile.am:
* tests/bt-cfg.sh.in:
* tests/bt-check.c: (check_get_test_song_path):
* tests/bt-cmd-encode.sh:
* tests/bt-cmd-info.sh:
* tests/ui/edit/e-bt-edit-application.c: (BT_START_TEST):
make distcheck fixes
* tests/ui/cmd/e-bt-cmd-application.c: (BT_START_TEST):
* tests/ui/cmd/t-bt-cmd-application.c: (BT_START_TEST):
run in quiet mode
2006-08-26 Stefan Kost <[email protected]>
* src/ui/edit/machine-menu.c: (bt_machine_menu_init_ui):
sort sub menus by plugin-name
* src/ui/edit/pattern-view.c: (bt_pattern_view_realize),
(bt_pattern_view_expose_event):
* src/ui/edit/sequence-view.c: (bt_sequence_view_realize),
(bt_sequence_view_unrealize), (bt_sequence_view_expose_event):
move cell-size calculation into expose, in realize and was not always
the final size (fixes #1546214)
2006-08-26 Stefan Kost <[email protected]>
* src/ui/edit/main-page-info.c: (on_song_changed):
block signal handlers to avoid trigger change-events on init
2006-08-26 Stefan Kost <[email protected]>
* src/lib/core/machine.c: (bt_machine_persistence_load):
* src/lib/core/pattern.c: (bt_pattern_persistence_load):
* src/lib/core/processor-machine.c:
(bt_processor_machine_persistence_load):
* src/lib/core/sequence.c: (bt_sequence_persistence_load):
* src/lib/core/setup.c: (bt_setup_persistence_load):
* src/lib/core/sink-machine.c: (bt_sink_machine_persistence_load):
* src/lib/core/song-info.c: (bt_song_info_persistence_load):
* src/lib/core/song.c: (bt_song_persistence_load):
* src/lib/core/source-machine.c:
(bt_source_machine_persistence_load):
* src/lib/core/wave.c: (bt_wave_persistence_load):
* src/lib/core/wavelevel.c: (bt_wavelevel_persistence_load):
* src/lib/core/wavetable.c: (bt_wavetable_persistence_load):
* src/lib/core/wire.c: (bt_wire_persistence_load):
add g_assert(node); fixes #1547072
* tests/bt-cmd-encode.sh:
* tests/bt-cmd-info.sh:
add more songs
* tests/songs/buzz5.xml:
fix voice/global params
2006-08-26 Stefan Kost <[email protected]>
* src/lib/core/song-info.c: (bt_song_info_init):
fix typo, cleanup date init
* src/ui/cmd/bt-cmd.c:
* src/ui/cmd/bt-cmd.h:
* src/ui/cmd/cmd-application-methods.h:
* src/ui/cmd/cmd-application.c:
* src/ui/cmd/cmd-application.h:
add copyright headers
* tests/songs/buzz6.xml:
* tests/songs/buzz7.xml:
fix parameter names and voice/global params
2006-08-24 Stefan Kost <[email protected]>
* po/de.po:
* src/lib/core/application.c:
* src/lib/core/core.c:
* src/lib/core/gconf-settings.c:
* src/lib/core/libbtcore/application-methods.h:
* src/lib/core/libbtcore/application-private.h:
* src/lib/core/libbtcore/application.h:
* src/lib/core/libbtcore/core.h:
* src/lib/core/libbtcore/gconf-settings-methods.h:
* src/lib/core/libbtcore/gconf-settings.h:
* src/lib/core/libbtcore/machine-methods.h:
* src/lib/core/libbtcore/machine-private.h:
* src/lib/core/libbtcore/machine.h: