PatchBot/modules/Mixxx.php
2024-02-16 21:50:20 +01:00

14 lines
337 B
PHP

<?php
class Mixxx extends PatchBase {
function __construct() {
parent::__construct('Mixxx Development Team', 'Mixxx', 'https://mixxx.org/download/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/mixxxdj/mixxx/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>