-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.old
17877 lines (14718 loc) · 560 KB
/
ChangeLog.old
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
2009-02-23 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* README:
* CMakeLists.txt:
made 0.4.3 release
* include/atomic_int.h:
- fixed typo
- added copy constructor implementation for AtomicInt class - fixes
build failure with Qt < 4.4.0
* CMakeLists.txt:
fixed typos
* cmake/modules/FindSTK.cmake:
* CMakeLists.txt:
reflect changes in MinGW crosscompiling environment
2009-02-19 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/fade_button.h:
* src/gui/widgets/fade_button.cpp:
rewrote timing of fading animation for not postponing updates of
hidden fadeButton until it becomes visible
* src/gui/widgets/automatable_button.cpp:
* src/core/track.cpp:
make sure all buttons in trackOperationsWidget have focus-policy
set to Qt::NoFocus in order to make space play song even if you clicked
e.g. a mute-button (closes #2486211)
* include/note.h:
* src/core/note.cpp:
- coding style fixes
- improved handling of shared detuningHelper object
* include/instrument_track.h:
* include/piano_roll.h:
* src/gui/piano_roll.cpp:
* src/gui/song_editor.cpp:
* src/tracks/instrument_track.cpp:
fixed various bugs regarding recording:
- once recording has been started, stop it as soon as playMode of song
changes or similiar things happen (closes #2486341)
- fixed broken record-accompany in most use-cases other than using
record-while-playing-song by also tracking NoteOn events and remember
current play position to use the correct note postitions on NoteOff
events (play position might have wrapped around in the meantime due
to looppoints or end of BB track) (closes #2486299, #2486203)
- move timeLine marker in Piano Roll and autoscroll when recording while
playing song (closes #2486334)
2009-02-14 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/3rdparty/samplerate/samplerate.h:
reverted rev 2037 as we have custom changes in this file
2009-02-13 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/pattern.h:
* src/tracks/pattern.cpp:
- added missing slot declaration for abortFreeze(), fixes lockup when
freezing pattern (closes #2530320)
- update patternView after freezing
- fixed drawing of frozen pattern
* include/sample_buffer.h:
* src/core/sample_buffer.cpp:
- when resampling whole sampleBuffer, set end_of_input = 1 in
libsamplerate data struct - fixes lots of zero samples at the end
of output buffer (closes #2531452)
- coding style fixes
- removed obsolete save/restore of EOF-property in libsample rate
data struct when resampling successively (always use 0)
* src/3rdparty/samplerate/src_linear.c:
* src/3rdparty/samplerate/samplerate.h:
* src/3rdparty/samplerate/src_sinc.c:
* src/3rdparty/samplerate/src_zoh.c:
* src/3rdparty/samplerate/samplerate.c:
* CMakeLists.txt:
integrated latest libsamplerate which is both faster and more reliable
* src/gui/widgets/visualization_widget.cpp:
disable output monitor per default and show click-hint
2009-02-12 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/group_box.h:
* src/gui/widgets/effect_rack_view.cpp:
backport: manage effectRackView with a QVBoxLayout
* src/gui/widgets/controller_rack_view.cpp:
* src/gui/widgets/effect_rack_view.cpp:
backport: prevent Horizontal bars from appearing in some cases
* cmake/modules/Win32Toolchain.cmake:
reflect recent changes to MinGW cross compiling environment
* plugins/sf2_player/sf2_player.cpp:
update patch after loading settings (closes #2486372)
* src/gui/piano_roll.cpp:
ensure, cursor is never NULL when painting it in paintEvent()
* src/core/sample_buffer.cpp:
do not load samples bigger than 100 MB (closes #2458375)
2009-02-05 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/ladspa_effect/caps/dsp/Eq.h:
better workaround for optimizer bug in GCC >= 4.3
* plugins/sid/sid_instrument.cpp:
* plugins/flp_import/unrtf.cpp:
* src/core/track.cpp:
added missing header for compilation with GCC 4.4
* include/pattern.h:
* src/tracks/pattern.cpp:
cleanups
* src/core/envelope_and_lfo_parameters.cpp:
- simplified formulas for calculating envelope array resulting in about
3x performance with traditional FPU code
- loops now can be vectorized by GCC 4.4
* include/atomic_int.h:
* include/audio_port.h:
* include/mixer.h:
* src/core/mixer.cpp:
reworked mixer-threads (synchronization, realization of jobqueue etc.)
which results in a much better performance and stability
2009-02-04 Andrew Kelley <superjoe30/at/gmail/dot/com>
* src/gui/piano_roll.cpp:
fixed bug: you can use shift+left to move notes past the beginning
2009-02-01 Andrew Kelley <superjoe30/at/gmail/dot/com>
* src/core/track.cpp:
integrated pitanga's patch to fix unquantized BB dragging in
song editor. Changed ctrl modifier to alt to be consistent.
2009-01-25 Paul Giblock <drfaygo/at/gmail/dot/com>
* src/tracks/bb_track.cpp:
Integrate broken BB-clone bug from pitanga
2009-01-25 Paul Giblock <drfaygo/at/gmail/dot/com>
* src/gui/widgets/knob.cpp:
Fix infinite recursion on Mac OSX
* plugins/flp_import/unrtf/html.c:
* plugins/flp_import/unrtf/output.h:
* plugins/flp_import/unrtf/convert.c:
Avoid compile warnings
2009-01-03 Paul Giblock <drfaygo/at/gmail/dot/com>
* src/gui/widgets/automatable_button.cpp:
fix drag support for button groups
2008-12-22 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* CMakeLists.txt:
fixed plugins/ directory when updating localization file
* plugins/flp_import/flp_import.cpp:
in FL_EffectChannel initialize isMuted member - fixes muted FX channels
when importing older FLP files
2008-12-19 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* CMakeLists.txt:
* README:
made 0.4.2 release
* plugins/vst_base/vst_plugin.h:
* plugins/vst_base/vst_plugin.cpp:
* plugins/vst_effect/vst_effect_control_dialog.cpp:
* plugins/vst_effect/vst_effect.cpp:
* plugins/vestige/vestige.cpp:
fixed crash when adding VST effects
* include/project_version.h:
* src/core/project_version.cpp:
fixed broken version comparing which indicated 0.x.y to be less than
0.x.y-patch - fixes messed up projects when loading files created
with LMMS 0.4.0
2008-12-17 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* CMakeLists.txt:
* README:
made 0.4.1 release
* cmake/modules/FindSTK.cmake:
* include/combobox_model.h:
* include/combobox.h:
* src/core/config_mgr.cpp:
* data/CMakeLists.txt:
* CMakeLists.txt:
added STK support to win32 version of LMMS
* data/locale/ja.ts:
* data/locale/ja.qm:
added Japanese localization files by
Keishi Suenaga <skeishi/at/yahoo/dot/co/dot/jp>
* include/instrument_track.h:
* src/tracks/instrument_track.cpp:
backport: do not create a instrument track window just for calling
dragEnterEvent() - use a static method instead
2008-12-17 Paul Giblock <drfaygo/at/gmail/dot/com>
* include/track.h:
* src/core/track.cpp:
backport: cache background per-object instead of per-class
2008-12-17 Andrew Kelley <superjoe30/at/gmail/dot/com>
* AUTHORS:
backport: added Andrew Kelley as author
* src/core/timeline.cpp:
* src/gui/automatable_model_view.cpp:
* src/gui/automation_editor.cpp:
* src/gui/piano_roll.cpp:
* src/gui/widgets/automatable_button.cpp:
* src/gui/widgets/automatable_slider.cpp:
* src/gui/widgets/combobox.cpp:
* src/gui/widgets/fader.cpp:
* src/gui/widgets/knob.cpp:
* src/gui/widgets/lcd_spinbox.cpp:
* src/tracks/sample_track.cpp:
backport: changed modifier detection from mainWindow::isCtrlPressed
etc to Qt framework detection. Fixes a bunch of little glitches and
enables horizontal scroll wheels.
* include/midi.h:
* include/note.h:
* include/panning.h:
* include/panning_constants.h:
* include/pattern.h:
* include/piano_roll.h:
* src/core/note.cpp:
* src/core/piano.cpp:
* src/tracks/pattern.cpp:
backport: added support for panning editing of notes
2008-12-15 Paul Giblock <drfaygo/at/gmail/dot/com>
* src/core/track.cpp:
* include/track.h:
Cache background per-object instead of per-class.
2008-12-14 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* CMakeLists.txt:
require at least Qt 4.3.0
2008-12-11 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/automation_pattern.h:
* src/core/automation_pattern.cpp:
do not disable automation when just editing first point of an
automation pattern (closes #2146230)
* include/automation_pattern_view.h:
* src/gui/automation_pattern_view.cpp:
splitted view component out of automation_pattern.*
2008-12-10 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/vst_base/communication.h:
* plugins/vst_base/vst_plugin.cpp:
* plugins/vst_base/remote_vst_plugin.cpp:
rewrote wide parts of LVSL backend:
- now supports two threading models which makes LMMS support plugins
like Sytrus, z3ta+ etc.
- on win32 create native widget as parent for plugin's GUI, fixes
warning message when loading KarmaSynth (closes #2276787)
- try more symbol names for entry procedure
* include/aeffectx.h:
- made "int"s to "const int"s
- added CCONST macro
* include/remote_plugin.h:
* src/core/remote_plugin.cpp:
added support for debug messages from remote plugin
2008-12-08 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/vst_base/vst_plugin.cpp:
win32-version: fixed crash when using VST plugins without GUI
* include/effect_chain.h:
export effectChain for properly building FLP import DLL
* include/song_editor.h:
* src/gui/song_editor.cpp:
fixed recent commit (m_timeLine was not declared as member yet)
2008-12-07 Andrew Kelley <superjoe30/at/gmail/dot/com>
* src/gui/song_editor.cpp:
fixed glitch where it would auto-scroll even if it was off in
song-editor
2008-12-04 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/vst_base/remote_vst_plugin.cpp:
explicitely declare updateSampleRate() and updateBufferSize() as virtual
* src/tracks/instrument_track.cpp:
decreased step-property of volumeModel and panningModel from 1.0 to 0.1
for allowing smoother transitions when automating etc.
2008-12-02 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* data/locale/ja.ts:
* data/locale/ja.qm:
added Japanese localization files by
Keishi Suenaga <skeishi/at/yahoo/dot/co/dot/jp>
2008-12-01 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/triple_oscillator/triple_oscillator.cpp:
per default play sub-octaves of first oscillator in osc 2 and 3
2008-11-22 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/core/automatable_model.cpp:
fixed wrong logic in automatableModel::setValue() which led to bugs when
changing linked controls to 0
* src/gui/file_browser.cpp:
do not allow to import unhandled file types, e.g. ZynAddSubFX presets if
plugin is not available (closes #2326384)
2008-11-21 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/flp_import/flp_import.h:
* plugins/flp_import/flp_import.cpp:
completely rewrote FLP import filter since it didn't work at all
anymore - it now doesn't create or change any things in LMMS while
importing and instead builds up a complete data structure first
which represents the FL Studio project and then creates an LMMS
project based upon this data structure
- now supports projects from FL Studio 3 to 8
- more verbose debug output
- import volume, panning, pitch and FX channel for instrument tracks
- import amplification, loop-mode and reverse-mode settings for
AudioFileProcessor
- import FX mixer settings and effects
- import automation data
- import channel- and pattern names
- import volume and panning settings of individual notes
- add notes of instrument layer master to each layer children for at
least having a complete sound - need to replace with real layering
support later
- map more instruments to various LMMS instruments
- fixed calculations of length and position of notes
- fixed importing steps/dots
- fixed scaling factor of various controls (arpeggio time,
envelope sustain and amount, filter cut/res, TripleOsc volumes etc.)
- if three user defined samples were found for TripleOscillator set
first oscillator to oscillator::SawWave
* plugins/flp_import/unrtf.cpp:
* plugins/flp_import/CMakeLists.txt:
* plugins/flp_import/unrtf/error.h:
* plugins/flp_import/unrtf/output.c:
* plugins/flp_import/unrtf/html.c:
* plugins/flp_import/unrtf/output.h:
* plugins/flp_import/unrtf/malloc.c:
* plugins/flp_import/unrtf/html.h:
* plugins/flp_import/unrtf/attr.c:
* plugins/flp_import/unrtf/parse.c:
* plugins/flp_import/unrtf/word.c:
* plugins/flp_import/unrtf/malloc.h:
* plugins/flp_import/unrtf/util.c:
* plugins/flp_import/unrtf/attr.h:
* plugins/flp_import/unrtf/parse.h:
* plugins/flp_import/unrtf/convert.c:
* plugins/flp_import/unrtf/word.h:
* plugins/flp_import/unrtf/util.h:
* plugins/flp_import/unrtf/hash.c:
* plugins/flp_import/unrtf/convert.h:
* plugins/flp_import/unrtf/defs.h:
* plugins/flp_import/unrtf/hash.h:
* plugins/flp_import/unrtf/main.h:
* plugins/flp_import/unrtf/error.c:
updated to latest version of unrtf and improved string operations
* src/core/main.cpp:
added support for importing file from commandline
* include/effect_chain.h:
added method for enabling/disabling FX chain
* include/file_browser.h:
* src/gui/file_browser.cpp:
enhanced support for importing various file types directly from browser
* include/pattern.h:
* src/tracks/pattern.cpp:
added method for toggling steps
* include/fx_mixer.h:
added method for accessing FX channels
* plugins/midi_import/midi_import.cpp:
check for tempoAutomationPattern being NULL for not crashing when
importing to BB-Editor
* include/instrument_track.h:
return pointers instead of references to various internal models
* include/basic_filters.h:
* include/bb_track_container.h:
* include/instrument_track.h:
* include/pattern.h:
* include/track_container.h:
* src/core/instrument_functions.cpp:
* src/tracks/pattern.cpp:
* src/gui/track_container_view.cpp:
coding style fixes
2008-11-11 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/core/track.cpp:
* src/core/timeline.cpp:
* src/core/piano.cpp:
* src/core/automation_pattern.cpp:
* src/gui/piano_roll.cpp:
* src/gui/fx_mixer_view.cpp:
* src/gui/widgets/track_label_button.cpp:
* src/gui/widgets/visualization_widget.cpp:
* src/gui/widgets/combobox.cpp:
* src/gui/widgets/tab_widget.cpp:
* src/gui/widgets/kmultitabbar.cpp:
* src/gui/widgets/envelope_and_lfo_view.cpp:
* src/gui/widgets/cpuload_widget.cpp:
* src/gui/widgets/fade_button.cpp:
* src/gui/widgets/lcd_spinbox.cpp:
* src/gui/widgets/group_box.cpp:
* src/gui/widgets/fader.cpp:
* src/gui/widgets/effect_rack_view.cpp:
* src/gui/widgets/effect_view.cpp:
* src/gui/automation_editor.cpp:
set OpaquePaintEvent attribute for all widgets where suitable - makes
whole GUI less sluggish :)
2008-11-04 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/sf2_player/sf2_player.cpp:
fixed broken reference sharing
* include/automatable_model.h:
* src/core/automatable_model.cpp:
fixed loops when adding a controller to a model which is linked to
another model
* src/core/effect.cpp:
call saveSettings()/loadSettings() on model rather than loading/saving
value directly - fixes lost automation on basic effect controls
2008-10-30 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* CMakeLists.txt:
made 0.4.0 release
* CMakeLists.txt:
- include all necessary DLLs in win64 build
- fix versioning for CPack if no VERSION_SUFFIX is set
* plugins/sid/sid_instrument.cpp:
* plugins/papu/papu_instrument.cpp:
* include/clipboard.h:
include QtXml/QDomElement rather than Qt/QtXml - fixes compilation on
OS X
2008-10-29 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/ladspa_effect/ladspa_effect.cpp:
limit processing of TAP Reflector to 192 KHz as it otherwise crashes
* include/timeline.h:
* src/gui/piano_roll.cpp:
fixed autoscroll feature in piano-roll (closes #2204508)
2008-10-28 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* CMakeLists.txt:
disabled PortAudio support until a fix for the crash when accepting
setup-dialog is available
2008-10-27 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* data/presets/TripleOscillator/SEGuitar.xpf:
* data/presets/TripleOscillator/SBass2.xpf:
* data/presets/TripleOscillator/STrash.xpf:
* data/presets/TripleOscillator/SString.xpf:
* data/presets/TripleOscillator/SBass.xpf:
added some cool presets by Skiessi
* plugins/ladspa_effect/ladspa_effect.cpp:
added Freeverb to blacklist as it does not work samplerate independent
* cmake/modules/Win64Toolchain.cmake:
* cmake/modules/DetectMachine.cmake:
* cmake/modules/BuildPlugin.cmake:
* plugins/ladspa_effect/swh/CMakeLists.txt:
* plugins/ladspa_effect/cmt/CMakeLists.txt:
* plugins/ladspa_effect/tap/CMakeLists.txt:
* plugins/ladspa_effect/caps/CMakeLists.txt:
* plugins/ladspa_effect/caps/dsp/windows.h:
* plugins/vst_base/remote_vst_plugin.cpp:
* plugins/vst_base/basename.c:
* plugins/vst_base/CMakeLists.txt:
* plugins/midi_import/portsmf/allegro.h:
* src/core/midi/midi_winmm.cpp:
* src/core/mixer.cpp:
* lmmsconfig.h.in:
* CMakeLists.txt:
various fixes for successfully building LMMS for win64
2008-10-25 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/mixer.h:
* src/core/mixer.cpp:
* src/core/project_renderer.cpp:
- initial (not yet enabled) support for binding mixer threads to CPUs to
reduce scheduling overhead and cache misses (gives avg. 10% performance
boost)
- merged mixer-thread with first worker-thread - no more duplicate
code for single- and multicore processing and better scheduling
on multicore systems
* include/automatable_model.h:
* src/core/automatable_model.cpp:
* src/core/audio/audio_alsa.cpp:
* src/core/audio/audio_oss.cpp:
* src/core/audio/audio_jack.cpp:
* src/core/envelope_and_lfo_parameters.cpp:
* src/core/piano.cpp:
* src/core/controller.cpp:
* src/gui/fx_mixer_view.cpp:
* src/gui/widgets/combobox.cpp:
* src/gui/widgets/envelope_and_lfo_view.cpp:
* src/gui/widgets/knob.cpp:
* src/gui/widgets/instrument_midi_io_view.cpp:
* src/gui/widgets/automatable_slider.cpp:
* src/gui/widgets/lcd_spinbox.cpp:
* src/gui/widgets/fader.cpp:
* src/gui/widgets/automatable_button.cpp:
* src/tracks/automation_track.cpp:
do not inline code for fetching value from controller and thus reduce
header dependencies
* plugins/vst_effect/CMakeLists.txt:
* plugins/vestige/CMakeLists.txt:
* plugins/vst_base/CMakeLists.txt:
* CMakeLists.txt:
made building the WINE-part of VST Support Layer optional to allow
packaging it in separate package (e.g. on 64 bit platforms)
2008-10-25 dieEasy <dieeasy/at/cheapnet/dot/it>
* data/locale/it.qm:
* data/locale/it.ts:
updated Italian localization
2008-10-25 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* data/locale/cs.qm:
* data/locale/pt_br.qm:
* data/locale/es.qm:
* data/locale/fr.qm:
* data/locale/nl.qm:
* data/locale/ir.qm:
* data/locale/en.ts:
* data/locale/cs.ts:
* data/locale/pt_br.ts:
* data/locale/es.ts:
* data/locale/fr.ts:
* data/locale/nl.ts:
* data/locale/ca.qm:
* data/locale/ir.ts:
* data/locale/ru.qm:
* data/locale/sv.qm:
* data/locale/ca.ts:
* data/locale/ru.ts:
* data/locale/sv.ts:
* data/locale/en.qm:
refreshed localization files
* data/locale/de.ts:
* data/locale/de.qm:
updated German localization file
* src/gui/lfo_controller_dialog.cpp:
fixed strings
* include/file_browser.h:
* src/gui/file_browser.cpp:
renamed class "listView" to "fileBrowserTreeWidget"
* cmake/modules/DetectMachine.cmake:
allow specifying destination directory for libs via CMAKE_INSTALL_LIBDIR
* src/core/sample_buffer.cpp:
- fixed out-of-boundary array access when reversing samples
- optimized loops for loading samples
2008-10-21 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/plugin.h:
reverted to rev. 1766 - fixes broken label on LADSPA effects
* include/knob.h:
* src/gui/widgets/knob.cpp:
track focusOutEvents in order to unhide cursor in certain situations
2008-10-20 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* CMakeLists.txt:
made 0.4.0-rc3 release
* README:
various fixes
* src/gui/dialogs/about_dialog.ui:
use QTextEdit rather than QPlainTextEdit for Qt 4.3 compatibility
2008-10-19 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/sid/sid_instrument.cpp:
* plugins/ladspa_effect/ladspa_effect.cpp:
* plugins/patman/patman.cpp:
* plugins/lb302/lb302.cpp:
* plugins/organic/organic.cpp:
* plugins/lb303/lb303.cpp:
* plugins/stereo_matrix/stereo_matrix.cpp:
* plugins/bass_booster/bass_booster.cpp:
* plugins/bit_invader/bit_invader.cpp:
* plugins/vst_effect/vst_effect.cpp:
* plugins/vibed/vibed.cpp:
* plugins/triple_oscillator/triple_oscillator.cpp:
* plugins/peak_controller_effect/peak_controller_effect.cpp:
* plugins/audio_file_processor/audio_file_processor.cpp:
* plugins/stk/mallets/mallets.cpp:
* plugins/stereo_enhancer/stereo_enhancer.cpp:
* plugins/papu/papu_instrument.cpp:
* plugins/sf2_player/sf2_player.cpp:
* plugins/vestige/vestige.cpp:
* plugins/vst_base/vst_base.cpp:
* plugins/ladspa_browser/ladspa_browser.cpp:
* plugins/spectrum_analyzer/spectrum_analyzer.cpp:
* plugins/kicker/kicker.cpp:
* plugins/flp_import/flp_import.cpp:
* plugins/midi_import/midi_import.cpp:
* include/embed.h:
* include/lmms_basics.h:
* include/plugin.h:
* src/gui/embed.cpp:
made STRINGIFY_PLUGIN_NAME from embed.h a generic macro STRINGIFY in
lmms_basics.h
* include/about_dialog.h:
* src/gui/about_dialog.cpp:
* src/gui/dialogs/about_dialog.ui:
designed-based about dialog
* src/gui/widgets/rename_dialog.cpp:
initially select whole string so it can be overwritten easily
* AUTHORS:
moved an item to lmms-extras/AUTHORS
* plugins/vst_base/vst_plugin.h:
* plugins/vst_base/vst_plugin.cpp:
* plugins/vst_effect/vst_effect_control_dialog.cpp:
improved VST GUI embedding (closes #2167745)
* src/gui/track_container_view.cpp:
do not call method on deleted trackView but fetch pointer to track
before deleting trackView (fixes crash when removing a track)
2008-10-18 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/gui/widgets/track_label_button.cpp:
more checks before accessing icon - fixes crash when using ZynAddSubFX
plugin
* plugins/vst_base/remote_vst_plugin.cpp:
various tweakings
* src/core/piano.cpp:
check for focusWidget() being NULL before checking inheritance - fixes
crash for example when loading VST plugins
* src/gui/main_window.cpp:
use "Root directory" rather than "My computer" in non-win32-version
* cmake/modules/FindAlsa.cmake:
* CMakeLists.txt:
do not create alsaconfig.h
* plugins/sf2_player/sf2_player.cpp:
do not mess around with global static pointers for a single instance
of patchesDialog - create a local object instead (closes #2139701)
* include/file_browser.h:
* src/gui/file_browser.cpp:
added filter feature allowing quick file access
* include/file_browser.h:
* src/gui/main_window.cpp:
* src/gui/file_browser.cpp:
* data/themes/default/computer.png:
* data/themes/default/home.png:
- renamed tab "root" to "My computer"
- on win32 allow browsing drives in "My computer" tab
- improved icons for home and "My computer" browser
* include/embed.h:
* include/instrument_track.h:
* include/plugin.h:
* include/track_label_button.h:
* src/gui/widgets/track_label_button.cpp:
in instrument tracks draw icon of instrument rather than displaying the
full name of the instrument on track label button
* src/tracks/instrument_track.cpp:
do not call trackView::dragEnterEvent() if instrument track window
already accepted drag event - fixes dragging of presets and
instruments onto track label button
* src/core/piano.cpp:
do not reclaim keyboard focus if new focus widget is a QLineEdit
2008-10-17 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/remote_plugin.h:
* src/core/remote_plugin.cpp:
added helper thread processWatcher which monitors the remote plugin
process - if it terminates unexpectedly, invalidate remotePlugin so
LMMS doesn't lock up - fixes crashes and lockups when using VST
plugins or ZynAddSubFX plugin
2008-10-16 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/core/piano.cpp:
reclaim keyboard focus if the current focus-widget lives in the same
instrument-track-window as the previously active test piano - this way
running notes are not stopped when modifying a control in the same
instrument-track-window (closes #2139806)
* include/file_browser.h:
* src/gui/file_browser.cpp:
heavily improved performance when adding items to file browser
tree-widget (closes #2146218)
2008-10-15 dieEasy <dieeasy/at/cheapnet/dot/it>
* data/locale/it.qm:
* data/locale/it.ts:
updated Italian localization
2008-10-15 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* data/locale/cs.qm:
* data/locale/cs.ts:
added Czech localization by Ludek Cerny <erl/at/erlmedia/dot/cz>
* src/core/timeline.cpp:
move position marker lines even if autoscrolling is disabled
* include/envelope_and_lfo_parameters.h:
* src/core/envelope_and_lfo_parameters.cpp:
reverted to rev. 1479 as the optimizations lately completely screwed
up things...
* plugins/flp_import/flp_import.cpp:
* include/basic_filters.h:
cleanups
2008-10-14 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* tests/README:
* tests/emptyproject.mmp:
first initial "test"
* src/core/mixer.cpp:
- use ordered memory semantics for atomic int
- more debug output when encountering bad jobqueue items
* CMakeLists.txt:
improved dependency handling for building manpage
2008-10-06 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/mmp.h:
* include/cpuload_widget.h:
* include/endian_handling.h:
* include/track.h:
* include/controller_rack_view.h:
* include/mixer.h:
* include/ladspa_manager.h:
* include/instrument_functions.h:
* include/sample_buffer.h:
* include/effect_lib.h:
* include/midi.h:
* include/effect_rack_view.h:
* include/graph.h:
* include/micro_timer.h:
* include/envelope_and_lfo_parameters.h:
* include/piano_roll.h:
* include/volume.h:
* include/midi_time.h:
* include/basic_filters.h:
* include/journalling_object.h:
* include/automation_editor.h:
* include/panning.h:
* include/project_journal.h:
* include/play_handle.h:
* plugins/bit_invader/bit_invader.h:
* plugins/vibed/vibrating_string.h:
* plugins/vibed/nine_button_selector.h:
* plugins/vibed/string_container.h:
* plugins/vst_base/remote_vst_plugin.cpp:
* src/core/base64.cpp:
* src/gui/widgets/side_bar_widget.cpp:
renamed types.h to lmms_basics.h
2008-10-06 Attila Herman <attila589/at/gmail/dot/com>
* plugins/papu/papu_intrument.cpp:
- renamed from PAPU to FreeBoy
- help added to the knobs
2008-10-04 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/kicker/kicker.cpp:
moved constants out of loop
* include/types.h:
set global alignment via a #define
* src/gui/piano_roll.cpp:
- fixed typo
- do not crash when pressing right mouse button while moving a note
with left mouse button
* src/core/song.cpp:
lock mixer while adjusting lengths of notePlayHandles after tempo change
* src/gui/file_browser.cpp:
* src/core/note_play_handle.cpp:
* src/core/audio/audio_port.cpp:
coding style fixes
* include/mixer.h:
* src/core/mixer.cpp:
removed fine-granular locking of various playHandle-vectors, just use
one global big lock for everything now - prevents various
deadlocks (e.g. when previewing samples in file browser)
* src/gui/automation_editor.cpp:
in erase-mode do not remove values without clicking
* src/core/envelope_and_lfo_parameters.cpp:
fixed what I broke a few hours ago.. (closes #2146864)
* src/core/mmp.cpp:
fixed extension for presets
* plugins/ladspa_effect/ladspa_effect.cpp:
* include/automatable_model.h:
* include/automation_pattern.h:
* src/core/automatable_model.cpp:
* src/core/ladspa_control.cpp:
* src/core/automation_pattern.cpp:
fixed lost automation relations when switching samplerate
* plugins/lb302/lb302.cpp:
* plugins/lb302/lb302.h:
* plugins/bass_booster/bass_booster.cpp:
* plugins/bass_booster/bass_booster.h:
* plugins/bit_invader/bit_invader.cpp:
* plugins/vst_effect/vst_effect.cpp:
* plugins/peak_controller_effect/peak_controller_effect.cpp:
* plugins/stereo_enhancer/stereo_enhancer.cpp:
* plugins/stereo_enhancer/stereo_enhancer.h:
* plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.cpp:
* plugins/kicker/kicker.cpp:
* include/sweep_oscillator.h:
* include/envelope_and_lfo_parameters.h:
* include/remote_plugin.h:
* include/types.h:
* src/core/midi/midi_client.cpp:
* src/core/journalling_object.cpp:
* src/core/audio/audio_pulseaudio.cpp:
* src/core/envelope_and_lfo_parameters.cpp:
* src/core/instrument_sound_shaping.cpp:
* src/core/effect.cpp:
* src/core/ladspa_control.cpp:
* src/core/peak_controller.cpp:
* src/gui/widgets/visualization_widget.cpp:
* src/gui/widgets/tempo_sync_knob.cpp:
- added missing includes to compile with GCC 4.4
- optimized various loops for getting tree-vectorized, especially with
upcoming GCC 4.4
* CMakeLists.txt:
use -ftree-vectorize per default - everyone compiling LMMS (which
needs Qt >= 4.3.0) will at least have GCC 4.1, anyways only makes
sense when setting C(XX)FLAGS=-march=...
* include/effect_lib.h:
improved effectLib for not being based on virtual-functions rather than
direct function-inlining via template parameter
2008-10-02 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/lb302/lb302.h:
* plugins/lb303/lb303.h:
removed obsolete supportsParallelizing() method
* src/tracks/instrument_track.cpp:
fixed volume-scaling for IPH-based but not MIDI-based instruments
* src/core/envelope_and_lfo_parameters.cpp:
use memset() rather than initializing the buffer in a loop with 0
* plugins/ladspa_effect/ladspa_effect.cpp:
fetch pointer to LADSPA port descriptor once outside the inner loops -
improves performance of ladspaEffect::processAudioBuffer() by 400%
* include/types.h:
faster floating point comparison
* data/locale/ru.ts:
added updated Russian localization by Alexey Kouznetsov
* buildtools/bin2res.cpp:
* include/mmp.h:
* include/knob.h:
* include/effect.h:
* include/templates.h:
* include/track.h:
* include/note.h:
* include/automatable_model.h:
* include/import_filter.h:
* include/mixer.h:
* include/combobox_model.h:
* include/ladspa_manager.h:
* include/instrument.h:
* include/sample_buffer.h:
* include/midi.h:
* include/effect_lib.h:
* include/sample_record_handle.h:
* include/shared_object.h:
* include/plugin.h:
* include/note_play_handle.h:
* include/instrument_sound_shaping.h:
* include/oscillator.h:
* include/tempo_sync_knob.h:
* include/midi_time.h:
* include/remote_plugin.h:
* include/basic_filters.h:
* include/journalling_object.h:
* include/types.h:
* include/dummy_effect.h:
* include/automatable_model_view.h:
* include/inline_automation.h:
* include/audio_device.h:
* include/panning.h:
* include/combobox.h:
* include/ladspa_2_lmms.h:
* src/core/preset_preview_play_handle.cpp:
* src/core/note_play_handle.cpp:
* src/core/song.cpp:
* src/core/serializing_object.cpp:
* src/core/bb_track_container.cpp:
* src/core/remote_plugin.cpp:
* src/core/journalling_object.cpp:
* src/core/automatable_model.cpp:
* src/core/audio/audio_alsa.cpp:
* src/core/audio/audio_sdl.cpp:
* src/core/audio/audio_portaudio.cpp:
* src/core/audio/audio_jack.cpp:
* src/core/main.cpp: