Add Rnote

This commit is contained in:
Steffen Lange 2026-01-18 13:21:56 +01:00
parent 451c01f22b
commit c3ed4e8fcf

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;
}
}
?>