PatchBot/modules/FreeDOS.php
2023-12-29 23:50:30 +01:00

14 lines
331 B
PHP

<?php
class FreeDOS extends PatchBase {
function __construct() {
parent::__construct('Jim Hall & FreeDOS Team', 'FreeDOS', 'https://www.freedos.org/download/');
}
function check() : bool {
if ($this->fetch('https://www.freedos.org/download/'))
return $this->parse('/FreeDOS ([\d\.]+)<\/h\d>/');
return false;
}
}
?>