Add PeaZip

This commit is contained in:
Steffen Lange 2021-09-13 15:35:17 +02:00
parent 6ac8e75087
commit e303bb1089

14
modules/PeaZip.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class PeaZip extends PatchBase {
function __construct() {
parent::__construct('Giorgio Tani', 'PeaZip', 'https://peazip.github.io/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/peazip/PeaZip/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>