feature add function for web to get the machine storage space.

This commit is contained in:
alves
2026-01-22 14:43:18 +08:00
parent 5d6a6ca2b6
commit 7496e9acd0
6 changed files with 61 additions and 12 deletions

View File

@@ -4853,8 +4853,9 @@ void GUI_App::check_new_version_sf(bool show_tips, bool by_user)
Semver server_version = get_version(version_info.version_str, matcher);
if (current_version >= server_version && by_user) {
this->no_new_version();
if (current_version >= server_version) {
if(by_user)
this->no_new_version();
return;
}