Compare commits

..

No commits in common. "c3ed4e8fcfc8efe42285aa0e64db175c0a48d156" and "290f770ce8f079fab6a4a1a1e67d006eb535e8e4" have entirely different histories.

2 changed files with 0 additions and 28 deletions

View file

@ -1,14 +0,0 @@
<?php
class NormCap extends PatchBase {
function __construct() {
parent::__construct('dynobo', 'NormCap', 'https://dynobo.github.io/normcap/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/dynobo/normcap/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>

View file

@ -1,14 +0,0 @@
<?php
class Rnote extends PatchBase {
function __construct() {
parent::__construct('Felix Zwettler', 'Rnote', 'https://rnote.flxzt.net/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/flxzt/rnote/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>