mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
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("*")) {
|
while(line.startsWith("*")) {
|
||||||
QString t = line.remove(QRegularExpression("^\\*"));
|
QString t = line.remove(QRegularExpression("^\\*"));
|
||||||
t.replace(QRegularExpression("FS#(\\d+)"),
|
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+)"),
|
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));
|
text.append(QString("<li>%1</li>").arg(t));
|
||||||
line = c.readLine();
|
line = c.readLine();
|
||||||
if(line.startsWith("#"))
|
if(line.startsWith("#"))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue