feat: updated engine version to 4.4-rc1
This commit is contained in:
parent
ee00efde1f
commit
21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions
|
|
@ -31,12 +31,8 @@
|
|||
#include "engine_update_label.h"
|
||||
|
||||
#include "core/io/json.h"
|
||||
#include "core/os/time.h"
|
||||
#include "editor/editor_settings.h"
|
||||
#include "editor/editor_string_names.h"
|
||||
#include "editor/themes/editor_scale.h"
|
||||
#include "scene/gui/box_container.h"
|
||||
#include "scene/gui/button.h"
|
||||
#include "scene/main/http_request.h"
|
||||
|
||||
bool EngineUpdateLabel::_can_check_updates() const {
|
||||
|
|
@ -240,8 +236,8 @@ EngineUpdateLabel::VersionType EngineUpdateLabel::_get_version_type(const String
|
|||
}
|
||||
|
||||
String EngineUpdateLabel::_extract_sub_string(const String &p_line) const {
|
||||
int j = p_line.find("\"") + 1;
|
||||
return p_line.substr(j, p_line.find("\"", j) - j);
|
||||
int j = p_line.find_char('"') + 1;
|
||||
return p_line.substr(j, p_line.find_char('"', j) - j);
|
||||
}
|
||||
|
||||
void EngineUpdateLabel::_notification(int p_what) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue