Add Betterbird

This commit is contained in:
Steffen Lange 2022-10-24 12:09:44 +02:00
parent bc6555172d
commit c5337c8021

14
modules/Betterbird.php Normal file
View file

@ -0,0 +1,14 @@
<?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;
}
}
?>