From 78e32713919484c17e128892253abc4c8720e8c0 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Thu, 28 Nov 2024 10:41:44 -0500 Subject: [PATCH] Update version number --- autogen/lua_definitions/constants.lua | 6 +++--- src/pc/lua/smlua_constants_autogen.c | 6 +++--- src/pc/network/version.h | 12 ++++++------ 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/autogen/lua_definitions/constants.lua b/autogen/lua_definitions/constants.lua index 72dc8b4d3..8252aad22 100644 --- a/autogen/lua_definitions/constants.lua +++ b/autogen/lua_definitions/constants.lua @@ -12508,13 +12508,13 @@ SPTASK_STATE_FINISHED_DP = 4 MAX_VERSION_LENGTH = 32 --- @type integer -MINOR_VERSION_NUMBER = 3 +MINOR_VERSION_NUMBER = 0 --- @type string -SM64COOPDX_VERSION = "v1.0.4" +SM64COOPDX_VERSION = "v1.1" --- @type integer -VERSION_NUMBER = 37 +VERSION_NUMBER = 38 --- @type string VERSION_REGION = "JP" diff --git a/src/pc/lua/smlua_constants_autogen.c b/src/pc/lua/smlua_constants_autogen.c index 764a1c4f4..6711a35c9 100644 --- a/src/pc/lua/smlua_constants_autogen.c +++ b/src/pc/lua/smlua_constants_autogen.c @@ -4344,10 +4344,10 @@ char gSmluaConstants[] = "" "COOP_OBJ_FLAG_LUA = (1 << 1)\n" "COOP_OBJ_FLAG_NON_SYNC = (1 << 2)\n" "COOP_OBJ_FLAG_INITIALIZED = (1 << 3)\n" -"SM64COOPDX_VERSION = 'v1.0.4'\n" +"SM64COOPDX_VERSION = 'v1.1'\n" "VERSION_TEXT = 'v'\n" -"VERSION_NUMBER = 37\n" -"MINOR_VERSION_NUMBER = 3\n" +"VERSION_NUMBER = 38\n" +"MINOR_VERSION_NUMBER = 0\n" "VERSION_REGION = 'JP'\n" "VERSION_REGION = 'EU'\n" "VERSION_REGION = 'SH'\n" diff --git a/src/pc/network/version.h b/src/pc/network/version.h index 3828d0629..aa07908d4 100644 --- a/src/pc/network/version.h +++ b/src/pc/network/version.h @@ -1,12 +1,12 @@ #ifndef VERSION_H #define VERSION_H -#define SM64COOPDX_VERSION "v1.0.4" +#define SM64COOPDX_VERSION "v1.1" // internal version #define VERSION_TEXT "v" -#define VERSION_NUMBER 37 -#define MINOR_VERSION_NUMBER 3 +#define VERSION_NUMBER 38 +#define MINOR_VERSION_NUMBER 0 #if defined(VERSION_JP) #define VERSION_REGION "JP" @@ -19,11 +19,11 @@ #endif #ifdef DEVELOPMENT - #define GAME_NAME "sm64coopdx-dev" + #define GAME_NAME "Super Mario 64 Coop Deluxe (DEV)" #elif !defined(VERSION_US) - #define GAME_NAME "sm64coopdx-intl" + #define GAME_NAME "Super Mario 64 Coop Deluxe (INTL)" #else - #define GAME_NAME "sm64coopdx" + #define GAME_NAME "Super Mario 64 Coop Deluxe" #endif #define MAX_VERSION_LENGTH 32