Add Kdenlive

This commit is contained in:
Steffen Lange 2025-04-23 17:27:08 +02:00
parent 1e5cf2a5fc
commit a10f3c92ea

14
modules/Kdenlive.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Kdenlive extends PatchBase {
function __construct() {
parent::__construct('Kdenlive Authors', 'Kdenlive', 'https://kdenlive.org/download/');
}
function check() : bool {
if ($this->fetch_json('https://invent.kde.org/api/v4/projects/multimedia%2Fkdenlive/repository/tags'))
return $this->parse_json('name');
return false;
}
}
?>