Add OpenShot

This commit is contained in:
Steffen Lange 2021-03-11 11:03:33 +01:00
parent 1bb780778a
commit b245295062

14
modules/OpenShot.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class OpenShot extends PatchBase {
function __construct() {
parent::__construct('Jonathan Thomas', 'OpenShot Video Editor', 'https://www.openshot.org/download/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/OpenShot/openshot-qt/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>