From 0368276fbf67d86105d00831a0be99b3e3a54cf1 Mon Sep 17 00:00:00 2001 From: CatChow0 Date: Wed, 8 Oct 2025 15:38:57 +0200 Subject: [PATCH] Patch - Updates build version to 14.5.4 - V14.5.4 Updates the major, minor, and patch version numbers. This reflects the latest iteration of the software, keeping the version information current. --- enginecustom/src/inc/system/version.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/enginecustom/src/inc/system/version.h b/enginecustom/src/inc/system/version.h index 66e6a1a..7482734 100644 --- a/enginecustom/src/inc/system/version.h +++ b/enginecustom/src/inc/system/version.h @@ -1,8 +1,18 @@ #pragma once #include "imgui.h" +/** + * Definitions for build versioning. + * The build version is composed of: + * - Major version (BUILD_VERSION_MAJOR) + * - Minor version (BUILD_VERSION_MINOR) + * - Patch version (BUILD_VERSION_PATCH) + * - Build number (BUILD_VERSION_VER) which is incremented at each build. + * - Build type (BUILD_VERSION_TYPE) which can be "Debug" or "Release" + * - Build state (BUILD_VERSION_STATE) which can be "Dev" or "Stable" + */ #define BUILD_VERSION_MAJOR 14 -#define BUILD_VERSION_MINOR 1 -#define BUILD_VERSION_PATCH 1 +#define BUILD_VERSION_MINOR 5 +#define BUILD_VERSION_PATCH 4 // BUILD_VERSION_VER est un int persisté dans un fichier, à charger au lancement et incrémenter à chaque build (voir point 3) extern int BUILD_VERSION_VER;