mirror of https://github.com/procxx/kepka.git
Add possibility to control external upater flag with a config in /etc
This commit is contained in:
parent
77d1f64e0e
commit
b19dcf0653
|
@ -98,13 +98,29 @@ void ComputeDebugMode() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void ComputeTestMode() {
|
void ComputeTestMode() {
|
||||||
if (QFile(cWorkingDir() + qsl("tdata/withtestmode")).exists()) {
|
if (QFile::exists(cWorkingDir() + qsl("tdata/withtestmode"))) {
|
||||||
cSetTestMode(true);
|
cSetTestMode(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ComputeExternalUpdater() {
|
||||||
|
QFile file(qsl("/etc/tdesktop/externalupdater"));
|
||||||
|
|
||||||
|
if (file.exists() && file.open(QIODevice::ReadOnly)) {
|
||||||
|
QTextStream fileStream(&file);
|
||||||
|
while (!fileStream.atEnd()) {
|
||||||
|
const auto path = fileStream.readLine();
|
||||||
|
|
||||||
|
if (path == (cWorkingDir() + cExeName())) {
|
||||||
|
SetUpdaterDisabledAtStartup();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ComputeFreeType() {
|
void ComputeFreeType() {
|
||||||
if (QFile(cWorkingDir() + qsl("tdata/withfreetype")).exists()) {
|
if (QFile::exists(cWorkingDir() + qsl("tdata/withfreetype"))) {
|
||||||
cSetUseFreeType(true);
|
cSetUseFreeType(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -124,7 +140,7 @@ void ComputeInstallBetaVersions() {
|
||||||
const auto installBetaSettingPath = InstallBetaVersionsSettingPath();
|
const auto installBetaSettingPath = InstallBetaVersionsSettingPath();
|
||||||
if (cAlphaVersion()) {
|
if (cAlphaVersion()) {
|
||||||
cSetInstallBetaVersion(false);
|
cSetInstallBetaVersion(false);
|
||||||
} else if (QFile(installBetaSettingPath).exists()) {
|
} else if (QFile::exists(installBetaSettingPath)) {
|
||||||
QFile f(installBetaSettingPath);
|
QFile f(installBetaSettingPath);
|
||||||
if (f.open(QIODevice::ReadOnly)) {
|
if (f.open(QIODevice::ReadOnly)) {
|
||||||
cSetInstallBetaVersion(f.read(1) != "0");
|
cSetInstallBetaVersion(f.read(1) != "0");
|
||||||
|
@ -168,7 +184,7 @@ bool MoveLegacyAlphaFolder(const QString &folder, const QString &file) {
|
||||||
if (QDir(was).exists() && !QDir(now).exists()) {
|
if (QDir(was).exists() && !QDir(now).exists()) {
|
||||||
const auto oldFile = was + "/tdata/" + file;
|
const auto oldFile = was + "/tdata/" + file;
|
||||||
const auto newFile = was + "/tdata/alpha";
|
const auto newFile = was + "/tdata/alpha";
|
||||||
if (QFile(oldFile).exists() && !QFile(newFile).exists()) {
|
if (QFile::exists(oldFile) && !QFile::exists(newFile)) {
|
||||||
if (!QFile(oldFile).copy(newFile)) {
|
if (!QFile(oldFile).copy(newFile)) {
|
||||||
LOG(("FATAL: Could not copy '%1' to '%2'"
|
LOG(("FATAL: Could not copy '%1' to '%2'"
|
||||||
).arg(oldFile
|
).arg(oldFile
|
||||||
|
@ -336,6 +352,7 @@ void Launcher::workingFolderReady() {
|
||||||
|
|
||||||
ComputeTestMode();
|
ComputeTestMode();
|
||||||
ComputeDebugMode();
|
ComputeDebugMode();
|
||||||
|
ComputeExternalUpdater();
|
||||||
ComputeFreeType();
|
ComputeFreeType();
|
||||||
ComputeInstallBetaVersions();
|
ComputeInstallBetaVersions();
|
||||||
ComputeInstallationTag();
|
ComputeInstallationTag();
|
||||||
|
|
Loading…
Reference in New Issue