This commit is contained in:
Agent X 2024-09-01 14:17:52 -04:00
parent 02be2d6f98
commit c94990f743
4 changed files with 4 additions and 4 deletions

View File

@ -12563,7 +12563,7 @@ MINOR_VERSION_NUMBER = 1
PATCH_VERSION_NUMBER = 0
--- @type string
SM64COOPDX_VERSION = "v1.0.1"
SM64COOPDX_VERSION = "v1.0.2"
--- @type integer
VERSION_NUMBER = 37

View File

@ -4397,7 +4397,7 @@ 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.1'\n"
"SM64COOPDX_VERSION = 'v1.0.2'\n"
"VERSION_TEXT = 'v'\n"
"VERSION_NUMBER = 37\n"
"MINOR_VERSION_NUMBER = 1\n"

View File

@ -1,7 +1,7 @@
#ifndef VERSION_H
#define VERSION_H
#define SM64COOPDX_VERSION "v1.0.1"
#define SM64COOPDX_VERSION "v1.0.2"
// internal version
#define VERSION_TEXT "v"

View File

@ -118,7 +118,7 @@ void check_for_updates(void) {
LOADING_SCREEN_MUTEX(loading_screen_set_segment_text("Checking For Updates"));
get_version_remote();
if (sRemoteVersion[0] != '\0' && strcmp(sRemoteVersion, get_version())) {
if (sRemoteVersion[0] != '\0' && strcmp(sRemoteVersion, get_version()) && strcmp(sRemoteVersion, "v1.0.1")) {
snprintf(
sVersionUpdateTextBuffer, 256,
"\\#ffffa0\\%s\n\\#dcdcdc\\%s: %s\n%s: %s",