summaryrefslogtreecommitdiff
path: root/src/gui/windows/updaterwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-07-16 23:18:02 +0300
committerAndrei Karas <akaras@inbox.ru>2014-07-16 23:18:02 +0300
commit66a46556ddeb7b8dbc061d325b55364839a86a26 (patch)
tree9c101c840a49c199c904815adafa1fa572338b1b /src/gui/windows/updaterwindow.cpp
parent4f5e0e5863d869a5752fc485ac5f4457bd58404b (diff)
downloadplus-66a46556ddeb7b8dbc061d325b55364839a86a26.tar.gz
plus-66a46556ddeb7b8dbc061d325b55364839a86a26.tar.bz2
plus-66a46556ddeb7b8dbc061d325b55364839a86a26.tar.xz
plus-66a46556ddeb7b8dbc061d325b55364839a86a26.zip
Move mirrors for get client version into branding file.
New branding options: updateMirrorX where X is from 1 to 7.
Diffstat (limited to 'src/gui/windows/updaterwindow.cpp')
-rw-r--r--src/gui/windows/updaterwindow.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/gui/windows/updaterwindow.cpp b/src/gui/windows/updaterwindow.cpp
index 4c1a94a13..e2c1b6128 100644
--- a/src/gui/windows/updaterwindow.cpp
+++ b/src/gui/windows/updaterwindow.cpp
@@ -560,15 +560,16 @@ void UpdaterWindow::download()
if (mDownloadStatus == UPDATE_PATCH)
{
mDownload = new Net::Download(this,
- "http://manaplus.org/update/" + mCurrentFile,
+ branding.getStringValue("updateMirror1") + mCurrentFile,
&updateProgress,
true, false, mValidateXml);
- mDownload->addMirror("http://www.manaplus.org/update/"
- + mCurrentFile);
- mDownload->addMirror("http://www2.manaplus.org/update/"
- + mCurrentFile);
- mDownload->addMirror("http://www3.manaplus.org/update/"
- + mCurrentFile);
+ for (int f = 2; f < 8; f ++)
+ {
+ const std::string url = branding.getStringValue(
+ "updateMirror" + toString(f));
+ if (!url.empty())
+ mDownload->addMirror(url + mCurrentFile);
+ }
}
else
{