отключение проверки версии при регистрации
v++
This commit is contained in:
2025-02-14 13:32:38 +03:00
parent c76908ad58
commit 68bd1ef6b4
4 changed files with 7 additions and 13 deletions

View File

@@ -3,7 +3,7 @@ import Common.Utils.Vector_;
import java.util.Vector;
public class Constants {
public static final int version = 1167;
public static final int version = 1168;
public static final int planner_version = 6;
public static final int testingMaxKernels = 64; //вообще говоря, это параметр машины.
//--

View File

@@ -171,7 +171,6 @@ public class Global {
messagesServer.Start();
components = new ComponentsSet();
components.initialVersionsCheck();
//-------->> AutoUpdateSearch
Global.mainModule.getPass(PassCode.GetComponentsActualVersions).Do();
components.validateStates();
if (components.needChanges()) {

View File

@@ -20,6 +20,10 @@ public class EditAccount extends Email {
return (int) ((Math.random() * ((max - min) + 1)) + min);
}
@Override
protected boolean isSafe() {
return false;
}
@Override
protected boolean canStart(Object... args) throws Exception {
Subscriber res = new Subscriber(); // объект для заполнения полей.не более.
if (f.ShowDialog("Регистрация", res)) {