added automation

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@178 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Javier Serrano Polo
2006-06-27 00:30:47 +00:00
parent 9021608307
commit ff55c8f3ef
2 changed files with 90 additions and 2 deletions

View File

@@ -1,3 +1,91 @@
2006-06-27 Javier Serrano Polo <jasp00/at/terra/dot/es>
* include/time_pattern.h:
* src/tracks/time_pattern.cpp:
initial release, pattern for dynamic values
* include/time_roll.h:
* src/core/time_roll.cpp:
initial release, time pattern editor
* include/level_object.h:
initial release, mainly used by the time-roll
* include/automatable_object.h:
- added levelObject inheritance and related functions
- added time pattern
- moved linkObject methods to private for safety
- save/load settings can use generic names and types other than double
* include/engine.h:
* include/main_window.h:
* src/core/engine.cpp:
* src/core/main_window.cpp:
added time-roll
* include/knob.h:
* src/widgets/knob.cpp:
- use automation capabilities
- added time-roll option in context menu
* include/tempo_sync_knob.h:
* include/volume_knob.h:
* src/widgets/automatable_button.cpp:
* src/widgets/lcd_spinbox.cpp:
* src/widgets/tempo_sync_knob.cpp:
* src/widgets/volume_knob.cpp:
added automation
* include/envelope_and_lfo_widget.h:
* plugins/audio_file_processor/audio_file_processor.cpp:
* plugins/bit_invader/bit_invader.cpp:
* plugins/organic/organic.cpp:
* plugins/plucked_string_synth/plucked_string_synth.cpp:
* plugins/triple_oscillator/triple_oscillator.cpp:
* plugins/vibed/vibed.cpp:
* src/core/arp_and_chords_tab_widget.cpp:
* src/core/envelope_and_lfo_widget.cpp:
* src/core/envelope_tab_widget.cpp:
added automation to many knobs
* include/track.h:
* src/core/track.cpp:
- added time pattern
- added name methods
* include/instrument_track.h:
* src/tracks/instrument_track.cpp:
- moved name scope to track
- added automation to knobs
- don't try to load a time pattern plugin
* src/tracks/sample_track.cpp:
added automation to knob
* include/note.h:
* src/core/note.cpp:
moved quantized() to public
* include/qt3support.h:
added QPointer
* include/song_editor.h:
added time pattern
* src/core/piano_roll.cpp:
* src/core/song_editor.cpp:
simplified combobox numbers generation
* data/themes/default/zoom_x.png:
* data/themes/default/zoom_y.png:
* resources/zoom_x.png:
* resources/zoom_y.png:
icons for the time-roll
* Makefile.am:
* src/lmms_single_source.cpp:
added new files
2006-06-12 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/organic/organic.cpp:

View File

@@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
AC_INIT(lmms, 0.1.4-cvs20060612, tobydox/at/users/dot/sourceforge/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.1.4-cvs20060612)
AC_INIT(lmms, 0.1.4-cvs20060627, tobydox/at/users/dot/sourceforge/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.1.4-cvs20060627)
AM_CONFIG_HEADER(config.h)