backend-infra-engineer: Release v0.3.2 snapshot

This commit is contained in:
scawful
2025-10-17 12:10:25 -04:00
parent 4371618a9b
commit 3d71417f62
857 changed files with 174954 additions and 45626 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.1
* @version 0.3.2
* @author YAZE Team
*/
@@ -28,18 +28,11 @@ extern "C" {
* @{
*/
/** Major version number */
#define YAZE_VERSION_MAJOR 0
/** Minor version number */
#define YAZE_VERSION_MINOR 3
/** Patch version number */
#define YAZE_VERSION_PATCH 1
/** Combined version as a string */
#define YAZE_VERSION_STRING "0.3.1"
#define YAZE_VERSION_STRING "0.3.2"
/** Combined version as a number (major * 10000 + minor * 100 + patch) */
#define YAZE_VERSION_NUMBER 301
#define YAZE_VERSION_NUMBER 302
/** @} */
@@ -109,7 +102,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.1")
* @param expected_version Expected version string (e.g., "0.3.2")
* @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.1
* @version 0.3.2
* @author YAZE Team
*/