Add Glaxnimate

This commit is contained in:
Steffen Lange 2025-10-27 12:10:01 +01:00
parent c61174ac3a
commit 78a40550ad

14
modules/Glaxnimate.php Normal file
View file

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