diff --git a/modules/Halloy.php b/modules/Halloy.php new file mode 100644 index 0000000..6f4f3fe --- /dev/null +++ b/modules/Halloy.php @@ -0,0 +1,14 @@ +fetch_json('https://api.github.com/repos/squidowl/halloy/releases/latest')) + return $this->parse_json('tag_name'); + return false; + } +} + +?> diff --git a/modules/Kdenlive.php b/modules/Kdenlive.php new file mode 100644 index 0000000..438753c --- /dev/null +++ b/modules/Kdenlive.php @@ -0,0 +1,14 @@ +fetch_json('https://invent.kde.org/api/v4/projects/multimedia%2Fkdenlive/repository/tags')) + return $this->parse_json('name'); + return false; + } +} + +?> diff --git a/modules/Mpv.php b/modules/Mpv.php new file mode 100644 index 0000000..af058d1 --- /dev/null +++ b/modules/Mpv.php @@ -0,0 +1,14 @@ +fetch_json('https://api.github.com/repos/mpv-player/mpv/releases/latest')) + return $this->parse_json('tag_name'); + return false; + } +} + +?>