Use https for URLs

This commit is contained in:
Jean-Francois Dockes 2020-05-28 09:57:00 +02:00
parent 4389ce350c
commit 51f524a3d4
2 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ setup (name = 'Recoll',
description = 'Query/Augment a Recoll full text index',
author = 'J.F. Dockes',
author_email = 'jfd@recoll.org',
url = 'http://www.recoll.org',
url = 'https://www.recoll.org',
license = 'GPL',
# package_dir = {'' : os.path.join(top, 'python', 'recoll')},
long_description = '''

View File

@ -332,8 +332,8 @@ void RclMain::showExtIdxDialog()
void RclMain::showAboutDialog()
{
string vstring = Rcl::version_string() +
string("<br><a href='http://www.recoll.org'>www.recoll.org</a>") +
string("<br><a href='http://www.xapian.org'>www.xapian.org</a>");
string("<br><a href='https://www.recoll.org'>www.recoll.org</a>") +
string("<br><a href='https://www.xapian.org'>www.xapian.org</a>");
QMessageBox::information(this, tr("About Recoll"), vstring.c_str());
}