-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog-0.3
3039 lines (2333 loc) · 93.5 KB
/
ChangeLog-0.3
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.3.0 ===
2008-03-26 Stefan Kost <[email protected]>
* NEWS:
Updating NEWS.
* docs/help/bt-edit/C/figures/page-info-view.png:
New screenshot.
* src/lib/core/wire.c:
Better logging.
2008-03-22 Stefan Kost <[email protected]>
* docs/help/bt-edit/C/figures/settings-shortcuts.png:
New screenshot.
* docs/reference/README:
* docs/reference/bt-cmd/bt-cmd-sections.txt:
* docs/reference/bt-core/bt-core-sections.txt:
* docs/reference/bt-edit/bt-edit-sections.txt:
* docs/reference/bt-ic/bt-ic-sections.txt:
Remove obsolete entries.
* src/lib/core/Makefile.am:
* src/lib/core/application.c:
* src/lib/core/core.c:
* src/lib/core/core_private.h:
* src/lib/core/gconf-settings.c:
* src/lib/core/libbtcore/Makefile.am:
* src/lib/core/libbtcore/core.h:
* src/lib/core/libbtcore/tools.h:
* src/lib/core/machine.c:
* src/lib/core/pattern.c:
* src/lib/core/persistence-location.c:
* src/lib/core/persistence-selection.c:
* src/lib/core/persistence.c:
* src/lib/core/plainfile-settings.c:
* src/lib/core/processor-machine.c:
* src/lib/core/sequence.c:
* src/lib/core/settings.c:
* src/lib/core/setup.c:
* src/lib/core/sink-bin.c:
* src/lib/core/sink-machine.c:
* src/lib/core/song-info.c:
* src/lib/core/song-io-native.c:
* src/lib/core/song-io.c:
* src/lib/core/song.c:
* src/lib/core/source-machine.c:
* src/lib/core/tools.c:
* src/lib/core/wave.c:
* src/lib/core/wavelevel.c:
* src/lib/core/wavetable.c:
* src/lib/core/wire-pattern.c:
* src/lib/core/wire.c:
* src/lib/ic/Makefile.am:
* src/lib/ic/abs-range-control.c:
* src/lib/ic/control.c:
* src/lib/ic/device.c:
* src/lib/ic/ic.c:
* src/lib/ic/ic_private.h:
* src/lib/ic/input-device.c:
* src/lib/ic/learn.c:
* src/lib/ic/libbtic/ic.h:
* src/lib/ic/midi-device.c:
* src/lib/ic/registry.c:
* src/lib/ic/trigger-control.c:
* src/ui/cmd/bt-cmd.h:
* src/ui/edit/bt-edit.h:
* src/ui/edit/pattern-editor.c:
Restructure headers, so that we have no include config.h in a public
installed header.
2008-03-21 Stefan Kost <[email protected]>
* TODO:
* docs/help/bt-edit/C/Makefile.am:
* docs/help/bt-edit/C/bt-edit.xml:
* docs/help/bt-edit/C/figures/page-wavetable-view.png:
Update docs.
* tests/bt-check.c:
More comments. Disable theme tweaking and use default.
2008-03-21 Stefan Kost <[email protected]>
* design/cpu/cpuload.c:
This does not use gstreamer.
* design/cpu/fpu.c:
Add fpu test.
2008-03-20 Stefan Kost <[email protected]>
* tests/Makefile.am:
* tests/bt-check.c:
Experiment with the ui tests.
* tests/ui/edit/e-bt-machine-rename-dialog.c:
Change name for nice screenshot.
2008-03-20 Stefan Kost <[email protected]>
* src/ui/edit/machine-menu.c:
Filter out all elements with unsuitable pad counts.
2008-03-17 Stefan Kost <[email protected]>
* autogen.sh:
Supress automake portability warnings.
* src/ui/edit/bt-edit.desktop.in.in:
Associate with all file types we handle.
* src/ui/edit/main-page-sequence.c:
Add idea.
* tests/Makefile.am:
Readd tests.
2008-03-12 Stefan Kost <[email protected]>
* src/ui/edit/machine-menu.c:
Also apply machine menu naming fix to effects.
2008-03-11 Stefan Kost <[email protected]>
* docs/Makefile.am:
* docs/help/bt-edit/Makefile.am:
* docs/reference/bt-cmd/Makefile.am:
* docs/reference/bt-core/Makefile.am:
* docs/reference/bt-edit/Makefile.am:
* docs/reference/bt-ic/Makefile.am:
* po/de.po:
* src/ui/edit/Makefile.am:
* tests/Makefile.am:
\o/ make distcheck works.
2008-03-11 Stefan Kost <[email protected]>
* docs/Makefile.am:
* po/POTFILES.in:
More make distcheck fixes.
2008-03-11 Stefan Kost <[email protected]>
* configure.ac:
* docs/Makefile.am:
* docs/help/bt-edit/C/Makefile.am:
* po/POTFILES.in:
* po/de.po:
Make distcheck fixing.
* src/lib/Makefile.am:
* src/lib/buzztrax.applications.in:
* src/lib/buzztrax.keys.in:
* src/lib/buzztrax.mime:
Remove old mime stuff.
* src/lib/buzztrax.xml.in:
Recognise our xml files as buzztrax songs.
2008-03-10 Stefan Kost <[email protected]>
* src/lib/core/sequence.c:
Fix reparing controller queues when removing patterns.
2008-03-10 Stefan Kost <[email protected]>
* src/lib/core/wire.c:
Fix song saving (gain attribute twice).
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-toolbar.c:
* src/ui/edit/wire-analysis-dialog.c:
Further tune the meters.
2008-03-09 Stefan Kost <[email protected]>
* AUTHORS:
* Makefile.am:
* NEWS:
* configure.ac:
* docs/help/bt-edit/C/Makefile.am:
* docs/help/bt-edit/C/version.entities:
* po/de.po:
* src/lib/Makefile.am:
* src/ui/edit/Makefile.am:
* src/ui/edit/about-dialog.c:
* tests/Makefile.am:
Preparing the release. Make distcheck fixes.
2008-03-09 Stefan Kost <[email protected]>
* src/ui/edit/main-page-sequence.c:
* src/ui/edit/main-toolbar.c:
Usinga a define for level meter range. Fixing flickering left-channel
meter in toolbar.
* src/ui/edit/panorama-popup.c:
* src/ui/edit/volume-popup.c:
Make popups bigger. Remove padding labels. Avoid label flicker of pan-
popup.
2008-03-07 Stefan Kost <[email protected]>
* tests/bt-cmd-info.sh:
* tests/xmlvalid.sh:
Tiny test improvment.
2008-03-06 Stefan Kost <[email protected]>
* NEWSLETTER:
Sent news.
* src/ui/edit/pattern-editor.c:
Add one idea comment.
2008-03-06 Stefan Kost <[email protected]>
* src/lib/core/sink-bin.c:
Fix the build.
2008-03-05 Stefan Kost <[email protected]>
* NEWSLETTER:
Write newsletter.
* src/ui/edit/main-page-patterns.c:
Format value descriptions better.
2008-03-02 Stefan Kost <[email protected]>
* NEWSLETTER:
Fix typo.
* src/ui/edit/main-page-sequence.c:
Fix regression where sequence wasn't updated right.
2008-03-02 Stefan Kost <[email protected]>
* NEWSLETTER:
Document what we did.
* README:
Kill some more CVS reference. tell about needed stuff to build from
svn.
* src/lib/core/pattern.c:
* src/lib/core/sequence.c:
More copy/paste preparation. Don't assert in patterns on some values.
* src/lib/core/sink-bin.c:
Lower latency.
* src/lib/core/wire.c:
idea about optimising number of queues used.
* src/ui/edit/main-menu.c:
Move copy/paste preparation.
* src/ui/edit/main-page-patterns-methods.h:
* src/ui/edit/main-page-patterns.c:
Show parameter descriptions where it applies.
* src/ui/edit/main-page-sequence-methods.h:
* src/ui/edit/main-page-sequence.c:
Implement pos units and label menu updates. Keep refenrece on sequence
to optimize acess.
* src/ui/edit/settings-page-audiodevices.c:
Write down ideas about improving the filtering.
* src/ui/edit/wire-analysis-dialog.c:
Add todo section.
2008-02-28 Stefan Kost <[email protected]>
* design/input/input.c:
Add a missing description.
* src/lib/core/song.c:
Fix playing again with pulseaudio.
* src/lib/core/machine.c:
* src/lib/core/wire.c:
* src/ui/edit/wire-analysis-dialog.c:
Faster level meters and more vivid spectrum. Wire-analyzers only
handle their own mesaages.
* src/ui/edit/main-page-patterns.c:
Update cursor-pos before using it.
* src/ui/edit/pattern-editor.c:
Disable color palette test.
2008-02-27 Stefan Kost <[email protected]>
* src/lib/core/machine.c:
* src/lib/core/song.c:
Better detect unlinked elements.
* src/lib/core/wire.c:
Release elements correctly.
* src/lib/core/sink-bin.c:
Its microseconds and not nanoseconds. FIxes crasher on pulse.
2008-02-26 Stefan Kost <[email protected]>
* README:
Don't change XDG_HOME.
* src/lib/core/sink-bin.c:
Reenable tempo changeing as the crash seems pulsesink specific. Needs
more testing.
2008-02-26 Stefan Kost <[email protected]>
* src/lib/core/machine.c:
Add another idea about playing a partially connected song.
* src/lib/core/sink-bin.c:
Refactor tempo change handling (dies when changing the latency while
playing).
* src/lib/core/wire.c:
Configure queue to be small.
2008-02-25 Krzysztof Foltman <[email protected]>
* src/ui/edit/pattern-editor.c:
Add Ctrl variants of Home/End/PgUp/PgDn. Make horizontal scroll
position follow the cursor.
2008-02-21 Stefan Kost <[email protected]>
* NEWSLETTER:
Write notes.
* src/lib/core/sink-bin.c:
Also configure latency.
2008-02-19 Stefan Kost <[email protected]>
* src/lib/core/machine.c:
* src/ui/edit/wire-analysis-dialog.c:
Tune the level meters to be more alive.
* src/ui/edit/pattern-editor.c:
Clone font-size and use default monospace font.
2008-02-19 Stefan Kost <[email protected]>
* src/ui/edit/main-menu.c:
Use F1 for Help menu.
* src/ui/edit/main-toolbar.c:
Tweak toolbar level meters and volume slider width more.
2008-02-18 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/core.h:
* src/lib/core/machine.c:
* src/lib/core/pattern.c:
* src/lib/core/persistence.c:
* src/lib/core/wire-pattern.c:
Also treat "" as empty string and therefore 'no value'.
* src/ui/edit/main-toolbar.c:
Make vu-meters and volume wider.
2008-02-16 Stefan Kost <[email protected]>
* src/lib/core/sink-bin.c:
Add element details.
* src/ui/edit/machine-properties-dialog.c:
Ideas about 'reset' and 'reset all' context menu entries.
2008-02-16 Stefan Kost <[email protected]>
* src/ui/edit/main-page-sequence.c:
Set some minimal requsition to make the sequence header scrollable.
2008-02-15 Stefan Kost <[email protected]>
* src/ui/edit/main-page-sequence.c:
More viewport & scrolled window experiments.
2008-02-15 Stefan Kost <[email protected]>
* src/ui/edit/missing-framework-elements-dialog.c:
* src/ui/edit/missing-song-elements-dialog.c:
Corrected dialog sizing and layout.
2008-02-14 Stefan Kost <[email protected]>
* src/ui/edit/main-page-sequence.c:
Try to make the sequence header scrollable too.
2008-02-14 Stefan Kost <[email protected]>
* src/lib/core/setup.c:
Only take plugin name for missing machines (easier to supress
duplicates).
* src/ui/edit/missing-framework-elements-dialog.c:
* src/ui/edit/missing-song-elements-dialog.c:
Try to improve dialog sizing (give space to the list).
2008-02-08 Stefan Kost <[email protected]>
* NEWSLETTER:
News sent and new ones started.
* src/lib/core/machine.c:
* src/lib/core/pattern.c:
* src/lib/core/wire.c:
* src/ui/edit/main-page-sequence.c:
Fix crashers.
* src/ui/edit/wire-analysis-dialog.c:
Make element names unique again.
2008-02-07 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/libbtcore/pattern-methods.h:
* src/lib/core/libbtcore/wire-pattern-methods.h:
* src/lib/core/pattern.c:
* src/lib/core/wire-pattern.c:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/wire-analysis-dialog.c:
Finishing blend and adding randomize.
* src/lib/core/machine.c:
Add ideas about improving handling of unlinked machines.
2008-02-07 Stefan Kost <[email protected]>
* src/ui/edit/pattern-editor.c:
Improve look on dark-themes.
2008-02-06 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/libbtcore/pattern-methods.h:
* src/lib/core/pattern.c:
* src/lib/core/wire-pattern.c:
* src/ui/edit/main-page-patterns.c:
Blending is done for patterns, needs wire-patterns still. Also added
design-ideas for copy/paste.
2008-02-06 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/pattern-methods.h:
* src/lib/core/pattern.c:
* src/ui/edit/main-page-patterns.c:
A bit more blend() implementation.
2008-02-04 Stefan Kost <[email protected]>
* tests/bt-check.c:
* tests/ui/cmd/e-bt-cmd-application.c:
Avoid using tmpnam() to silence gcc.
2008-02-01 Stefan Kost <[email protected]>
* NEWSLETTER:
Write news.
* src/ui/edit/panorama-popup.c:
Add bug comment.
2008-01-31 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/pattern.h:
* src/lib/core/libbtcore/wire-pattern.h:
* src/lib/core/pattern.c:
* src/lib/core/sequence.c:
* src/lib/core/wire-pattern.c:
Add signal for pattern-changed, so that we can update the controller
chains, when we manipulate the whole pattern.
* src/ui/edit/main-page-patterns.c:
Prepare reading the selection and invoking blend().
2008-01-29 Stefan Kost <[email protected]>
* src/lib/core/sequence.c:
Unbreak sequence inserts.
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-sequence.c:
Use Ins/Del based shortcuts. Support insert/delete in group only.
* src/ui/edit/machine-menu.c:
Drop 'bml' or 'ladspa' prefix from initial machine name.
2008-01-28 Stefan Kost <[email protected]>
* Makefile.am:
* tests/bt-cmd-info.sh:
* tests/songs/broken3.xml:
Add one more test file.
* tests/m-bt-edit.c:
Fix the ui tests.
2008-01-27 Stefan Kost <[email protected]>
* src/lib/core/pattern.c:
A bit more code for blend().
* src/lib/core/wire.c:
Serialize gain and pan for wires.
* src/ui/edit/main-page-patterns.c:
Add gdk-syms for Ins/Del.
2008-01-26 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
Add new methods to docs.
* src/lib/core/pattern.c:
Start with blend (interpolate).
2008-01-26 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/pattern-methods.h:
* src/lib/core/libbtcore/wire-pattern-methods.h:
* src/lib/core/pattern.c:
* src/lib/core/wire-pattern.c:
* src/ui/edit/main-page-patterns.c:
Add delete action for pattern and wire-pattern. Fix the GValue move
logic in insert too.
2008-01-26 Krzysztof Foltman <[email protected]>
* src/ui/edit/pattern-editor.c:
* src/ui/edit/pattern-editor.h:
Initial selection support. Started read-only support for float columns.
2008-01-26 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/wire-pattern-methods.h:
* src/lib/core/pattern.c:
* src/lib/core/wire-pattern.c:
* src/ui/edit/main-page-patterns.c:
Handle voice and wire-params for inserts.
2008-01-25 Stefan Kost <[email protected]>
* src/lib/core/sink-bin.c:
Remove some debug logging.
* src/lib/core/libbtcore/pattern-methods.h:
* src/lib/core/pattern.c:
* src/ui/edit/main-page-patterns.c:
Ctrl-i and Ctrl-I work for global params. Need to do voice params and
wire-params still.
* tests/lib/core/e-pattern.c:
New test for insert into patterns.
2008-01-23 Stefan Kost <[email protected]>
* src/lib/core/libbtcore/pattern-methods.h:
* src/lib/core/pattern.c:
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/main-page-sequence.c:
Start implementing the insert/delete for patterns. Not ready yet.
* src/lib/core/song-io.c:
* src/ui/edit/main-page-info.c:
Fix bug uncovered by tests. Unsaved state was broken when loading
further songs.
2008-01-23 Stefan Kost <[email protected]>
* tests/bt-check.c:
* tests/songs/melo3.xml:
Add a pattern to make sure we see something in the test screenshots.
* tests/ui/edit/e-bt-edit-application.c:
More tests for multiple songs.
2008-01-22 Stefan Kost <[email protected]>
* src/lib/core/song.c:
Better stop the timeout handlers when destroying the object.
2008-01-22 Stefan Kost <[email protected]>
* docs/help/bt-edit/C/aspell.pws:
Update wordlist.
2008-01-22 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
Fix segfault, when adding tracks to paterns.
2008-01-21 Stefan Kost <[email protected]>
* src/lib/core/wire.c:
Add queues to fix blocking issues we had with some buzz songs.
2008-01-21 Stefan Kost <[email protected]>
* src/lib/core/wire.c:
Fix crasher found by the test suite.
2008-01-21 Stefan Kost <[email protected]>
* po/de.po:
Updated translations.
2008-01-21 Stefan Kost <[email protected]>
* src/ui/edit/panorama-popup.c:
* src/ui/edit/panorama-popup.h:
Add two missing files.
2008-01-21 Stefan Kost <[email protected]>
* design/gst/link2.c:
Updated test.
* src/lib/core/core.c:
* src/lib/core/sink-bin.c:
* tests/bt-check.c:
* tests/bt-test-plugin.c:
New gstreamer-core API once again.
2008-01-20 Stefan Kost <[email protected]>
* src/lib/core/persistence.c:
* src/ui/edit/bt-edit.h:
* src/ui/edit/main-page-patterns.c:
Add mappings for float and double parameters.
2008-01-19 Stefan Kost <[email protected]>
* NEWS:
* NEWSLETTER:
Release planning.
2008-01-19 Stefan Kost <[email protected]>
* docs/help/bt-edit/C/bt-edit.xml:
Update user docs.
* src/ui/edit/main-page-machines.c:
* src/ui/edit/wire-canvas-item.c:
Only show popup if we have panorama control. Remove some left-over
debug prints,
2008-01-19 Stefan Kost <[email protected]>
* docs/reference/bt-edit/bt-edit-docs.sgml:
* docs/reference/bt-edit/bt-edit-sections.txt:
* src/lib/core/machine.c:
* src/lib/core/wire.c:
* src/ui/edit/Makefile.am:
* src/ui/edit/bt-edit.h:
* src/ui/edit/main-page-machines-methods.h:
* src/ui/edit/main-page-machines.c:
* src/ui/edit/wire-canvas-item.c:
Added panorama popup (invoke with shift). Make panorama actually work.
2008-01-18 Krzysztof Foltman <[email protected]>
* src/ui/edit/pattern-editor.c:
Make step size support more compatible. Check for Shift, Control
and Alt modifiers only when detecting data entry.
2008-01-18 Krzysztof Foltman <[email protected]>
* src/ui/edit/pattern-editor.c:
* src/ui/edit/pattern-editor.h:
Add PageUp/PageDown support. Add step size (Ctrl+1..9). Ignore
note/value entry when modifier keys are pressed.
2008-01-17 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
Fix a leak. Fix build for old editor. Add more commenst for float and
double mapping.
2008-01-17 Stefan Kost <[email protected]>
* src/lib/core/machine.c:
* src/lib/core/sink-bin.c:
* src/lib/core/wire.c:
* src/ui/edit/main-toolbar.c:
* src/ui/edit/wire-canvas-item.c:
First attempt at working panorama mode. Also fixes broken playback
from last (partial) commit.
2008-01-16 Stefan Kost <[email protected]>
* configure.ac:
* src/lib/core/core.c:
* src/lib/core/sink-bin.c:
* tests/bt-check.c:
* tests/bt-test-plugin.c:
Try to better handle the gst-core deprecation :/
2008-01-15 Stefan Kost <[email protected]>
* src/lib/core/core.c:
* src/lib/core/sink-bin.c:
* tests/bt-check.c:
* tests/bt-check.h:
* tests/bt-test-plugin.c:
* tests/m-bt-cmd.c:
* tests/m-bt-core.c:
* tests/m-bt-edit.c:
Adjust to latest gst-core deprecations.
2008-01-10 Stefan Kost <[email protected]>
* src/lib/core/sequence.c:
Listen to wire-pattern additionas elsewhere too. FIxes the issue
described in last,last changelog entry.
2008-01-10 Stefan Kost <[email protected]>
* src/lib/core/core.c:
Some ideas for denormal handling.
* src/ui/edit/pattern-editor.c:
* src/ui/edit/pattern-editor.h:
Add a hack to keep the rowheader visible when scrolling.
2008-01-09 Stefan Kost <[email protected]>
* src/lib/core/sequence.c:
Fix NULL pointer access. There is still a bug when adding an pattern
and edit wire data later on.
* src/lib/core/wire.c:
* src/ui/edit/main-page-machines.c:
* src/ui/edit/wire-canvas-item.c:
Refactor wire gain handling. The wire-canvas item now shows real
levels.
2008-01-08 Stefan Kost <[email protected]>
* NEWSLETTER:
Wrote and sent NEWS.
* src/lib/core/song.c:
Comments about the CHildProxy problems.
* src/lib/core/wire.c:
Plan the needed refactoring.
* src/ui/edit/wire-canvas-item.c:
Add better wire visualisations (hard-coded values).
2008-01-07 Stefan Kost <[email protected]>
* src/lib/core/wire.c:
Fix crash when freeing partialy constructed wire.
2007-12-24 Krzysztof Foltman <[email protected]>
* src/ui/edit/pattern-editor.c:
Use hardware character codes for piano keys. Wider clicking range
for note columns. Call callback after column change.
2007-12-20 Stefan Kost <[email protected]>
* src/lib/core/wire.c:
Some thoughts about refactoring the gain-property.
* src/ui/edit/wire-canvas-item.c:
Change the wire-knob shape and add rotated text for the level. No real
volume value yet.
2007-12-20 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/libbtcore/tools.h:
* src/lib/core/libbtcore/wire-methods.h:
* src/lib/core/libbtcore/wire-pattern.h:
* src/lib/core/libbtcore/wire.h:
* src/lib/core/machine.c:
* src/lib/core/marshal.list:
* src/lib/core/sequence.c:
* src/lib/core/sink-bin.c:
* src/lib/core/song.c:
* src/lib/core/tools.c:
* src/lib/core/wire-pattern.c:
* src/lib/core/wire.c:
* src/ui/edit/main-page-patterns.c:
Finalize the work of yesterday and watch for setup changes to update
signal setup for wire-pattern changes.
2007-12-20 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/libbtcore/tools.h:
* src/lib/core/libbtcore/wire-methods.h:
* src/lib/core/libbtcore/wire.h:
* src/lib/core/machine.c:
* src/lib/core/marshal.list:
* src/lib/core/sequence.c:
* src/lib/core/tools.c:
* src/lib/core/wire-pattern.c:
* src/lib/core/wire.c:
Yah, controller queues for wire-patterns. Means those pattern now also
play. Wire-patterns also react to pattern resizes.
2007-12-19 Stefan Kost <[email protected]>
* NEWSLETTER:
Gather news.
* src/lib/core/machine.c:
Improve linking elements.
* src/lib/core/sink-bin.c:
Add a proxy property for master-volume and sync with sink-machines
input-gain.
* src/lib/core/sink-machine.c:
Activate input-gain and pass to sink-bin for master-volume.
* src/ui/edit/edit-application.c:
We always have master-volume.
2007-12-18 Stefan Kost <[email protected]>
* src/ui/edit/wire-canvas-item.c:
Howto for the wire gfx.
2007-12-17 Stefan Kost <[email protected]>
* src/lib/core/song.c:
Ideas about using childproxy.
* src/ui/edit/missing-framework-elements-dialog.c:
* src/ui/edit/missing-song-elements-dialog.c:
Ideas about supporting plugin-install feature.
2007-12-17 Stefan Kost <[email protected]>
* src/lib/core/wire-pattern.c:
Keep the pattern property construct-only and implement deserializing
more efficient.
2007-12-16 Stefan Kost <[email protected]>
* TODO:
* docs/buzztrax.xsd:
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/libbtcore/persistence-methods.h:
* src/lib/core/libbtcore/wire-methods.h:
* src/lib/core/machine.c:
* src/lib/core/pattern.c:
* src/lib/core/persistence.c:
* src/lib/core/sink-bin.c:
* src/lib/core/wire-pattern.c:
* src/lib/core/wire.c:
* src/ui/edit/main-page-patterns.c:
Fixing param range in machine window. Add persistence for wire-
patterns. Add some todo comments.
2007-12-16 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/pattern-editor.c:
* src/ui/edit/pattern-editor.h:
Add cursor-location properties to editor. Now we have the parameter
info back on the bottom-line.
2007-12-15 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/pattern-editor.c:
* src/ui/edit/pattern-editor.h:
* src/ui/edit/pattern-view.c:
* src/ui/edit/sequence-view.c:
* src/ui/edit/ui-ressources-methods.h:
Add play-pos bar and octave settings to pattern-editor. Reorder
methods keep style in sync with the rest of the project.
2007-12-15 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/libbtcore/machine-methods.h:
* src/lib/core/libbtcore/wire-methods.h:
* src/lib/core/machine.c:
* src/lib/core/wire.c:
* src/ui/edit/machine-properties-dialog.c:
* src/ui/edit/main-page-patterns.c:
Refactor and reduce the parameter handling code a bit. Now it uses
less memory and makes some calls cheaper.
2007-12-15 Stefan Kost <[email protected]>
* src/ui/edit/machine-preferences-dialog.c:
* src/ui/edit/machine-properties-dialog.c:
* src/ui/edit/main-page-machines.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/tools.c:
* src/ui/edit/tools.h:
Better way to support the depreacated tooltips API on older gtk+.
2007-12-15 Stefan Kost <[email protected]>
* src/lib/core/machine.c:
* src/lib/core/persistence.c:
* src/ui/edit/main-page-patterns.c:
Now enums work within their limmits. We need to clean this up :/.
2007-12-15 Stefan Kost <[email protected]>
* src/lib/core/machine.c:
* src/lib/core/persistence.c:
* src/lib/core/sequence.c:
* src/lib/core/wire.c:
* src/ui/edit/machine-properties-dialog.c:
* src/ui/edit/main-page-patterns.c:
Boolean mapping fixes. More comments.
2007-12-14 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/pattern-editor.c:
Fix note columns and improve default value handling.
2007-12-14 Stefan Kost <[email protected]>
* src/lib/core/wire.c:
More thinking.
2007-12-14 Stefan Kost <[email protected]>
* src/lib/core/wire.c:
Thinking.
2007-12-14 Stefan Kost <[email protected]>
* docs/reference/bt-core/bt-core-docs.sgml:
* docs/reference/bt-core/bt-core-sections.txt:
* src/lib/core/Makefile.am:
* src/lib/core/libbtcore/Makefile.am:
* src/lib/core/libbtcore/core.h:
* src/lib/core/libbtcore/pattern-methods.h:
* src/lib/core/libbtcore/pattern.h:
* src/lib/core/libbtcore/wire-methods.h:
* src/lib/core/libbtcore/wire-pattern.h:
* src/lib/core/libbtcore/wire-pattern-methods.h:
* src/lib/core/machine.c:
* src/lib/core/pattern.c:
* src/lib/core/wire.c:
* src/lib/core/wire-pattern.c:
Add new wire-pattern class and do basic implementation. Its not yet
saved with a song and event are not yet effective. Prepare for adding
panning too. Also clean up some cruft.
* src/ui/edit/main-page-patterns.c:
Fully switch to new pattern layout. Simplify type mapping code and
achive better coverage.
* src/ui/edit/main-page-sequence.c:
Add ideas about clikcing in pattern-list.
* src/ui/edit/wire-canvas-item.c:
Add ideas about better wire visuals.
2007-12-13 Krzysztof Foltman <[email protected]>
* src/ui/edit/main-page-patterns.c:
* src/ui/edit/pattern-editor.c:
* src/ui/edit/pattern-editor.h:
Changed from global+track-based to groups-based approach.
Note column type fixes.
2007-12-13 Stefan Kost <[email protected]>
* src/lib/core/wire.c:
* src/ui/edit/wire-canvas-item.c:
More comments :)
2007-12-13 Stefan Kost <[email protected]>
* src/ui/edit/main-page-patterns.c:
Complete wrap the before/after code in #if 0/#else/#endif.