This commit is contained in:
Steffen Lange 2024-02-16 21:50:20 +01:00
parent a2631db67f
commit f88ef1c522

14
modules/Mixxx.php Normal file
View file

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