From 7bd0c141d4af90c5b74f2af139050e86bf735edb Mon Sep 17 00:00:00 2001 From: Javier Serrano Polo Date: Mon, 7 Aug 2006 20:36:54 +0000 Subject: [PATCH] fixed automation issues and other bugs git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@293 0778d3d1-df1d-0410-868b-ea421aaaa00d --- ChangeLog | 33 +++++++++++++++++++++++++++++++++ configure.in | 4 ++-- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 356100ba2..03fead3dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,36 @@ +2006-08-07 Javier Serrano Polo + + * include/lcd_spinbox.h: + added manualChange signal + + * src/widgets/lcd_spinbox.cpp: + - added manualChange signal + - emit valueChanged whenever value is changed + - removed redundant journalling operations + + * src/core/song_editor.cpp: + - set modified flag if there's a manual BPM change + - set tempo if BPM value has changed + - allow further processing on muted tracks + + * include/note_play_handle.h: + * src/core/note_play_handle.cpp: + * src/tracks/instrument_track.cpp: + added bbTrack reference to check whether it's muted + + * src/tracks/bb_track.cpp: + send automation events + + * include/mixer.h: + * src/core/mixer.cpp: + fixed overflow when using big audio buffers + + * plugins/audio_file_processor/audio_file_processor.cpp: + use automation in start-/end-point knobs + + * plugins/vibed/vibed.cpp: + fixed reversed pan + 2006-08-06 Javier Serrano Polo * include/engine.h: diff --git a/configure.in b/configure.in index 989906aec..c434ef617 100644 --- a/configure.in +++ b/configure.in @@ -2,8 +2,8 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.50) -AC_INIT(lmms, 0.2.1-cvs20060806, tobydox/at/users/dot/sourceforge/dot/net) -AM_INIT_AUTOMAKE(lmms, 0.2.1-cvs20060806) +AC_INIT(lmms, 0.2.1-cvs20060807, tobydox/at/users/dot/sourceforge/dot/net) +AM_INIT_AUTOMAKE(lmms, 0.2.1-cvs20060807) AM_CONFIG_HEADER(config.h)