# HG changeset patch # User nemo # Date 1463855975 14400 # Node ID 6078cf0e4944ef5592a67b7c4e19cd83774bad15 # Parent ebdd7e6e6c49adbb731437daffd99cb6190b6af8 http → https diff -r ebdd7e6e6c49 -r 6078cf0e4944 QTfrontend/Doxyfile --- a/QTfrontend/Doxyfile Wed May 18 15:42:14 2016 -0400 +++ b/QTfrontend/Doxyfile Sat May 21 14:39:35 2016 -0400 @@ -190,7 +190,7 @@ # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. -ALIASES = "repo{1}=http://hg.hedgewars.org/hedgewars/file/default/QTfrontend/\1" +ALIASES = "repo{1}=https://hg.hedgewars.org/hedgewars/file/default/QTfrontend/\1" # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. diff -r ebdd7e6e6c49 -r 6078cf0e4944 QTfrontend/hwform.cpp --- a/QTfrontend/hwform.cpp Wed May 18 15:42:14 2016 -0400 +++ b/QTfrontend/hwform.cpp Sat May 21 14:39:35 2016 -0400 @@ -2038,7 +2038,7 @@ void HWForm::openRegistrationPage() { - QDesktopServices::openUrl(QUrl("http://www.hedgewars.org/user/register")); + QDesktopServices::openUrl(QUrl("https://www.hedgewars.org/user/register")); } void HWForm::saveDemoWithCustomName() @@ -2102,7 +2102,7 @@ void HWForm::showFeedbackDialog() { - QNetworkRequest newRequest(QUrl("http://www.hedgewars.org")); + QNetworkRequest newRequest(QUrl("https://www.hedgewars.org")); QNetworkAccessManager *manager = new QNetworkAccessManager(this); QNetworkReply *reply = manager->get(newRequest); diff -r ebdd7e6e6c49 -r 6078cf0e4944 QTfrontend/ui/widget/about.cpp --- a/QTfrontend/ui/widget/about.cpp Wed May 18 15:42:14 2016 -0400 +++ b/QTfrontend/ui/widget/about.cpp Sat May 21 14:39:35 2016 -0400 @@ -77,7 +77,7 @@ "" "

Hedgewars " + *cVersionString + "

" "

" + QLabel::tr("Revision") + " " + *cRevisionString + " (" + *cHashString + ")

" - "

http://www.hedgewars.org/

" + + "

https://www.hedgewars.org/

" + QLabel::tr("This program is distributed under the %1").arg("GNU GPL v2") + "
" diff -r ebdd7e6e6c49 -r 6078cf0e4944 QTfrontend/ui/widget/databrowser.cpp --- a/QTfrontend/ui/widget/databrowser.cpp Wed May 18 15:42:14 2016 -0400 +++ b/QTfrontend/ui/widget/databrowser.cpp Sat May 21 14:39:35 2016 -0400 @@ -52,7 +52,7 @@ qDebug() << "Requesting resource" << name.toString(); requestedResources.insert(name.toString()); - QNetworkRequest newRequest(QUrl("http://www.hedgewars.org" + name.toString())); + QNetworkRequest newRequest(QUrl("https://www.hedgewars.org" + name.toString())); newRequest.setAttribute(typeAttribute, type); newRequest.setAttribute(urlAttribute, name);