Files
oak-editor/ui/updatenotification.cpp
T
2019-03-10 16:37:03 +11:00

39 lines
1.1 KiB
C++

#include "updatenotification.h"
#include <QNetworkAccessManager>
#include <QStatusBar>
#include "mainwindow.h"
UpdateNotification olive::update_notifier;
UpdateNotification::UpdateNotification()
{
}
void UpdateNotification::check()
{
#if defined(_WIN32) || defined(__APPLE__)
QNetworkAccessManager* manager = new QNetworkAccessManager();
connect(manager, SIGNAL(finished(QNetworkReply *)), this, SLOT(finished_slot(QNetworkReply *)));
connect(manager, SIGNAL(finished(QNetworkReply *)), manager, SLOT(deleteLater()));
QString update_url = QString("http://olivevideoeditor.org/update.php?version=0&hash=%1");
QNetworkRequest request(QUrl(update_url.arg(GITHASH)));
manager->get(request);
#endif
}
void UpdateNotification::finished_slot(QNetworkReply *reply)
{
QString response = QString::fromUtf8(reply->readAll());
if (response == "1") {
olive::MainWindow->statusBar()->showMessage(tr("An update is available from the Olive website. "
"Visit www.olivevideoeditor.org to download it."));
}
}