Replace Saucedacity with Tenacity

This commit is contained in:
Steffen Lange 2023-04-02 14:42:58 +02:00
parent 1885665c6f
commit 8e49dd43c1
2 changed files with 14 additions and 14 deletions

14
modules/Tenacity.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Tenacity extends PatchBase {
function __construct() {
parent::__construct('Tenacity Community', 'Tenacity', 'https://tenacityaudio.org/');
}
function check() : bool {
if ($this->fetch_json('https://codeberg.org/api/v1/repos/tenacityteam/tenacity/releases'))
return $this->parse_json('tag_name');
return false;
}
}
?>