Compare commits

..

No commits in common. "3ead7e94cb2664b866853c46cb2ee1094e6c19c1" and "8dc42740e0ee24894220793157ee7a58d1f302fc" have entirely different histories.

2 changed files with 0 additions and 28 deletions

View file

@ -1,14 +0,0 @@
<?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;
}
}
?>

View file

@ -1,14 +0,0 @@
<?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;
}
}
?>