Add KOReader

This commit is contained in:
Steffen Lange 2025-03-29 17:10:47 +01:00
parent 53fb549a38
commit 36fdcdbb2c

14
modules/KOReader.php Normal file
View file

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