Add Pinta

This commit is contained in:
Steffen Lange 2025-04-14 10:22:11 +02:00
parent 6fcadad78a
commit c9cefebb63

14
modules/Pinta.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Pinta extends PatchBase {
function __construct() {
parent::__construct('Jonathan Pobst', 'Pinta', 'https://www.pinta-project.com/releases/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/PintaProject/Pinta/releases/latest'))
return $this->parse_json('name');
return false;
}
}
?>