Skip to content

Commit

Permalink
Updated to version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 3, 2016
1 parent 5360323 commit 90ded19
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 22 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
@@ -1,6 +1,10 @@
2.0.1:
Sam Lantinga - Tue Jul 7 11:40:33 PDT 2015
* Added support for 'smpl' format loop points in music WAV files
Sam Lantinga - Sat Aug 23 10:57:26 2014
* Fixed floating point exception in Mix_Volume()
David Ludwig - Mon Apr 14 22:15:36 2014
* Added support for building for Windows RT and Windows Phone
Isaac Burns - Sun Sep 15 21:50:27 PDT 2013
* Added support for loading MP3 files as sound chunks

Expand Down
2 changes: 1 addition & 1 deletion SDL2_mixer.spec
@@ -1,5 +1,5 @@
%define name SDL2_mixer
%define version 2.0.0
%define version 2.0.1
%define release 1

Summary: Simple DirectMedia Layer - Sample Mixer Library
Expand Down
2 changes: 1 addition & 1 deletion SDL_mixer.h
Expand Up @@ -40,7 +40,7 @@ extern "C" {
*/
#define SDL_MIXER_MAJOR_VERSION 2
#define SDL_MIXER_MINOR_VERSION 0
#define SDL_MIXER_PATCHLEVEL 0
#define SDL_MIXER_PATCHLEVEL 1

/* This macro can be used to fill a version structure with the compile-time
* version of the SDL_mixer library.
Expand Down
8 changes: 4 additions & 4 deletions VisualC/Version.rc
Expand Up @@ -28,8 +28,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,0
PRODUCTVERSION 2,0,0,0
FILEVERSION 2,0,1,0
PRODUCTVERSION 2,0,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -46,12 +46,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "SDL_mixer\0"
VALUE "FileVersion", "2, 0, 0, 0\0"
VALUE "FileVersion", "2, 0, 1, 0\0"
VALUE "InternalName", "SDL_mixer\0"
VALUE "LegalCopyright", "Copyright � 2016 Sam Lantinga\0"
VALUE "OriginalFilename", "SDL_mixer.dll\0"
VALUE "ProductName", "Simple DirectMedia Layer\0"
VALUE "ProductVersion", "2, 0, 0, 0\0"
VALUE "ProductVersion", "2, 0, 1, 0\0"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions Xcode-iOS/SDL_mixer.xcodeproj/project.pbxproj
Expand Up @@ -710,7 +710,7 @@
isa = XCBuildConfiguration;
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_CURRENT_VERSION = 1.1.0;
IPHONEOS_DEPLOYMENT_TARGET = 5.1;
LIBRARY_STYLE = STATIC;
OTHER_CFLAGS = "";
Expand All @@ -723,7 +723,7 @@
isa = XCBuildConfiguration;
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_CURRENT_VERSION = 1.1.0;
IPHONEOS_DEPLOYMENT_TARGET = 5.1;
LIBRARY_STYLE = STATIC;
OTHER_CFLAGS = "";
Expand Down
4 changes: 2 additions & 2 deletions Xcode/Info-Framework.plist
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.0.0</string>
<string>2.0.1</string>
<key>CFBundleVersion</key>
<string>2.0.0</string>
<string>2.0.1</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions Xcode/SDL_mixer.xcodeproj/project.pbxproj
Expand Up @@ -807,7 +807,7 @@
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_CURRENT_VERSION = 1.1.0;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/Frameworks\"",
Expand Down Expand Up @@ -845,7 +845,7 @@
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_CURRENT_VERSION = 1.1.0;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/Frameworks\"",
Expand Down
6 changes: 3 additions & 3 deletions configure
Expand Up @@ -2439,9 +2439,9 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
#
MAJOR_VERSION=2
MINOR_VERSION=0
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
MICRO_VERSION=1
INTERFACE_AGE=1
BINARY_AGE=1
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION


Expand Down
6 changes: 3 additions & 3 deletions configure.in
Expand Up @@ -14,9 +14,9 @@ dnl Set various version strings - taken gratefully from the GTk sources
#
MAJOR_VERSION=2
MINOR_VERSION=0
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
MICRO_VERSION=1
INTERFACE_AGE=1
BINARY_AGE=1
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION

AC_SUBST(MAJOR_VERSION)
Expand Down
8 changes: 4 additions & 4 deletions version.rc
Expand Up @@ -9,8 +9,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,0
PRODUCTVERSION 2,0,0,0
FILEVERSION 2,0,1,0
PRODUCTVERSION 2,0,1,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x0L
FILEOS 0x40004L
Expand All @@ -23,12 +23,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "SDL_mixer\0"
VALUE "FileVersion", "2, 0, 0, 0\0"
VALUE "FileVersion", "2, 0, 1, 0\0"
VALUE "InternalName", "SDL_mixer\0"
VALUE "LegalCopyright", "Copyright � 2016 Sam Lantinga\0"
VALUE "OriginalFilename", "SDL_mixer.dll\0"
VALUE "ProductName", "Simple DirectMedia Layer\0"
VALUE "ProductVersion", "2, 0, 0, 0\0"
VALUE "ProductVersion", "2, 0, 1, 0\0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 90ded19

Please sign in to comment.