Compare commits

..

3 commits

Author SHA1 Message Date
36fdcdbb2c Add KOReader 2025-03-29 17:10:47 +01:00
53fb549a38 Add resticprofile 2025-03-29 17:10:33 +01:00
e37258fd50 Add autorestic 2025-03-29 17:10:13 +01:00
3 changed files with 42 additions and 0 deletions

14
modules/Autorestic.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Autorestic extends PatchBase {
function __construct() {
parent::__construct('Niccolo Borgioli', 'autorestic', 'https://autorestic.vercel.app/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/cupcakearmy/autorestic/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>

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

14
modules/Resticprofile.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Resticprofile extends PatchBase {
function __construct() {
parent::__construct('Creative Projects', 'resticprofile', 'https://creativeprojects.github.io/resticprofile/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/creativeprojects/resticprofile/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>