mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Version 1.0.9, bumped version, no library interface changes, removed
doc/html and doc/api directories from EXTRA_DIST, MIDI channel now displayed when a preset is substituted.
This commit is contained in:
parent
c3f3fa3762
commit
78e8b1c14e
5 changed files with 14 additions and 7 deletions
|
@ -1,5 +1,12 @@
|
|||
2009-04-11 Josh Green <jgreen@users.sourceforge.net>
|
||||
* FluidSynth release 1.0.9 "A Sound Future"
|
||||
* configure.ac: Bumped version, no library interfaces added, removed or changed.
|
||||
* doc/Makefile.am: Removed html and api folders from EXTRA_DIST.
|
||||
* src/fluid_synth.c (fluid_synth_program_change): Preset substitute warning
|
||||
now outputs MIDI channel.
|
||||
|
||||
2009-04-02 Pedro Lopez-Cabanillas <plcl@users.sourceforge.net>
|
||||
* src/config_win32.h: fix compilation under MSVC 2008 and older
|
||||
* src/config_win32.h: fix compilation under MSVC 2008 and older
|
||||
|
||||
2009-03-15 Josh Green <jgreen@users.sourceforge.net>
|
||||
* ltconfig: Removed obsolete ltconfig script by suggestion of
|
||||
|
|
|
@ -8,7 +8,7 @@ dnl *** NOTE *** Don't forget to update library version below also
|
|||
|
||||
FLUIDSYNTH_VERSION_MAJOR=1
|
||||
FLUIDSYNTH_VERSION_MINOR=0
|
||||
FLUIDSYNTH_VERSION_MICRO=8
|
||||
FLUIDSYNTH_VERSION_MICRO=9
|
||||
FLUIDSYNTH_VERSION=$FLUIDSYNTH_VERSION_MAJOR.$FLUIDSYNTH_VERSION_MINOR.$FLUIDSYNTH_VERSION_MICRO
|
||||
|
||||
AC_SUBST(FLUIDSYNTH_VERSION_MAJOR)
|
||||
|
@ -29,7 +29,7 @@ dnl if any interfaces have been added: lt_age++
|
|||
dnl if any interfaces have been removed/changed (compatibility broken): lt_age=0
|
||||
|
||||
m4_define([lt_current], [2])
|
||||
m4_define([lt_revision], [2])
|
||||
m4_define([lt_revision], [3])
|
||||
m4_define([lt_age], [1])
|
||||
|
||||
LT_VERSION_INFO="lt_current:lt_revision:lt_age"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# install the man pages and include in distribution
|
||||
man_MANS = fluidsynth.1
|
||||
EXTRA_DIST = $(man_MANS) Doxyfile example.c example.sf2 fluidsynth.1 \
|
||||
fluidsynth-v10-devdoc.xml html api FluidSynth-LADSPA.pdf
|
||||
fluidsynth-v10-devdoc.xml FluidSynth-LADSPA.pdf
|
||||
|
||||
docbook_docs = fluidsynth-v10-devdoc.xml
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#define VERSION "1.0.8"
|
||||
#define VERSION "1.0.9"
|
||||
|
||||
#define HAVE_STRING_H 1
|
||||
#define HAVE_STDLIB_H 1
|
||||
|
|
|
@ -1267,8 +1267,8 @@ fluid_synth_program_change(fluid_synth_t* synth, int chan, int prognum)
|
|||
}
|
||||
|
||||
if (preset)
|
||||
FLUID_LOG(FLUID_WARN, "Instrument not found [bank=%d prog=%d], substituted [bank=%d prog=%d]",
|
||||
banknum, prognum, subst_bank, subst_prog);
|
||||
FLUID_LOG(FLUID_WARN, "Instrument not found on channel %d [bank=%d prog=%d], substituted [bank=%d prog=%d]",
|
||||
chan, banknum, prognum, subst_bank, subst_prog);
|
||||
}
|
||||
|
||||
sfont_id = preset? fluid_sfont_get_id(preset->sfont) : 0;
|
||||
|
|
Loading…
Reference in a new issue