forked from len0rd/rockbox
rbutil: Use https URLs in Changelog links.
Change-Id: I9a40163c9025550185104dc00356932bda16f782
This commit is contained in:
parent
9e28474e47
commit
2fdc056fee
1 changed files with 2 additions and 2 deletions
|
@ -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("#"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue