Compare commits
2 commits
444c1764c1
...
72dfe9163a
| Author | SHA1 | Date | |
|---|---|---|---|
| 72dfe9163a | |||
| 6164da5c86 |
2 changed files with 28 additions and 0 deletions
14
modules/GPXSee.php
Normal file
14
modules/GPXSee.php
Normal 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
14
modules/Parula.php
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue