PatchBot/modules/Rnote.php
Steffen Lange c3ed4e8fcf Add Rnote
2026-01-18 13:21:56 +01:00

14 lines
324 B
PHP

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