Skip to content

Commit

Permalink
bumped version to 0.4.6, updated changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Mar 31, 2024
1 parent d7c9faf commit 6f92a5f
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ########## Project setup ##########
CMAKE_MINIMUM_REQUIRED(VERSION 3.4...3.5)
PROJECT(wildmidi LANGUAGES C VERSION 0.4.5)
PROJECT(wildmidi LANGUAGES C VERSION 0.4.6)

# WildMIDI Version
SET(WILDMIDI_VERSION ${PROJECT_VERSION})
Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ files into audio which is then passed back to the calling application.
The library API is designed so that it is easy to include WildMIDI into
applications that wish to include MIDI file playback.

Version: 0.4.5
Version: 0.4.6
Licenses: GPLv3+ and LGPLv3
Website: https://github.com/Mindwerks/wildmidi

Expand All @@ -30,14 +30,26 @@ Requirements:
* cmake
* GCC or clang / Xcode / VisualStudio / MinGW or MinGW-w64
* DOS port: DJGPP / GNU make
* OS/2 port: OpenWatcom (tested with version 1.9)
* OS/2 port: OpenWatcom (tested with version 1.9 and newer)
* Nintendo 3DS port: devkitARM
* Nintendo Wii port: devkitPPC
* Nintendo Switch port: devkitA64
* PSVita port: Vitasdk

CHANGELOG

0.4.6
* A lot of player clean-up and refactoring, thanks to initial work
by Azamat H. Hackimov.
* Ability to choose which audio output backends to include in the
build system: see the cmake script for the relevant `WANT_???`
options. Player's `--help` command line switch lists the available
backends. Thanks to initial work by Azamat H. Hackimov.
* New player audio output backends: coreaudio for macOS, sndio for
OpenBSD.
* Workaround a link failure on AmigaOS4 with newer SDKs (bug #241).
* Other minor source clean-ups.

0.4.5
* Fixed MUS drum channels 9 and 15 being swapped if the same file
is played twice from the same memory buffer (bug #234).
Expand Down
2 changes: 1 addition & 1 deletion amiga/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#define PACKAGE_URL "https://github.com/Mindwerks/wildmidi"
#define PACKAGE_BUGREPORT "https://github.com/Mindwerks/wildmidi/issues"

#define PACKAGE_VERSION "0.4.5"
#define PACKAGE_VERSION "0.4.6"

#define HAVE_C_INLINE

Expand Down
6 changes: 3 additions & 3 deletions android/jni/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
#define PACKAGE_NAME "WildMidi"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "WildMidi 0.4.5"
#define PACKAGE_STRING "WildMidi 0.4.6"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "wildmidi"

/* Define to the version of this package. */
#define PACKAGE_VERSION "0.4.5"
#define PACKAGE_VERSION "0.4.6"

/* Version number of package */
#define VERSION "0.4.5"
#define VERSION "0.4.6"

/* Define this to the location of the wildmidi config file */
/* #undef WILDMIDI_CFG "/etc/wildmidi/wildmidi.cfg" */
Expand Down
2 changes: 1 addition & 1 deletion djgpp/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define PACKAGE_URL "https://github.com/Mindwerks/wildmidi"
#define PACKAGE_BUGREPORT "https://github.com/Mindwerks/wildmidi/issues"

#define PACKAGE_VERSION "0.4.5"
#define PACKAGE_VERSION "0.4.6"

#define HAVE_C_INLINE

Expand Down
2 changes: 1 addition & 1 deletion include/wildmidi_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/* library version number */
#define LIBWILDMIDI_VER_MAJOR 0L
#define LIBWILDMIDI_VER_MINOR 4L
#define LIBWILDMIDI_VER_MICRO 5L
#define LIBWILDMIDI_VER_MICRO 6L
#define LIBWILDMIDI_VERSION \
((LIBWILDMIDI_VER_MAJOR << 16) | \
(LIBWILDMIDI_VER_MINOR << 8) | \
Expand Down
2 changes: 1 addition & 1 deletion macosx/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define PACKAGE_URL "https://github.com/Mindwerks/wildmidi"
#define PACKAGE_BUGREPORT "https://github.com/Mindwerks/wildmidi/issues"

#define PACKAGE_VERSION "0.4.5"
#define PACKAGE_VERSION "0.4.6"

#define HAVE_C_INLINE

Expand Down
2 changes: 1 addition & 1 deletion mingw/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define PACKAGE_URL "https://github.com/Mindwerks/wildmidi"
#define PACKAGE_BUGREPORT "https://github.com/Mindwerks/wildmidi/issues"

#define PACKAGE_VERSION "0.4.5"
#define PACKAGE_VERSION "0.4.6"

#define HAVE_C_INLINE

Expand Down
2 changes: 1 addition & 1 deletion os2/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define PACKAGE_URL "https://github.com/Mindwerks/wildmidi"
#define PACKAGE_BUGREPORT "https://github.com/Mindwerks/wildmidi/issues"

#define PACKAGE_VERSION "0.4.5"
#define PACKAGE_VERSION "0.4.6"

#define HAVE_C_INLINE

Expand Down

0 comments on commit 6f92a5f

Please sign in to comment.