Add ReactOS

This commit is contained in:
Steffen Lange 2021-09-29 01:57:28 +02:00
parent 0f6944655a
commit 452cb7ffd9

14
modules/ReactOS.php Normal file
View file

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