Compare commits
2 commits
8dc42740e0
...
3ead7e94cb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3ead7e94cb | ||
|
|
56bf36d18c |
2 changed files with 28 additions and 0 deletions
14
modules/Deskflow.php
Normal file
14
modules/Deskflow.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class Deskflow extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Deskflow Contributors', 'Deskflow', 'https://deskflow.org/');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch_json('https://api.github.com/repos/deskflow/deskflow/releases/latest'))
|
||||
return $this->parse_json('tag_name');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
14
modules/Doxx.php
Normal file
14
modules/Doxx.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class Doxx extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Brandon M. Greenwell', 'doxx', 'https://bgreenwell.github.io/doxx/');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch_json('https://api.github.com/repos/bgreenwell/doxx/releases/latest'))
|
||||
return $this->parse_json('tag_name');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue