Compare commits

...

2 commits

Author SHA1 Message Date
72dfe9163a Add Parula 2026-05-16 22:59:26 +02:00
6164da5c86 Add GPXSee 2026-05-16 22:58:46 +02:00
2 changed files with 28 additions and 0 deletions

14
modules/GPXSee.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class GPXSee extends PatchBase {
function __construct() {
parent::__construct('Martin Tůma', 'GPXSee', 'https://www.gpxsee.org/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/tumic0/GPXSee/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>

14
modules/Parula.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Parula extends PatchBase {
function __construct() {
parent::__construct('Beonex GmbH', 'Parula', 'https://parula.beonex.com/download');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/mustang-im/mustang/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>