wp-fdroid: show GPG Signature link for source tarballs

Now that source tarballs can be GPG-signed, the website should also display
a link to fetch them.
This commit is contained in:
Hans-Christoph Steiner committed 2016-11-07 14:53:01 +01:00
1 parent 56d51fcd6b
commit fb0c824d3c
1 file changed
+3
+3
View File
@@ -515,6 +515,9 @@ class FDroid
if($srcbuild) {
$out.='<br /><a href="https://f-droid.org/repo/'.$apk['srcname'].'">source tarball</a> ';
$out.=$this->human_readable_size(filesize($this->site_path.'/repo/'.$apk['srcname']));
if(file_exists($this->site_path.'/repo/'.$apk['srcname'].'.asc')) {
$out.=' <a href="https://f-droid.org/repo/'.$apk['srcname'].'.asc">GPG Signature</a> ';
}
}
if(isset($apk['permissions'])) {