File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -873,11 +873,11 @@ ExportTemplateManager::ExportTemplateManager() {
873873 // (which always have a number following their status, e.g. "alpha1").
874874 // Therefore, don't display download-related features when using a development version
875875 // (whose builds aren't numbered).
876- downloads_available =
877- String (VERSION_STATUS) != String (" dev" ) &&
878- String (VERSION_STATUS) != String (" alpha" ) &&
879- String (VERSION_STATUS) != String (" beta" ) &&
880- String (VERSION_STATUS) != String (" rc" );
876+ downloads_available = VERSION_STATUS_VERSION > 0 ||
877+ ( String (VERSION_STATUS) != String (" dev" ) &&
878+ String (VERSION_STATUS) != String (" alpha" ) &&
879+ String (VERSION_STATUS) != String (" beta" ) &&
880+ String (VERSION_STATUS) != String (" rc" ) );
881881
882882 VBoxContainer *main_vb = memnew (VBoxContainer);
883883 add_child (main_vb);
Original file line number Diff line number Diff line change 44minor = 3
55patch = 0
66status = "beta"
7- status_version = 1
7+ status_version = 0
88module_config = ""
99website = "https://redotengine.org"
1010docs = "4.3"
You can’t perform that action at this time.
0 commit comments