changeset 252:c54eae85f5f1

Upped version to 0.1.5.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 08 Feb 2002 01:42:00 +0000
parents b9e090f89ef6
children 6e1ee1f5be1b
files SDL_sound.h configure.in playsound/playsound.c
diffstat 3 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/SDL_sound.h	Fri Feb 08 01:41:37 2002 +0000
+++ b/SDL_sound.h	Fri Feb 08 01:42:00 2002 +0000
@@ -38,13 +38,14 @@
  *   - .WAV  (Microsoft WAVfile RIFF data, internal.)
  *   - .VOC  (Creative Labs' Voice format, internal.)
  *   - .MP3  (MPEG-1 Layer 3 support, via the SMPEG library.)
- *   - .MID  (MIDI music converted to Waveform data, via Timidity.)
- *   - .MOD  (MOD files, via MikMod.)
+ *   - .MID  (MIDI music converted to Waveform data, internal.)
+ *   - .MOD  (MOD files, via MikMod and ModPlug.)
  *   - .OGG  (Ogg files, via Ogg Vorbis libraries.)
+ *   - .SHN  (Shorten files, internal.)
  *   - .RAW  (Raw sound data in any format, internal.)
- *   - .CDA  (CD audio read into a sound buffer, internal.)
- *   - .AU
- *   - .AIFF
+ *   - .AU   (Sun's Audio format, internal.)
+ *   - .AIFF (Audio Interchange format, internal.)
+ *   - .FLAC (Lossless audio compression, via libFLAC.)
  *
  *   (...and more to come...)
  *
@@ -71,7 +72,7 @@
 
 #define SOUND_VER_MAJOR 0
 #define SOUND_VER_MINOR 1
-#define SOUND_VER_PATCH 4
+#define SOUND_VER_PATCH 5
 
 
 /**
--- a/configure.in	Fri Feb 08 01:41:37 2002 +0000
+++ b/configure.in	Fri Feb 08 01:42:00 2002 +0000
@@ -15,7 +15,7 @@
 
 MAJOR_VERSION=0
 MINOR_VERSION=1
-MICRO_VERSION=4
+MICRO_VERSION=5
 INTERFACE_AGE=0
 BINARY_AGE=0
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
--- a/playsound/playsound.c	Fri Feb 08 01:41:37 2002 +0000
+++ b/playsound/playsound.c	Fri Feb 08 01:42:00 2002 +0000
@@ -37,7 +37,7 @@
 
 #define PLAYSOUND_VER_MAJOR  0
 #define PLAYSOUND_VER_MINOR  1
-#define PLAYSOUND_VER_PATCH  4
+#define PLAYSOUND_VER_PATCH  5
 
 static void output_versions(const char *argv0)
 {