1
0
Fork 0
forked from len0rd/rockbox

rbutil: Use https URLs in Changelog links.

Change-Id: I9a40163c9025550185104dc00356932bda16f782
This commit is contained in:
Dominik Riebeling 2021-12-16 22:33:43 +01:00
parent 9e28474e47
commit 2fdc056fee

View file

@ -62,9 +62,9 @@ QString Changelog::parseChangelogFile(QString filename)
while(line.startsWith("*")) {
QString t = line.remove(QRegularExpression("^\\*"));
t.replace(QRegularExpression("FS#(\\d+)"),
"<a href='http://www.rockbox.org/tracker/task/\\1'>FS#\\1</a>");
"<a href='https://www.rockbox.org/tracker/task/\\1'>FS#\\1</a>");
t.replace(QRegularExpression("G#(\\d+)"),
"<a href='http://gerrit.rockbox.org/r/\\1'>G#\\1</a>");
"<a href='https://gerrit.rockbox.org/r/\\1'>G#\\1</a>");
text.append(QString("<li>%1</li>").arg(t));
line = c.readLine();
if(line.startsWith("#"))