Set version to 1.0 for now

This commit is contained in:
Agent X 2024-03-18 19:28:41 -04:00
parent e96560ed52
commit 5fba777c1c
3 changed files with 6 additions and 6 deletions

View file

@ -12607,13 +12607,13 @@ SPTASK_STATE_FINISHED_DP = 4
MAX_VERSION_LENGTH = 32 MAX_VERSION_LENGTH = 32
--- @type integer --- @type integer
MINOR_VERSION_NUMBER = 3 MINOR_VERSION_NUMBER = 0
--- @type integer --- @type integer
PATCH_VERSION_NUMBER = 0 PATCH_VERSION_NUMBER = 0
--- @type integer --- @type integer
VERSION_NUMBER = 0 VERSION_NUMBER = 1
--- @type string --- @type string
VERSION_REGION = "JP" VERSION_REGION = "JP"

View file

@ -4401,8 +4401,8 @@ char gSmluaConstants[] = ""
"COOP_OBJ_FLAG_NON_SYNC = (1 << 2)\n" "COOP_OBJ_FLAG_NON_SYNC = (1 << 2)\n"
"COOP_OBJ_FLAG_INITIALIZED = (1 << 3)\n" "COOP_OBJ_FLAG_INITIALIZED = (1 << 3)\n"
"VERSION_TEXT = 'v'\n" "VERSION_TEXT = 'v'\n"
"VERSION_NUMBER = 0\n" "VERSION_NUMBER = 1\n"
"MINOR_VERSION_NUMBER = 3\n" "MINOR_VERSION_NUMBER = 0\n"
"PATCH_VERSION_NUMBER = 0\n" "PATCH_VERSION_NUMBER = 0\n"
"VERSION_REGION = 'JP'\n" "VERSION_REGION = 'JP'\n"
"VERSION_REGION = 'EU'\n" "VERSION_REGION = 'EU'\n"

View file

@ -2,8 +2,8 @@
#define VERSION_H #define VERSION_H
#define VERSION_TEXT "v" #define VERSION_TEXT "v"
#define VERSION_NUMBER 0 #define VERSION_NUMBER 1
#define MINOR_VERSION_NUMBER 3 #define MINOR_VERSION_NUMBER 0
#define PATCH_VERSION_NUMBER 0 #define PATCH_VERSION_NUMBER 0
#if defined(VERSION_JP) #if defined(VERSION_JP)