mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Update test for windows.. Please Don't touch.
This commit is contained in:
parent
eda531a6fd
commit
6bfdbc74c2
@ -81,10 +81,16 @@ void UpdaterWindow::checkForUpdates()
|
|||||||
}
|
}
|
||||||
mainwin->Notify("Checking for SleepyHead Updates");
|
mainwin->Notify("Checking for SleepyHead Updates");
|
||||||
|
|
||||||
|
update_url=QUrl("http://192.168.1.8/update.xml");
|
||||||
|
downloadUpdateXML();
|
||||||
|
}
|
||||||
|
|
||||||
|
void UpdaterWindow::downloadUpdateXML()
|
||||||
|
{
|
||||||
requestmode=RM_CheckUpdates;
|
requestmode=RM_CheckUpdates;
|
||||||
|
|
||||||
reply=netmanager->get(QNetworkRequest(QUrl("http://192.168.1.8/update.xml")));
|
reply=netmanager->get(QNetworkRequest(update_url));
|
||||||
ui->plainTextEdit->appendPlainText("Requesting "+reply->url().toString());
|
ui->plainTextEdit->appendPlainText("Requesting "+update_url.toString());
|
||||||
netmanager->connect(reply,SIGNAL(downloadProgress(qint64,qint64)),this, SLOT(downloadProgress(qint64,qint64)));
|
netmanager->connect(reply,SIGNAL(downloadProgress(qint64,qint64)),this, SLOT(downloadProgress(qint64,qint64)));
|
||||||
dltime.start();
|
dltime.start();
|
||||||
}
|
}
|
||||||
@ -259,7 +265,16 @@ void UpdaterWindow::replyFinished(QNetworkReply * reply)
|
|||||||
{
|
{
|
||||||
netmanager->disconnect(reply,SIGNAL(downloadProgress(qint64,qint64)),this, SLOT(downloadProgress(qint64,qint64)));
|
netmanager->disconnect(reply,SIGNAL(downloadProgress(qint64,qint64)),this, SLOT(downloadProgress(qint64,qint64)));
|
||||||
if (reply->error()==QNetworkReply::NoError) {
|
if (reply->error()==QNetworkReply::NoError) {
|
||||||
|
|
||||||
if (requestmode==RM_CheckUpdates) {
|
if (requestmode==RM_CheckUpdates) {
|
||||||
|
QUrl redirectUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl();
|
||||||
|
if (!redirectUrl.isEmpty() && (redirectUrl!=reply->url())) {
|
||||||
|
update_url = redirectUrl;
|
||||||
|
reply->deleteLater();
|
||||||
|
QTimer::singleShot(100,this,SLOT(downloadUpdateXML()));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
ui->plainTextEdit->appendPlainText(QString::number(reply->size())+" bytes received.");
|
ui->plainTextEdit->appendPlainText(QString::number(reply->size())+" bytes received.");
|
||||||
QString filename=QApplication::applicationDirPath()+QDir::separator()+reply->url().toString().section("/",-1);
|
QString filename=QApplication::applicationDirPath()+QDir::separator()+reply->url().toString().section("/",-1);
|
||||||
qDebug() << filename;
|
qDebug() << filename;
|
||||||
|
@ -31,6 +31,7 @@ protected slots:
|
|||||||
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
|
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
|
||||||
void dataReceived();
|
void dataReceived();
|
||||||
void requestFile();
|
void requestFile();
|
||||||
|
void downloadUpdateXML();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_CloseButton_clicked();
|
void on_CloseButton_clicked();
|
||||||
@ -58,6 +59,7 @@ private:
|
|||||||
QList<Update *> updates;
|
QList<Update *> updates;
|
||||||
int current_row;
|
int current_row;
|
||||||
bool success;
|
bool success;
|
||||||
|
QUrl update_url; // for update.xml redirects..
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // UPDATEWINDOW_H
|
#endif // UPDATEWINDOW_H
|
||||||
|
Loading…
Reference in New Issue
Block a user