This commit is contained in:
Steffen Lange 2023-03-04 18:55:54 +01:00
parent 202df1d1c6
commit 0cf53672a4

15
modules/QCAD.php Normal file
View file

@ -0,0 +1,15 @@
<?php
class QCAD extends PatchBase {
function __construct() {
parent::__construct('RibbonSoft GmbH', 'QCAD', 'https://qcad.org/en/download');
$this->patch->setBranch('Community Edition');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/qcad/qcad/tags'))
return $this->parse_json('name');
return false;
}
}
?>