Compare commits
2 commits
290f770ce8
...
c3ed4e8fcf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c3ed4e8fcf | ||
|
|
451c01f22b |
2 changed files with 28 additions and 0 deletions
14
modules/NormCap.php
Normal file
14
modules/NormCap.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
14
modules/Rnote.php
Normal file
14
modules/Rnote.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue