Compare commits
3 commits
949197cc9d
...
36fdcdbb2c
| Author | SHA1 | Date | |
|---|---|---|---|
| 36fdcdbb2c | |||
| 53fb549a38 | |||
| e37258fd50 |
3 changed files with 42 additions and 0 deletions
14
modules/Autorestic.php
Normal file
14
modules/Autorestic.php
Normal 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
14
modules/KOReader.php
Normal 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
14
modules/Resticprofile.php
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue