mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-01-31 13:40:35 +00:00
Prepare for 1.1.6 (rc1) release
This commit is contained in:
parent
52c8821294
commit
85e73665b7
4 changed files with 19 additions and 5 deletions
|
@ -29,7 +29,7 @@ set ( PACKAGE "fluidsynth" )
|
|||
# FluidSynth package version
|
||||
set ( FLUIDSYNTH_VERSION_MAJOR 1 )
|
||||
set ( FLUIDSYNTH_VERSION_MINOR 1 )
|
||||
set ( FLUIDSYNTH_VERSION_MICRO 5 )
|
||||
set ( FLUIDSYNTH_VERSION_MICRO 6 )
|
||||
set ( VERSION "${FLUIDSYNTH_VERSION_MAJOR}.${FLUIDSYNTH_VERSION_MINOR}.${FLUIDSYNTH_VERSION_MICRO}" )
|
||||
set ( FLUIDSYNTH_VERSION "\"${VERSION}\"" )
|
||||
|
||||
|
@ -44,7 +44,7 @@ set ( FLUIDSYNTH_VERSION "\"${VERSION}\"" )
|
|||
# This is not exactly the same algorithm as the libtool one, but the results are the same.
|
||||
set ( LIB_VERSION_CURRENT 1 )
|
||||
set ( LIB_VERSION_AGE 5 )
|
||||
set ( LIB_VERSION_REVISION 1 )
|
||||
set ( LIB_VERSION_REVISION 2 )
|
||||
set ( LIB_VERSION_INFO
|
||||
"${LIB_VERSION_CURRENT}.${LIB_VERSION_AGE}.${LIB_VERSION_REVISION}" )
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ dnl *** NOTE *** Don't forget to update library version below also
|
|||
|
||||
FLUIDSYNTH_VERSION_MAJOR=1
|
||||
FLUIDSYNTH_VERSION_MINOR=1
|
||||
FLUIDSYNTH_VERSION_MICRO=5
|
||||
FLUIDSYNTH_VERSION_MICRO=6
|
||||
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], [6])
|
||||
m4_define([lt_revision], [1])
|
||||
m4_define([lt_revision], [2])
|
||||
m4_define([lt_age], [5])
|
||||
|
||||
LT_VERSION_INFO="lt_current:lt_revision:lt_age"
|
||||
|
|
|
@ -20,6 +20,7 @@ All the source code examples in this document are in the public domain; you can
|
|||
|
||||
- \ref Disclaimer
|
||||
- \ref Introduction
|
||||
- \ref NewIn1_1_6
|
||||
- \ref NewIn1_1_5
|
||||
- \ref NewIn1_1_4
|
||||
- \ref NewIn1_1_3
|
||||
|
@ -62,6 +63,19 @@ What is FluidSynth?
|
|||
|
||||
- FluidSynth is open source, in active development. For more details, take a look at http://www.fluidsynth.org
|
||||
|
||||
\section NewIn1_1_6 Whats new in 1.1.6?
|
||||
|
||||
Changes in FluidSynth 1.1.6 concerning developers:
|
||||
|
||||
- The player will not continue to the next song until all EOT (end of track events) have been reached.
|
||||
- Enable long arguments on all platforms where getopt.h is available
|
||||
- Windows: Fluidsynth.pc (pkg-config spec) is now installed.
|
||||
- Mac OS X Lion: A build failure was fixed.
|
||||
|
||||
- For a full list of bug fixes, see
|
||||
http://sourceforge.net/apps/trac/fluidsynth/wiki/ChangeLog1_1_6
|
||||
|
||||
|
||||
\section NewIn1_1_5 Whats new in 1.1.5?
|
||||
|
||||
Changes in FluidSynth 1.1.5 concerning developers:
|
||||
|
|
|
@ -827,7 +827,7 @@ void
|
|||
print_welcome()
|
||||
{
|
||||
printf("FluidSynth version %s\n"
|
||||
"Copyright (C) 2000-2011 Peter Hanappe and others.\n"
|
||||
"Copyright (C) 2000-2012 Peter Hanappe and others.\n"
|
||||
"Distributed under the LGPL license.\n"
|
||||
"SoundFont(R) is a registered trademark of E-mu Systems, Inc.\n\n",
|
||||
FLUIDSYNTH_VERSION);
|
||||
|
|
Loading…
Reference in a new issue