Remove pumpkin mode.

This commit is contained in:
Roman Telezhynskyi 2020-10-24 11:42:56 +03:00
parent cf1752cbb3
commit eaf87cc4a1
4 changed files with 0 additions and 41 deletions

View file

@ -71,17 +71,6 @@ int main(int argc, char *argv[])
MApplication app(argc, argv);
app.InitOptions();
if (FvUpdater::IsStaledTestBuild())
{
qWarning() << QApplication::translate("Tape",
"This test build is older than %1 days. To provide you with better "
"quality service we restrict the lifetime you can use a test build. "
"To continue using Tape please update to newer test build. The "
"application will be shut down.")
.arg(FvUpdater::testBuildLifetime);
return V_EX_UNAVAILABLE;
}
QTimer::singleShot(0, &app, &MApplication::ProcessCMD);
#if defined(APPIMAGE) && defined(Q_OS_LINUX)

View file

@ -80,17 +80,6 @@ int main(int argc, char *argv[])
VApplication app(argc, argv);
app.InitOptions();
if (FvUpdater::IsStaledTestBuild())
{
qWarning() << QApplication::translate("Valentina",
"This test build is older than %1 days. To provide you with better "
"quality service we restrict the lifetime you can use a test build. "
"To continue using Valentina please update to newer test build. The "
"application will be shut down.")
.arg(FvUpdater::testBuildLifetime);
return V_EX_UNAVAILABLE;
}
if (VApplication::IsGUIMode())
{
// Set feed URL before doing anything else

View file

@ -53,8 +53,6 @@
#include "fvavailableupdate.h"
#include "fvupdatewindow.h"
const int FvUpdater::testBuildLifetime = 90;
namespace
{
Q_GLOBAL_STATIC_WITH_ARGS(const QString, defaultFeedURL,
@ -134,20 +132,6 @@ bool FvUpdater::IsTestBuild()
return (version != 0x0 && version != APP_VERSION);
}
//---------------------------------------------------------------------------------------------------------------------
bool FvUpdater::IsStaledTestBuild()
{
if (IsTestBuild())
{
QDate builtDate = QLocale::c().toDate(QStringLiteral(__DATE__).simplified(), QStringLiteral("MMM d yyyy"));
return builtDate.daysTo(QDate::currentDate()) > testBuildLifetime;
}
else
{
return false;
}
}
//---------------------------------------------------------------------------------------------------------------------
FvUpdater::FvUpdater()
: QObject(nullptr),

View file

@ -46,7 +46,6 @@ public:
static QString CurrentFeedURL();
static int CurrentVersion();
static bool IsTestBuild();
static bool IsStaledTestBuild();
// Set / get feed URL
void SetFeedURL(const QUrl &feedURL);
@ -56,8 +55,6 @@ public:
bool IsDropOnFinnish() const;
void SetDropOnFinnish(bool value);
static const int testBuildLifetime;
public slots:
// Check for updates
bool CheckForUpdates(bool silentAsMuchAsItCouldGet = true);