From 61100b225a4b40dc75eb042f7bafcb56ca922b2d Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Fri, 23 Aug 2024 17:21:53 +0200 Subject: [PATCH] fix(doc): use https for meshlab homepage --- README.md | 2 +- docs/README.md | 2 +- docs/readme.txt | 2 +- resources/readme.txt | 2 +- resources/windows/meshlab.nsi | 2 +- src/common/mlapplication.h | 4 ++-- src/meshlab/dialogs/about_dialog.ui | 4 ++-- src/meshlab/mainwindow_RunTime.cpp | 2 +- src/meshlabplugins/io_x3d/export_x3d.h | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 30deb56774..fb08bd0a24 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ The MeshLab repository is organized as follows: ``` MeshLab - http://www.meshlab.net + https://www.meshlab.net All rights reserved. VCGLib http://www.vcglib.net o o diff --git a/docs/README.md b/docs/README.md index a031007694..3fbe5ade99 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,5 +1,5 @@ MeshLab - http://www.meshlab.net + https://www.meshlab.net All rights reserved. VCGLib http://www.vcglib.net o o diff --git a/docs/readme.txt b/docs/readme.txt index 75a236787a..ab7058f165 100644 --- a/docs/readme.txt +++ b/docs/readme.txt @@ -1,5 +1,5 @@ MeshLab - http://www.meshlab.net + https://www.meshlab.net All rights reserved. VCGLib http://www.vcglib.net o o diff --git a/resources/readme.txt b/resources/readme.txt index 2bc4b75d7b..d0235efcb9 100644 --- a/resources/readme.txt +++ b/resources/readme.txt @@ -1,5 +1,5 @@ MeshLab - http://www.meshlab.net + https://www.meshlab.net All rights reserved. VCGLib http://www.vcglib.net o o diff --git a/resources/windows/meshlab.nsi b/resources/windows/meshlab.nsi index f50256ed45..dbf8e03de5 100644 --- a/resources/windows/meshlab.nsi +++ b/resources/windows/meshlab.nsi @@ -6,7 +6,7 @@ !define PRODUCT_NAME "MeshLab" !define PRODUCT_VERSION "MESHLAB_VERSION" !define PRODUCT_PUBLISHER "Paolo Cignoni - VCG - ISTI - CNR" -!define PRODUCT_WEB_SITE "http://www.meshlab.net" +!define PRODUCT_WEB_SITE "https://www.meshlab.net" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\meshlab.exe" !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" !define PRODUCT_UNINST_ROOT_KEY "HKLM" diff --git a/src/common/mlapplication.h b/src/common/mlapplication.h index b97c998b4d..8eed54bc0a 100644 --- a/src/common/mlapplication.h +++ b/src/common/mlapplication.h @@ -27,8 +27,8 @@ class MeshLabApplication : public QApplication static const QString completeName(const HW_ARCHITECTURE hw){return appArchitecturalName(hw) + " v" + appVer(); } static const QString organization(){return tr("VCG");} static const QString organizationHost() {return tr("http://vcg.isti.cnr.it");} - static const QString webSite() {return tr("http://www.meshlab.net/");} - static const QString downloadSite() {return tr("http://www.meshlab.net/#download");} + static const QString webSite() {return tr("https://www.meshlab.net/");} + static const QString downloadSite() {return tr("https://www.meshlab.net/#download");} static const QString pluginsPathRegisterKeyName() {return tr("pluginsPath");} static const QString versionRegisterKeyName() {return tr("version");} diff --git a/src/meshlab/dialogs/about_dialog.ui b/src/meshlab/dialogs/about_dialog.ui index ff65ed0094..e778c08c30 100644 --- a/src/meshlab/dialogs/about_dialog.ui +++ b/src/meshlab/dialogs/about_dialog.ui @@ -135,9 +135,9 @@ - <p><strong>General Info:&nbsp;<a href="http://www.meshlab.net">www.meshlab.net</a></strong></p> + <p><strong>General Info:&nbsp;<a href="https://www.meshlab.net">www.meshlab.net</a></strong></p> <p>MeshLab is the most used open source system for processing and editing 3D triangular meshes. It provides a set of tools for editing, cleaning, healing, inspecting, rendering, texturing and converting meshes. It offers features for processing raw data produced by 3D digitization tools/devices and for preparing models for 3D printing. The system is heavily based on the <a href="http://www.vcglib.net">VCG library</a>. <br />Source code is available on <a href="https://github.com/cnr-isti-vclab/meshlab">GitHub </a>(protected by GPL).</p> -<p><strong>References</strong><br />Remember that the simplest way to show your appreciation of the MeshLab system is to cite it whenever you have used some of its functionality. Please check the <a href="http://www.meshlab.net/#references">list of the many publications</a> related with MeshLab.</p> +<p><strong>References</strong><br />Remember that the simplest way to show your appreciation of the MeshLab system is to cite it whenever you have used some of its functionality. Please check the <a href="https://www.meshlab.net/#references">list of the many publications</a> related with MeshLab.</p> Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop diff --git a/src/meshlab/mainwindow_RunTime.cpp b/src/meshlab/mainwindow_RunTime.cpp index 65d1e099bc..0700472a53 100644 --- a/src/meshlab/mainwindow_RunTime.cpp +++ b/src/meshlab/mainwindow_RunTime.cpp @@ -2510,7 +2510,7 @@ void MainWindow::helpOnscreen() void MainWindow::helpOnline() { checkForUpdates(false); - QDesktopServices::openUrl(QUrl("http://www.meshlab.net/#support")); + QDesktopServices::openUrl(QUrl("https://www.meshlab.net/#support")); } void MainWindow::showToolbarFile(){ diff --git a/src/meshlabplugins/io_x3d/export_x3d.h b/src/meshlabplugins/io_x3d/export_x3d.h index cdc27f3adc..7d2c9d31f6 100644 --- a/src/meshlabplugins/io_x3d/export_x3d.h +++ b/src/meshlabplugins/io_x3d/export_x3d.h @@ -80,7 +80,7 @@ namespace io { QDomProcessingInstruction proc = doc.createProcessingInstruction("xml", "version=\"1.0\" encoding=\"UTF-8\""); doc.appendChild(proc); QString metaName[] = {"title", "description", "created", "generator"}; - QString metaContent[] = {QFileInfo(filename).fileName(), "Generated from Meshlab X3D Exported", QDate::currentDate().toString("d MMMM yyyy"), "Meshlab X3D Exported, http://www.meshlab.net"}; + QString metaContent[] = {QFileInfo(filename).fileName(), "Generated from Meshlab X3D Exported", QDate::currentDate().toString("d MMMM yyyy"), "Meshlab X3D Exported, https://www.meshlab.net"}; QDomElement root = doc.createElement("X3D"); root.setAttribute("profile", "Immersive"); root.setAttribute("version", "3.1");