Add Scilab

This commit is contained in:
Steffen Lange 2021-03-04 17:46:49 +01:00
parent 80a7b42171
commit fd58dc3330

14
modules/Scilab.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Scilab extends PatchBase {
function __construct() {
parent::__construct('ESI Group', 'Scilab', 'https://www.scilab.org/download');
}
function check() : bool {
if ($this->fetch('https://www.scilab.org/download', false))
return $this->parse('/\/download\/([\d\.]+)/');
return false;
}
}
?>