diff options
Diffstat (limited to 'editor/engine_update_label.cpp')
-rw-r--r-- | editor/engine_update_label.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/editor/engine_update_label.cpp b/editor/engine_update_label.cpp index 0d40181257..4096f74c69 100644 --- a/editor/engine_update_label.cpp +++ b/editor/engine_update_label.cpp @@ -2,9 +2,11 @@ /* engine_update_label.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -47,7 +49,7 @@ bool EngineUpdateLabel::_can_check_updates() const { void EngineUpdateLabel::_check_update() { checked_update = true; _set_status(UpdateStatus::BUSY); - http->request("https://godotengine.org/versions.json"); + http->request("https://redotengine.org/versions.json"); } void EngineUpdateLabel::_http_request_completed(int p_result, int p_response_code, const PackedStringArray &p_headers, const PackedByteArray &p_body) { @@ -233,7 +235,7 @@ EngineUpdateLabel::VersionType EngineUpdateLabel::_get_version_type(const String if (index_string.is_empty()) { *r_index = DEV_VERSION; } else { - *r_index = index_string.to_int(); + *r_index = index_string.trim_prefix(".").to_int(); } } return type; |