This commit is contained in:
Steffen Lange 2020-07-29 13:14:00 +02:00
parent 422f003273
commit e58746f551

14
modules/Dia.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Dia extends PatchBase {
function __construct() {
parent::__construct('Dia Authors', 'Dia', 'http://dia-installer.de/download/index.html');
}
function check() : bool {
if ($this->fetch('http://dia-installer.de/download/index.html'))
return $this->parse('/<h3>Dia ([\d\.]+)<\/h3>/');
return false;
}
}
?>