diff --git a/ChangeLog b/ChangeLog index f88bdbd55..dd6824562 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-03-07 Javier Serrano Polo + + * plugins/singerbot/singerbot.cpp: + fixed high quality play + + * data/locale/ca.ts: + shortened some words + 2007-02-28 Javier Serrano Polo * src/audio/audio_alsa.cpp: diff --git a/configure.in b/configure.in index 5325453d6..11142e60d 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-svn20070228, lmms-devel/at/lists/dot/sf/dot/net) -AM_INIT_AUTOMAKE(lmms, 0.2.1-svn20070228) +AC_INIT(lmms, 0.2.1-svn20070307, lmms-devel/at/lists/dot/sf/dot/net) +AM_INIT_AUTOMAKE(lmms, 0.2.1-svn20070307) AM_CONFIG_HEADER(config.h) diff --git a/data/locale/ca.qm b/data/locale/ca.qm index 06ae84cc7..aa307327c 100644 Binary files a/data/locale/ca.qm and b/data/locale/ca.qm differ diff --git a/data/locale/ca.ts b/data/locale/ca.ts index 62f670242..61e1d284d 100644 --- a/data/locale/ca.ts +++ b/data/locale/ca.ts @@ -2032,7 +2032,7 @@ Fent doble clic a qualsevol connector mostrarà informació sobre els ports. SLIDE - LLISCAMENT + LLISCA Fine detuning of the VCO. Ranged between -100 and 100 centes. @@ -2044,7 +2044,7 @@ Fent doble clic a qualsevol connector mostrarà informació sobre els ports. DETUNE - DESAFINAMENT + DESAF Distortion diff --git a/plugins/singerbot/singerbot.cpp b/plugins/singerbot/singerbot.cpp index 09c8906c6..99d7b66fb 100644 --- a/plugins/singerbot/singerbot.cpp +++ b/plugins/singerbot/singerbot.cpp @@ -247,9 +247,7 @@ void singerBot::createWave( notePlayHandle * _n ) return; } - hdata->frequency = getInstrumentTrack()->frequency( _n ) - / ( eng()->getMixer()->sampleRate() - / DEFAULT_SAMPLE_RATE ); + hdata->frequency = getInstrumentTrack()->frequency( _n ); hdata->duration = _n->length() > 0 ? _n->length() * 60.0f * BEATS_PER_TACT / 64.0f / eng()->getSongEditor()->getTempo() :