Update version number

This commit is contained in:
Agent X 2024-11-28 10:41:44 -05:00
parent 9206aa1e98
commit 78e3271391
3 changed files with 12 additions and 12 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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