Add Saucedacity

This commit is contained in:
Steffen Lange 2022-10-12 16:37:58 +02:00
parent b83e852315
commit bc6555172d

14
modules/Saucedacity.php Normal file
View file

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