mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Move update check and survey to the new domain
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
514a0e582a
commit
fe2c46a5b7
2 changed files with 2 additions and 2 deletions
|
@ -934,7 +934,7 @@ UserSurveyServices::UserSurveyServices(QWidget *parent, Qt::WindowFlags f) : Web
|
|||
QNetworkReply* UserSurveyServices::sendSurvey(QString values)
|
||||
{
|
||||
QNetworkRequest request;
|
||||
request.setUrl(QString("http://subsurface.hohndel.org/survey?%1").arg(values));
|
||||
request.setUrl(QString("http://subsurface-divelog.org/survey?%1").arg(values));
|
||||
request.setRawHeader("Accept", "text/xml");
|
||||
request.setRawHeader("User-Agent", userAgent.toUtf8());
|
||||
reply = manager()->get(request);
|
||||
|
|
|
@ -24,7 +24,7 @@ void UpdateManager::checkForUpdates()
|
|||
#endif
|
||||
|
||||
QString version = VERSION_STRING;
|
||||
QString url = QString("http://subsurface.hohndel.org/updatecheck.html?os=%1&ver=%2").arg(os, version);
|
||||
QString url = QString("http://subsurface-divelog.org/updatecheck.html?os=%1&ver=%2").arg(os, version);
|
||||
QNetworkRequest request;
|
||||
request.setUrl(url);
|
||||
request.setRawHeader("Accept", "text/xml");
|
||||
|
|
Loading…
Reference in a new issue