1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

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 2016-11-03 10:38:22 +01:00
parent 56d51fcd6b
commit fb0c824d3c

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'])) {