Compare commits

...

3 commits

Author SHA1 Message Date
1be98d0dac Add mpv 2025-04-23 17:27:22 +02:00
a10f3c92ea Add Kdenlive 2025-04-23 17:27:08 +02:00
1e5cf2a5fc Add Halloy 2025-04-23 17:26:55 +02:00
3 changed files with 42 additions and 0 deletions

14
modules/Halloy.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Halloy extends PatchBase {
function __construct() {
parent::__construct('Squidowl Team', 'Halloy', 'https://halloy.chat/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/squidowl/halloy/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>

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

14
modules/Mpv.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Mpv extends PatchBase {
function __construct() {
parent::__construct('mpv Developers', 'mpv', 'https://mpv.io/installation/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/mpv-player/mpv/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>