Skip to content

Commit 5a39f59

Browse files
committed
Bump version number to 0.8.9.0
- some documentation updates
1 parent 3b862ef commit 5a39f59

File tree

3 files changed

+20
-18
lines changed

3 files changed

+20
-18
lines changed

ChangeLog

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
changes:
2+
date = 24-apr-2017 [Konstanty Bialkowski/Lionel Debroux/SEZERO]
3+
Version 0.8.9.0
4+
OOB Write and Read fixes + a number of divide by zero fixes.
5+
(ABC, PAT, AMF, MDL, PSM, XM, IT, MMCMP, MID)
6+
There were some patches 2010-2016 which were recorded here.
27
date = 21-apr-2009 [Konstanty Bialkowski/OpenMPT/Novell (Stanislav Brabec)]
38
->file: src/load_amf.cpp
49
where: whole file
@@ -128,14 +133,14 @@ date = 24-jun-2006 [Peter Grootswagers]
128133
date = 20-mar-2006 [Macro Trillo / "Custom libmodplug project"]
129134
-> file : src/load_s3m.cpp
130135
-> file : src/load_far.cpp
131-
what: fixed endianness
136+
what: fixed endianness
132137
date = 20-mar-2006 [Alistair John Strachan]
133138
....
134139

135140
Many other changes need to be documented here...
136141

137142
GCC3 fixes, GCC4 fixes, More Archive Types.
138-
143+
139144
date = 09-feb-2001 [Markus Fick]
140145
-> file: fastmix.cpp
141146
where: spline creation, spline macros
@@ -163,7 +168,7 @@ date = 08-feb-2001 [Markus Fick]
163168
what: - implemented spline table precalculator
164169
- changed fir precalculator + macros (for higher quality and clearer source)
165170
- added some comments and documentation
166-
comment:
171+
comment:
167172
- preprocessor constant: SPLINE_FRACBITS
168173
) controls quality/memory usage
169174
range is [4..14] inclusive
@@ -182,7 +187,7 @@ date = 07-feb-2001 [Markus Fick]
182187

183188
date = 07-feb-2001 [Markus Fick]
184189
-> file: sndfile.h
185-
where: class definition of soundfile
190+
where: class definition of soundfile
186191
what: removed InitFIR + DoneFIR function prototypes
187192
-> file: sndfile.cpp
188193
function:CSoundFile::CSoundFile()
@@ -225,7 +230,7 @@ date = 04-feb-2001 [Markus Fick]
225230
-> file: sndfile.cpp
226231
function:CSoundFile::CSoundFile()
227232
what: [modify] add call to CSoundFile::InitFIRMixer( )
228-
233+
229234
function:CSoundFile::~CSoundFile()
230235
what: [modify] add call to CSoundFile::DoneFIRMixer( )
231236

@@ -277,20 +282,18 @@ date = 04-feb-2001 [Markus Fick]
277282
const LPMIXINTERFACE gpMixFunctionTable[2*2*16] // to hold new fir mixer interface
278283
const LPMIXINTERFACE gpFastMixFunctionTable[2*2*16] // to hold new fir mixer interface
279284
functioN: UINT CSoundFile::CreateStereoMix(int count)
280-
new:
285+
new:
281286
if (!(pChannel->dwFlags & CHN_NOIDO))
282287
{
283288
// use hq-fir mixer?
284289
if( ((gdwSoundSetup & (SNDMIX_HQRESAMPLER|SNDMIX_ULTRAHQSRCMODE)) == (SNDMIX_HQRESAMPLER|SNDMIX_ULTRAHQSRCMODE)) ||
285290
((gdwSoundSetup & (SNDMIX_HQRESAMPLER)) == (SNDMIX_HQRESAMPLER)) )
286291
nFlags += MIXNDX_FIRMIXERSRC;
287292
else
288-
nFlags += MIXNDX_LINEARSRC; // use
293+
nFlags += MIXNDX_LINEARSRC; // use
289294
}
290295
was:
291296
if (!(pChannel->dwFlags & CHN_NOIDO))
292297
{
293-
nFlags += MIXNDX_LINEARSRC; // use
298+
nFlags += MIXNDX_LINEARSRC; // use
294299
}
295-
296-

README

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Web page: http://modplug-xmms.sf.net/
66
Maintainer is now Konstanty Bialkowski <[email protected]> (~2006)
77

88
On Wed 14 Aug 2013 the repository was forked / cloned to GitHub.
9-
The current release is libmodplug v0.8.8.5.
9+
The current release is libmodplug v0.8.9.0.
1010

1111
History
1212
-------
@@ -51,7 +51,7 @@ Contents
5151
MOD, S3M, XM, IT, 669, AMF (both of them), AMS, DBM, DMF, DSM, FAR,
5252
MDL, MED, MTM, OKT, PTM, STM, ULT, UMX, MT2, PSM
5353
- Plays zip, rar, gzip, and bzip2 compressed mods. The following
54-
extensions are recognized:
54+
extensions are recognized: (Only in modplug-xmms)
5555
zip: MDZ, S3Z, XMZ, ITZ
5656
rar: MDR, S3R, XMR, ITR
5757
gzip: MDGZ, S3GZ, XMGZ, ITGZ
@@ -63,7 +63,7 @@ Contents
6363
compressed mods. For example, if you zipped a UMX mod and gave it the
6464
extension MDZ, it would work fine.
6565
- plays timidity's GUS patch files (*.pat):
66-
a multi sample pat file with n samples can be played with a Frere Jacques
66+
a multi sample pat file with n samples can be played with a Frere Jacques
6767
canon with n voices.
6868
- plays all types of MIDI files (*.mid):
6969
uses the timidity .pat files for samples (when available)
@@ -85,7 +85,7 @@ Contents
8585
default: "/usr/local/share/timidity".
8686

8787
MMABC_NO_RANDOM_PICK when not set and the abc file contains multiple songs
88-
(X:n) the first song to be played will be picked at random another click
88+
(X:n) the first song to be played will be picked at random another click
8989
on the play button advances to the next
9090
song in the file (or the first when the last song has been
9191
played), when set it can be 0 (zero) or not numeric
@@ -94,7 +94,7 @@ Contents
9494
let it play the n-th song in the file and advancing to the next
9595
song when the play button is clicked.
9696

97-
MMABC_DUMPTRACKS when set it gives diagnostic information on stdout,
97+
MMABC_DUMPTRACKS when set it gives diagnostic information on stdout,
9898
values can be:
9999

100100
all - every event is printed
@@ -211,7 +211,7 @@ Solution:
211211
If it sounds wrong there, then send the mod and a bug report to
212212
Olivier Lapicque <[email protected]>. If the mod plays correctly in
213213
Windows, however, then the bug is my fault. In that case, e-mail
214-
me (Konstanty) <[email protected]>. (previously Kenton Varda at
214+
me (Konstanty) <[email protected]>. (previously Kenton Varda at
215215
216216

217217

@@ -222,4 +222,3 @@ Problem:
222222
Solution:
223223
E-mail me (Konstanty) at <[email protected]>. I would be
224224
happy to hear any suggestions or problems you have.
225-

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
22

33
AC_PREREQ(2.63)
44

5-
AC_INIT([libmodplug], [0.8.8.5])
5+
AC_INIT([libmodplug], [0.8.9.0])
66
AC_CONFIG_SRCDIR([Makefile.am])
77

88
AM_INIT_AUTOMAKE

0 commit comments

Comments
 (0)