From a3d80256f5319c9ee02339b835f34b6635019a66 Mon Sep 17 00:00:00 2001 From: CatChow0 Date: Thu, 18 Sep 2025 01:59:31 +0200 Subject: [PATCH] Patch - Increments build version number - V14.1.1 Updates the build version number in the header file. This change reflects an iteration in the development process. --- enginecustom/src/inc/system/version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enginecustom/src/inc/system/version.h b/enginecustom/src/inc/system/version.h index 9e25a8b..66e6a1a 100644 --- a/enginecustom/src/inc/system/version.h +++ b/enginecustom/src/inc/system/version.h @@ -1,8 +1,8 @@ #pragma once #include "imgui.h" #define BUILD_VERSION_MAJOR 14 -#define BUILD_VERSION_MINOR 0 -#define BUILD_VERSION_PATCH 3 +#define BUILD_VERSION_MINOR 1 +#define BUILD_VERSION_PATCH 1 // 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;