PatchBot/modules/Freeplane.php
2021-01-19 16:52:29 +01:00

14 lines
373 B
PHP

<?php
class Freeplane extends PatchBase {
function __construct() {
parent::__construct('Freeplane Team', 'Freeplane', 'https://www.freeplane.org/wiki/index.php/Home');
}
function check() : bool {
if ($this->fetch('https://www.freeplane.org/wiki/index.php/Home'))
return $this->parse('/\(this downloads the stable version ([\d\.]+)\)/');
return false;
}
}
?>