Compare commits

...

2 commits

Author SHA1 Message Date
Steffen Lange
c3ed4e8fcf Add Rnote 2026-01-18 13:21:56 +01:00
Steffen Lange
451c01f22b Add NormCap 2026-01-18 13:21:41 +01:00
2 changed files with 28 additions and 0 deletions

14
modules/NormCap.php Normal file
View 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
View 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;
}
}
?>