Add Defold

This commit is contained in:
Steffen Lange 2024-02-26 18:23:58 +01:00
parent 937fd04d57
commit 960db2f320

14
modules/Defold.php Normal file
View file

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