Feat: incompatible process

This commit is contained in:
Sheepit Renderfarm
2024-06-08 03:21:33 +00:00
committed by Laurent Clouet
parent b295467ca7
commit 83cd92b903
10 changed files with 163 additions and 7 deletions

View File

@@ -82,6 +82,7 @@ import lombok.Data;
private String hostname;
private String theme;
private boolean disableLargeDownloads;
private String incompatibleProcess;
public Configuration(File cache_dir_, String login_, String password_) {
this.configFilePath = null;
@@ -116,6 +117,7 @@ import lombok.Data;
this.UIType = null;
this.theme = null;
this.disableLargeDownloads = false;
this.incompatibleProcess = null;
}
/**
@@ -155,6 +157,7 @@ import lombok.Data;
c + "UIType: " + UIType + n +
c + "hostname: " + hostname + n +
c + "theme: " + theme + n +
c + "incompatibleProcess: " + incompatibleProcess + n +
c + "disableLargeDownloads: " + disableLargeDownloads;
}