PatchBot/modules/Betterbird.php
2022-10-24 12:09:44 +02:00

14 lines
363 B
PHP

<?php
class Betterbird extends PatchBase {
function __construct() {
parent::__construct('Betterbird Project', 'Betterbird', 'https://www.betterbird.eu/downloads/index.php');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/Betterbird/thunderbird-patches/tags'))
return $this->parse_json('name');
return false;
}
}
?>