Update version to 0.3.2 and enhance stability across platforms

- Bump project version to 0.3.2 in CMakeLists.txt, vcpkg.json, and relevant headers.
- Increase Windows stack size to 8MB to prevent stack overflow during asset loading.
- Isolate development utilities from CI builds to ensure cleaner release artifacts.
- Implement comprehensive bounds checking and fix segmentation faults in the graphics system.
- Update documentation to reflect new build instructions and stability improvements.
This commit is contained in:
scawful
2025-09-29 15:47:14 -04:00
parent ec42054da2
commit 2b11338e20
10 changed files with 534 additions and 29 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
*/
@@ -36,7 +36,7 @@ extern "C" {
#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
@@ -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.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
*/