Update changelog for version 0.3.1 with minor bug fixes related to color themes, ZSCustomOverworld v3 item loading, and Tile16 selection.

This commit is contained in:
scawful
2025-09-27 11:40:12 -04:00
parent 7e46b2b7be
commit 920e5002ee
11 changed files with 20 additions and 16 deletions

View File

@@ -9,7 +9,7 @@
* The Legend of Zelda: A Link to the Past. This API allows external
* applications to interact with YAZE's functionality.
*
* @version 0.3.0
* @version 0.3.1
* @author YAZE Team
*/
@@ -33,13 +33,13 @@ extern "C" {
/** Minor version number */
#define YAZE_VERSION_MINOR 3
/** Patch version number */
#define YAZE_VERSION_PATCH 0
#define YAZE_VERSION_PATCH 1
/** Combined version as a string */
#define YAZE_VERSION_STRING "0.3.0"
#define YAZE_VERSION_STRING "0.3.1"
/** Combined version as a number (major * 10000 + minor * 100 + patch) */
#define YAZE_VERSION_NUMBER 300
#define YAZE_VERSION_NUMBER 301
/** @} */
@@ -109,7 +109,7 @@ int yaze_app_main(int argc, char** argv);
/**
* @brief Check if the current YAZE version is compatible with the expected version
*
* @param expected_version Expected version string (e.g., "0.3.0")
* @param expected_version Expected version string (e.g., "0.3.1")
* @return true if compatible, false otherwise
*/
bool yaze_check_version_compatibility(const char* expected_version);

View File

@@ -8,7 +8,7 @@
* This header defines data structures and constants specific to
* The Legend of Zelda: A Link to the Past ROM format and game data.
*
* @version 0.3.0
* @version 0.3.1
* @author YAZE Team
*/