From 0bec1cfdf8f391b9a63c1633ab49c5b9edba23cd Mon Sep 17 00:00:00 2001 From: "Srivats P." Date: Wed, 3 Jun 2015 21:34:19 +0530 Subject: [PATCH] Misc: Changed the version update check URL to a (hopefully) more permanent one --- client/updater.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/updater.cpp b/client/updater.cpp index 669cfb2..cf90687 100644 --- a/client/updater.cpp +++ b/client/updater.cpp @@ -47,7 +47,7 @@ Updater::~Updater() void Updater::checkForNewVersion() { - http_ = new QHttp("wiki.ostinato.googlecode.com"); + http_ = new QHttp("update.ostinato.org"); file_ = new QTemporaryFile(); connect(http_, SIGNAL(responseHeaderReceived(QHttpResponseHeader)), @@ -60,7 +60,7 @@ void Updater::checkForNewVersion() file_->open(); qDebug("Updater: PAD XML file - %s", qPrintable(file_->fileName())); - http_->get("/hg/html/pad.xml", file_); + http_->get("/update/pad.xml", file_); qDebug("Updater: %s", qPrintable(http_->currentRequest().toString() .replace("\r\n", "\nUpdater: "))); }