Compare commits

..

2 commits

Author SHA1 Message Date
Steffen Lange
3ead7e94cb Add Deskflow 2025-11-09 21:47:29 +01:00
Steffen Lange
56bf36d18c Add doxx 2025-11-09 21:47:17 +01:00
2 changed files with 28 additions and 0 deletions

14
modules/Deskflow.php Normal file
View 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
View 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;
}
}
?>