Add Parula

This commit is contained in:
Steffen Lange 2026-05-16 22:59:26 +02:00
parent 6164da5c86
commit 72dfe9163a

14
modules/Parula.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Parula extends PatchBase {
function __construct() {
parent::__construct('Beonex GmbH', 'Parula', 'https://parula.beonex.com/download');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/mustang-im/mustang/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>