From: <man...@us...> - 2013-12-31 12:37:59
|
Revision: 3532 http://sourceforge.net/p/modplug/code/3532 Author: manxorist Date: 2013-12-31 12:37:51 +0000 (Tue, 31 Dec 2013) Log Message: ----------- [Var] libopenmpt: Bump API version to 0.2 . Modified Paths: -------------- trunk/OpenMPT/Makefile trunk/OpenMPT/libopenmpt/Doxyfile trunk/OpenMPT/libopenmpt/libopenmpt_version.h trunk/OpenMPT/openmpt123/openmpt123.cpp trunk/OpenMPT/openmpt123/openmpt123_config.hpp Modified: trunk/OpenMPT/Makefile =================================================================== --- trunk/OpenMPT/Makefile 2013-12-27 21:50:32 UTC (rev 3531) +++ trunk/OpenMPT/Makefile 2013-12-31 12:37:51 UTC (rev 3532) @@ -149,7 +149,7 @@ # version LIBOPENMPT_VERSION_MAJOR=0 -LIBOPENMPT_VERSION_MINOR=1 +LIBOPENMPT_VERSION_MINOR=2 LIBOPENMPT_SONAME=libopenmpt.so.0 Modified: trunk/OpenMPT/libopenmpt/Doxyfile =================================================================== --- trunk/OpenMPT/libopenmpt/Doxyfile 2013-12-27 21:50:32 UTC (rev 3531) +++ trunk/OpenMPT/libopenmpt/Doxyfile 2013-12-31 12:37:51 UTC (rev 3532) @@ -38,7 +38,7 @@ # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "0.1" +PROJECT_NUMBER = "0.2" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a Modified: trunk/OpenMPT/libopenmpt/libopenmpt_version.h =================================================================== --- trunk/OpenMPT/libopenmpt/libopenmpt_version.h 2013-12-27 21:50:32 UTC (rev 3531) +++ trunk/OpenMPT/libopenmpt/libopenmpt_version.h 2013-12-31 12:37:51 UTC (rev 3532) @@ -17,7 +17,7 @@ /*! \brief libopenmpt major version number */ #define OPENMPT_API_VERSION_MAJOR 0 /*! \brief libopenmpt minor version number */ -#define OPENMPT_API_VERSION_MINOR 1 +#define OPENMPT_API_VERSION_MINOR 2 /*! \brief libopenmpt API version number */ #define OPENMPT_API_VERSION ((OPENMPT_API_VERSION_MAJOR<<24)|(OPENMPT_API_VERSION_MINOR<<16)) Modified: trunk/OpenMPT/openmpt123/openmpt123.cpp =================================================================== --- trunk/OpenMPT/openmpt123/openmpt123.cpp 2013-12-27 21:50:32 UTC (rev 3531) +++ trunk/OpenMPT/openmpt123/openmpt123.cpp 2013-12-31 12:37:51 UTC (rev 3532) @@ -440,8 +440,8 @@ log << std::endl; log << " --[no-]progress Show playback progress [default: " << commandlineflags().show_progress << "]" << std::endl; log << " --[no-]meters Show peak meters [default: " << commandlineflags().show_meters << "]" << std::endl; - log << " --[no-]channel-meters Show channel peak meters [default: " << commandlineflags().show_channel_meters << "]" << std::endl; - log << " --[no-]pattern Show pattern [default: " << commandlineflags().show_pattern << "]" << std::endl; + log << " --[no-]channel-meters Show channel peak meters (EXPERIMENTAL) [default: " << commandlineflags().show_channel_meters << "]" << std::endl; + log << " --[no-]pattern Show pattern (EXPERIMENTAL) [default: " << commandlineflags().show_pattern << "]" << std::endl; log << std::endl; log << " --[no-]details Show song details [default: " << commandlineflags().show_details << "]" << std::endl; log << " --[no-]message Show song message [default: " << commandlineflags().show_message << "]" << std::endl; Modified: trunk/OpenMPT/openmpt123/openmpt123_config.hpp =================================================================== --- trunk/OpenMPT/openmpt123/openmpt123_config.hpp 2013-12-27 21:50:32 UTC (rev 3531) +++ trunk/OpenMPT/openmpt123/openmpt123_config.hpp 2013-12-31 12:37:51 UTC (rev 3532) @@ -56,6 +56,6 @@ #endif #endif -#define OPENMPT123_VERSION_STRING "0.1" +#define OPENMPT123_VERSION_STRING "0.2" #endif // OPENMPT123_CONFIG_HPP This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |