PatchBot/modules/Defold.php
2024-02-26 18:23:58 +01:00

14 lines
335 B
PHP

<?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;
}
}
?>