Add Freeplane

This commit is contained in:
Steffen Lange 2021-01-19 16:52:29 +01:00
parent a82e78a7a4
commit 5f387ae247

14
modules/Freeplane.php Normal file
View file

@ -0,0 +1,14 @@
<?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;
}
}
?>