Compare commits

..

No commits in common. "72dfe9163ae4321813220d42bb14e784c81eb36b" and "444c1764c14ff7a286bc7d42f258b8210d75c831" have entirely different histories.

2 changed files with 0 additions and 28 deletions

View file

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

View file

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