PatchBot/modules/Shotcut.php
2022-04-29 16:27:49 +02:00

14 lines
341 B
PHP

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