Add RVTools

This commit is contained in:
Steffen Lange 2022-03-14 10:28:59 +01:00
parent 7ac7168c36
commit 3e3bc64438

14
modules/RVTools.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class RVTools extends PatchBase {
function __construct() {
parent::__construct('Rob de Veij', 'RVTools', 'https://www.robware.net/rvtools/download/');
}
function check() : bool {
if ($this->fetch('https://www.robware.net/rvtools/'))
return $this->parse('/Latest Version: ([\d.]+)/');
return false;
}
}
?>