Compare commits

..

No commits in common. "1be98d0dac737203c25517d7f4a126cbf382d645" and "327502def7f4e44176e0fb075dab945541d17745" have entirely different histories.

3 changed files with 0 additions and 42 deletions

View file

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

View file

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

View file

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