PatchBot/modules/Kdenlive.php
2025-04-23 17:27:08 +02:00

14 lines
354 B
PHP

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