Add mRemoteNG

This commit is contained in:
Steffen Lange 2021-01-22 13:25:32 +01:00
parent bfb8dbd9ad
commit 2bd4db43a0

14
modules/MRemoteNG.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class MRemoteNG extends PatchBase {
function __construct() {
parent::__construct('mRemoteNG Dev Team', 'mRemoteNG', 'https://mremoteng.org/download');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/mRemoteNG/mRemoteNG/releases/latest', true))
return $this->parse_json('tag_name');
return false;
}
}
?>