Add Shotcut

This commit is contained in:
Steffen Lange 2022-04-29 16:27:49 +02:00
parent e1e6e03d2b
commit 88e9aa2d27

14
modules/Shotcut.php Normal file
View file

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