mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Test #6
This commit is contained in:
parent
3a8f91d6f6
commit
533516a9ed
|
@ -24,6 +24,10 @@ Modes::Modes()
|
||||||
{
|
{
|
||||||
this->isPortable = true;
|
this->isPortable = true;
|
||||||
}
|
}
|
||||||
|
else if (line.startsWith("test"))
|
||||||
|
{
|
||||||
|
this->test = line.mid(4);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ public:
|
||||||
|
|
||||||
bool isNightly{};
|
bool isNightly{};
|
||||||
bool isPortable{};
|
bool isPortable{};
|
||||||
|
QString test{};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -214,6 +214,15 @@ void Updates::checkForUpdates()
|
||||||
NetworkRequest(url)
|
NetworkRequest(url)
|
||||||
.timeout(60000)
|
.timeout(60000)
|
||||||
.onSuccess([this](auto result) -> Outcome {
|
.onSuccess([this](auto result) -> Outcome {
|
||||||
|
if (Modes::getInstance().test == "0")
|
||||||
|
{
|
||||||
|
return Success;
|
||||||
|
}
|
||||||
|
if (Modes::getInstance().test == "1")
|
||||||
|
{
|
||||||
|
return Failure;
|
||||||
|
}
|
||||||
|
|
||||||
auto object = result.parseJson();
|
auto object = result.parseJson();
|
||||||
/// Version available on every platform
|
/// Version available on every platform
|
||||||
QJsonValue version_val = object.value("version");
|
QJsonValue version_val = object.value("version");
|
||||||
|
@ -224,6 +233,10 @@ void Updates::checkForUpdates()
|
||||||
qDebug() << "error updating";
|
qDebug() << "error updating";
|
||||||
return Failure;
|
return Failure;
|
||||||
}
|
}
|
||||||
|
if (Modes::getInstance().test == "2")
|
||||||
|
{
|
||||||
|
return Failure;
|
||||||
|
}
|
||||||
|
|
||||||
#if defined Q_OS_WIN || defined Q_OS_MACOS
|
#if defined Q_OS_WIN || defined Q_OS_MACOS
|
||||||
/// Windows downloads an installer for the new version
|
/// Windows downloads an installer for the new version
|
||||||
|
@ -235,6 +248,10 @@ void Updates::checkForUpdates()
|
||||||
return Failure;
|
return Failure;
|
||||||
}
|
}
|
||||||
this->updateExe_ = updateExe_val.toString();
|
this->updateExe_ = updateExe_val.toString();
|
||||||
|
if (Modes::getInstance().test == "3")
|
||||||
|
{
|
||||||
|
return Failure;
|
||||||
|
}
|
||||||
|
|
||||||
/// Windows portable
|
/// Windows portable
|
||||||
QJsonValue portable_val = object.value("portable_download");
|
QJsonValue portable_val = object.value("portable_download");
|
||||||
|
@ -256,9 +273,19 @@ void Updates::checkForUpdates()
|
||||||
return Failure;
|
return Failure;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (Modes::getInstance().test == "4")
|
||||||
|
{
|
||||||
|
return Failure;
|
||||||
|
}
|
||||||
|
|
||||||
/// Current version
|
/// Current version
|
||||||
this->onlineVersion_ = version_val.toString();
|
this->onlineVersion_ = version_val.toString();
|
||||||
|
|
||||||
|
if (Modes::getInstance().test == "5")
|
||||||
|
{
|
||||||
|
return Failure;
|
||||||
|
}
|
||||||
|
|
||||||
/// Update available :)
|
/// Update available :)
|
||||||
if (this->currentVersion_ != this->onlineVersion_)
|
if (this->currentVersion_ != this->onlineVersion_)
|
||||||
{
|
{
|
||||||
|
@ -281,6 +308,16 @@ Updates::Status Updates::getStatus() const
|
||||||
|
|
||||||
bool Updates::shouldShowUpdateButton() const
|
bool Updates::shouldShowUpdateButton() const
|
||||||
{
|
{
|
||||||
|
if (Modes::getInstance().test == "8")
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Modes::getInstance().test == "9")
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
switch (this->getStatus())
|
switch (this->getStatus())
|
||||||
{
|
{
|
||||||
case UpdateAvailable:
|
case UpdateAvailable:
|
||||||
|
@ -314,6 +351,12 @@ void Updates::setStatus_(Status status)
|
||||||
if (this->status_ != status)
|
if (this->status_ != status)
|
||||||
{
|
{
|
||||||
this->status_ = status;
|
this->status_ = status;
|
||||||
|
|
||||||
|
if (Modes::getInstance().test == "6")
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
postToThread([this, status] { this->statusUpdated.invoke(status); });
|
postToThread([this, status] { this->statusUpdated.invoke(status); });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue