Skip to content

Commit

Permalink
Replaced http with https.
Browse files Browse the repository at this point in the history
  • Loading branch information
leozide committed Mar 21, 2018
1 parent 9fc0544 commit 930492a
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions common/lc_application.cpp
Expand Up @@ -371,9 +371,9 @@ bool lcApplication::Initialize(QList<QPair<QString, bool>>& LibraryPaths, bool&
QString Message;

if (mLibrary->LoadBuiltinPieces())
Message = tr("LeoCAD could not find a compatible Parts Library so only a small number of parts will be available.\n\nPlease visit http://www.leocad.org for information on how to download and install a library.");
Message = tr("LeoCAD could not find a compatible Parts Library so only a small number of parts will be available.\n\nPlease visit https://www.leocad.org for information on how to download and install a library.");
else
Message = tr("LeoCAD could not load Parts Library.\n\nPlease visit http://www.leocad.org for information on how to download and install a library.");
Message = tr("LeoCAD could not load Parts Library.\n\nPlease visit https://www.leocad.org for information on how to download and install a library.");

if (ShowWindow)
QMessageBox::information(gMainWindow, tr("LeoCAD"), Message);
Expand Down
2 changes: 1 addition & 1 deletion common/lc_mainwindow.cpp
Expand Up @@ -2847,7 +2847,7 @@ void lcMainWindow::HandleCommand(lcCommandId CommandId)
break;

case LC_HELP_HOMEPAGE:
QDesktopServices::openUrl(QUrl("http://www.leocad.org/"));
QDesktopServices::openUrl(QUrl("https://www.leocad.org/"));
break;

case LC_HELP_BUG_REPORT:
Expand Down
6 changes: 3 additions & 3 deletions common/project.cpp
Expand Up @@ -1807,7 +1807,7 @@ void Project::ExportHTML(const lcHTMLExportOptions& Options)
if (Options.PartsListEnd)
AddPartsListImage(Stream, Model, 0, BaseName);

Stream << QLatin1String("</CENTER>\r\n<BR><HR><BR><B><I>Created by <A HREF=\"http://www.leocad.org\">LeoCAD</A></I></B><BR></HTML>\r\n");
Stream << QLatin1String("</CENTER>\r\n<BR><HR><BR><B><I>Created by <A HREF=\"https://www.leocad.org\">LeoCAD</A></I></B><BR></HTML>\r\n");
}
else
{
Expand All @@ -1832,7 +1832,7 @@ void Project::ExportHTML(const lcHTMLExportOptions& Options)
if (Options.PartsListEnd)
Stream << QString::fromLatin1("<A HREF=\"%1-pieces.html\">Pieces Used</A><BR>\r\n").arg(BaseName);

Stream << QLatin1String("</CENTER>\r\n<BR><HR><BR><B><I>Created by <A HREF=\"http://www.leocad.org\">LeoCAD</A></B></I><BR></HTML>\r\n");
Stream << QLatin1String("</CENTER>\r\n<BR><HR><BR><B><I>Created by <A HREF=\"https://www.leocad.org\">LeoCAD</A></B></I><BR></HTML>\r\n");
}

for (lcStep Step = 1; Step <= LastStep; Step++)
Expand Down Expand Up @@ -2012,7 +2012,7 @@ void Project::ExportHTML(const lcHTMLExportOptions& Options)
}
}

Stream << QLatin1String("</CENTER>\r\n<BR><HR><BR><B><I>Created by <A HREF=\"http://www.leocad.org\">LeoCAD</A></B></I><BR></HTML>\r\n");
Stream << QLatin1String("</CENTER>\r\n<BR><HR><BR><B><I>Created by <A HREF=\"https://www.leocad.org\">LeoCAD</A></B></I><BR></HTML>\r\n");
}
}

Expand Down
4 changes: 2 additions & 2 deletions docs/leocad.1
Expand Up @@ -134,11 +134,11 @@ This will start LeoCAD, load the file "car.lcd," create a png called
User preferences file

.SH BUGS
If you find any bugs please report them at http://leocad.org/trac/newticket
If you find any bugs please report them at https://github.com/leozide/leocad/issues

.SH AUTHOR
\fILeoCAD \fRis written by Leonardo Zide <leozide@gmail.com>.
You can visit the LeoCAD homepage at http://www.leocad.org/
You can visit the LeoCAD homepage at https://www.leocad.org/

This manual page was written by Patrick Mahoney <pat7@gmx.net>,
for the Debian GNU/Linux system (but may be used by others).
Expand Down
2 changes: 1 addition & 1 deletion qt/lc_qupdatedialog.cpp
Expand Up @@ -42,7 +42,7 @@ lcQUpdateDialog::lcQUpdateDialog(QWidget* Parent, bool InitialUpdate)
manager = new QNetworkAccessManager(this);
connect(manager, SIGNAL(finished(QNetworkReply*)), this, SLOT(replyFinished(QNetworkReply*)));

updateReply = manager->get(QNetworkRequest(QUrl("http://www.leocad.org/updates.txt")));
updateReply = manager->get(QNetworkRequest(QUrl("https://www.leocad.org/updates.txt")));
}

lcQUpdateDialog::~lcQUpdateDialog()
Expand Down
2 changes: 1 addition & 1 deletion qt/lc_setsdatabasedialog.cpp
Expand Up @@ -72,7 +72,7 @@ lcSetsDatabaseDialog::lcSetsDatabaseDialog(QWidget* Parent)
connect(&mNetworkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(DownloadFinished(QNetworkReply*)));
#endif

mKeyListReply = RequestURL("http://www.leocad.org/rebrickable.json");
mKeyListReply = RequestURL("https://www.leocad.org/rebrickable.json");
}

lcSetsDatabaseDialog::~lcSetsDatabaseDialog()
Expand Down
16 changes: 8 additions & 8 deletions resources/leocad_de.ts
Expand Up @@ -3529,19 +3529,19 @@
<location filename="../common/lc_application.cpp" line="374"/>
<source>LeoCAD could not find a compatible Parts Library so only a small number of parts will be available.

Please visit http://www.leocad.org for information on how to download and install a library.</source>
Please visit https://www.leocad.org for information on how to download and install a library.</source>
<translation>LeoCAD konnte keine Teilebibliothek finden, es wird nur eine kleine Anzahl an Teilen verfügbar sein.

Bitte lesen sie unter http://www.leocad.org nach wie man eine Bibliothek herunterläd und installiert.</translation>
Bitte lesen sie unter https://www.leocad.org nach wie man eine Bibliothek herunterläd und installiert.</translation>
</message>
<message>
<location filename="../common/lc_application.cpp" line="376"/>
<source>LeoCAD could not load Parts Library.

Please visit http://www.leocad.org for information on how to download and install a library.</source>
Please visit https://www.leocad.org for information on how to download and install a library.</source>
<translation>LeoCAD konnte die Teilebibliothek nicht laden.

Bitte lesen sie unter http://www.leocad.org nach wie man eine Bibliothek herunterläd und installiert.</translation>
Bitte lesen sie unter https://www.leocad.org nach wie man eine Bibliothek herunterläd und installiert.</translation>
</message>
<message>
<location filename="../common/lc_application.cpp" line="626"/>
Expand Down Expand Up @@ -4347,8 +4347,8 @@ Bitte lesen sie unter http://www.leocad.org nach wie man eine Bibliothek herunte
</message>
<message>
<location filename="../qt/lc_qaboutdialog.ui" line="59"/>
<source>&lt;a href=&quot;http://www.leocad.org&quot;&gt;http://www.leocad.org&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://www.leocad.org&quot;&gt;http://www.leocad.org&lt;/a&gt;</translation>
<source>&lt;a href=&quot;https://www.leocad.org&quot;&gt;https://www.leocad.org&lt;/a&gt;</source>
<translation>&lt;a href=&quot;https://www.leocad.org&quot;&gt;https://www.leocad.org&lt;/a&gt;</translation>
</message>
<message>
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
Expand Down Expand Up @@ -5798,8 +5798,8 @@ GL_EXT_texture_filter_anisotropic Erweiterung: %4
</message>
<message>
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
<source>Sets Database provided by &lt;a href=&quot;http://www.rebrickable.com&quot;&gt;Rebrickable&lt;/a&gt;</source>
<translation>Legt die Datenbank fest, bereitgestellt durch &lt;a href=&quot;http://www.rebrickable.com&quot;&gt;Rebrickable&lt;/a&gt;</translation>
<source>Sets Database provided by &lt;a href=&quot;https://www.rebrickable.com&quot;&gt;Rebrickable&lt;/a&gt;</source>
<translation>Legt die Datenbank fest, bereitgestellt durch &lt;a href=&quot;https://www.rebrickable.com&quot;&gt;Rebrickable&lt;/a&gt;</translation>
</message>
<message>
<location filename="../qt/lc_setsdatabasedialog.cpp" line="130"/>
Expand Down
18 changes: 9 additions & 9 deletions resources/leocad_fr.ts
Expand Up @@ -3757,19 +3757,19 @@
<location filename="../common/lc_application.cpp" line="374"/>
<source>LeoCAD could not find a compatible Parts Library so only a small number of parts will be available.

Please visit http://www.leocad.org for information on how to download and install a library.</source>
Please visit https://www.leocad.org for information on how to download and install a library.</source>
<translation>LeoCAD n’a pas pu trouver une bibliothèque de pièces compatible donc seulement un petit nombre de pièces seront disponibles.

SVP visitez http://www.leocad.org pour apprendre comment télécharger et installer une bibliothèque.</translation>
SVP visitez https://www.leocad.org pour apprendre comment télécharger et installer une bibliothèque.</translation>
</message>
<message>
<location filename="../common/lc_application.cpp" line="376"/>
<source>LeoCAD could not load Parts Library.

Please visit http://www.leocad.org for information on how to download and install a library.</source>
Please visit https://www.leocad.org for information on how to download and install a library.</source>
<translation>LeoCAD n’a pas pu charger la bibliothèque de pièces.

SVP visitez http://www.leocad.org pour apprendre comment télécharger et installer une bibliothèque.</translation>
SVP visitez https://www.leocad.org pour apprendre comment télécharger et installer une bibliothèque.</translation>
</message>
<message>
<location filename="../common/lc_application.cpp" line="626"/>
Expand Down Expand Up @@ -4635,8 +4635,8 @@ SVP visitez http://www.leocad.org pour apprendre comment télécharger et instal
</message>
<message>
<location filename="../qt/lc_qaboutdialog.ui" line="59"/>
<source>&lt;a href=&quot;http://www.leocad.org&quot;&gt;http://www.leocad.org&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://www.leocad.org&quot;&gt;http://www.leocad.org&lt;/a&gt;</translation>
<source>&lt;a href=&quot;https://www.leocad.org&quot;&gt;https://www.leocad.org&lt;/a&gt;</source>
<translation>&lt;a href=&quot;https://www.leocad.org&quot;&gt;https://www.leocad.org&lt;/a&gt;</translation>
</message>
<message>
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
Expand Down Expand Up @@ -6104,8 +6104,8 @@ GL_EXT_texture_filter_anisotropic extension: %4
<translation type="unfinished"></translation>
</message>
<message>
<source>&lt;p&gt;Visit &lt;a href=&quot;http://www.leocad.org/files/&quot;&gt;http://www.leocad.org/files/&lt;/a&gt; to download.&lt;/p&gt;</source>
<translation type="vanished">&lt;p&gt;Visitez &lt;a href=&quot;http://www.leocad.org/file/&quot;&gt;http://www.leocad.org/files/&lt;/a&gt; pour télécharger.&lt;/p&gt;</translation>
<source>&lt;p&gt;Visit &lt;a href=&quot;https://www.leocad.org/files/&quot;&gt;https://www.leocad.org/files/&lt;/a&gt; to download.&lt;/p&gt;</source>
<translation type="vanished">&lt;p&gt;Visitez &lt;a href=&quot;https://www.leocad.org/file/&quot;&gt;https://www.leocad.org/files/&lt;/a&gt; pour télécharger.&lt;/p&gt;</translation>
</message>
<message>
<location filename="../qt/lc_qupdatedialog.cpp" line="152"/>
Expand Down Expand Up @@ -6268,7 +6268,7 @@ GL_EXT_texture_filter_anisotropic extension: %4
</message>
<message>
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
<source>Sets Database provided by &lt;a href=&quot;http://www.rebrickable.com&quot;&gt;Rebrickable&lt;/a&gt;</source>
<source>Sets Database provided by &lt;a href=&quot;https://www.rebrickable.com&quot;&gt;Rebrickable&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
14 changes: 7 additions & 7 deletions resources/leocad_pt.ts
Expand Up @@ -3745,19 +3745,19 @@
<location filename="../common/lc_application.cpp" line="374"/>
<source>LeoCAD could not find a compatible Parts Library so only a small number of parts will be available.

Please visit http://www.leocad.org for information on how to download and install a library.</source>
Please visit https://www.leocad.org for information on how to download and install a library.</source>
<translation>LeoCAD não achou uma Biblioteca de Peças.compatível portanto só vai haver uma pequena quantia de peças disponível.

Veja http://www.leocad.org para saber como descarragar e instalar uma biblioteca.</translation>
Veja https://www.leocad.org para saber como descarragar e instalar uma biblioteca.</translation>
</message>
<message>
<location filename="../common/lc_application.cpp" line="376"/>
<source>LeoCAD could not load Parts Library.

Please visit http://www.leocad.org for information on how to download and install a library.</source>
Please visit https://www.leocad.org for information on how to download and install a library.</source>
<translation>LeoCAD não conseguiu carregar a Biblioteca de Peças.

Veja http://www.leocad.org para saber como descarragar e instalar uma biblioteca.</translation>
Veja https://www.leocad.org para saber como descarragar e instalar uma biblioteca.</translation>
</message>
<message>
<location filename="../common/lc_application.cpp" line="626"/>
Expand Down Expand Up @@ -4647,8 +4647,8 @@ Veja http://www.leocad.org para saber como descarragar e instalar uma biblioteca
</message>
<message>
<location filename="../qt/lc_qaboutdialog.ui" line="59"/>
<source>&lt;a href=&quot;http://www.leocad.org&quot;&gt;http://www.leocad.org&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://www.leocad.org&quot;&gt;http://www.leocad.org&lt;/a&gt;</translation>
<source>&lt;a href=&quot;https://www.leocad.org&quot;&gt;https://www.leocad.org&lt;/a&gt;</source>
<translation>&lt;a href=&quot;https://www.leocad.org&quot;&gt;https://www.leocad.org&lt;/a&gt;</translation>
</message>
<message>
<location filename="../qt/lc_qaboutdialog.ui" line="73"/>
Expand Down Expand Up @@ -6310,7 +6310,7 @@ GL_EXT_texture_filter_anisotropic extension: %4
</message>
<message>
<location filename="../qt/lc_setsdatabasedialog.ui" line="74"/>
<source>Sets Database provided by &lt;a href=&quot;http://www.rebrickable.com&quot;&gt;Rebrickable&lt;/a&gt;</source>
<source>Sets Database provided by &lt;a href=&quot;https://www.rebrickable.com&quot;&gt;Rebrickable&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down

0 comments on commit 930492a

Please sign in to comment.