backend-infra-engineer: Release v0.3.1 snapshot

This commit is contained in:
scawful
2025-09-28 03:07:45 -04:00
parent e32ac75b9c
commit 4371618a9b
88 changed files with 17940 additions and 4600 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
*/