Add GitUI

This commit is contained in:
Steffen Lange 2021-11-22 13:30:58 +01:00
parent 0517948ad6
commit 5bdb3ead24

14
modules/GitUI.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class GitUI extends PatchBase {
function __construct() {
parent::__construct('Stephan Dilly', 'GitUI', 'https://github.com/extrawurst/gitui');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/extrawurst/gitui/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>