mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Add "Changelog:" metadata field.
This commit is contained in:
parent
d1cf1c37b4
commit
b1ec8cc47a
6 changed files with 39 additions and 2 deletions
|
|
@ -284,6 +284,9 @@ class FDroid
|
|||
case "tracker":
|
||||
$issues=$el;
|
||||
break;
|
||||
case "changelog":
|
||||
$changelog=$el;
|
||||
break;
|
||||
case "donate":
|
||||
$donate=$el;
|
||||
break;
|
||||
|
|
@ -398,6 +401,8 @@ class FDroid
|
|||
$out.='<b>Issue Tracker:</b> <a href="'.$issues.'">'.$issues.'</a><br />';
|
||||
if(strlen($source)>0)
|
||||
$out.='<b>Source Code:</b> <a href="'.$source.'">'.$source.'</a><br />';
|
||||
if(strlen($changelog)>0)
|
||||
$out.='<b>Changelog:</b> <a href="'.$changelog.'">'.$changelog.'</a><br />';
|
||||
if(isset($donate) && strlen($donate)>0)
|
||||
$out.='<b>Donate:</b> <a href="'.$donate.'">'.$donate.'</a><br />';
|
||||
if(isset($flattr) && strlen($flattr)>0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue