Add GPXSee

This commit is contained in:
Steffen Lange 2026-05-16 22:58:46 +02:00
parent 444c1764c1
commit 6164da5c86

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;
}
}
?>