PatchBot/modules/Glaxnimate.php
2025-10-27 12:10:01 +01:00

14 lines
359 B
PHP

<?php
class Glaxnimate extends PatchBase {
function __construct() {
parent::__construct('Mattia Basaglia', 'Glaxnimate', 'https://glaxnimate.org/download/');
}
function check() : bool {
if ($this->fetch_json('https://invent.kde.org/api/v4/projects/graphics%2Fglaxnimate/repository/tags'))
return $this->parse_json('name');
return false;
}
}
?>