14 lines
320 B
PHP
14 lines
320 B
PHP
<?php
|
|
|
|
class Scilab extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('ESI Group', 'Scilab', 'https://www.scilab.org/download');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch_header('https://www.scilab.org/latest'))
|
|
return $this->parse('/\/download\/scilab-([\d\.]+)/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|