summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2021-12-16 22:33:43 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2021-12-24 18:05:53 +0100
commit2fdc056fee03684e8c0cedb6005158dd554e9f43 (patch)
tree5f83a317f98b3137c6513a2fe428b77acf9988c3 /utils
parent9e28474e47d1cdcb432bb43b32b06f693f4fca3f (diff)
downloadrockbox-2fdc056fee03684e8c0cedb6005158dd554e9f43.tar.gz
rockbox-2fdc056fee03684e8c0cedb6005158dd554e9f43.zip
rbutil: Use https URLs in Changelog links.
Change-Id: I9a40163c9025550185104dc00356932bda16f782
Diffstat (limited to 'utils')
-rw-r--r--utils/rbutilqt/gui/changelog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/rbutilqt/gui/changelog.cpp b/utils/rbutilqt/gui/changelog.cpp
index 9005b9e474..6495c0ebd9 100644
--- a/utils/rbutilqt/gui/changelog.cpp
+++ b/utils/rbutilqt/gui/changelog.cpp
@@ -62,9 +62,9 @@ QString Changelog::parseChangelogFile(QString filename)
62 while(line.startsWith("*")) { 62 while(line.startsWith("*")) {
63 QString t = line.remove(QRegularExpression("^\\*")); 63 QString t = line.remove(QRegularExpression("^\\*"));
64 t.replace(QRegularExpression("FS#(\\d+)"), 64 t.replace(QRegularExpression("FS#(\\d+)"),
65 "<a href='http://www.rockbox.org/tracker/task/\\1'>FS#\\1</a>"); 65 "<a href='https://www.rockbox.org/tracker/task/\\1'>FS#\\1</a>");
66 t.replace(QRegularExpression("G#(\\d+)"), 66 t.replace(QRegularExpression("G#(\\d+)"),
67 "<a href='http://gerrit.rockbox.org/r/\\1'>G#\\1</a>"); 67 "<a href='https://gerrit.rockbox.org/r/\\1'>G#\\1</a>");
68 text.append(QString("<li>%1</li>").arg(t)); 68 text.append(QString("<li>%1</li>").arg(t));
69 line = c.readLine(); 69 line = c.readLine();
70 if(line.startsWith("#")) 70 if(line.startsWith("#"))