PatchBot/modules/Scribus.php
2020-04-25 17:44:58 +02:00

14 lines
385 B
PHP

<?php
class Scribus extends PatchBase {
function __construct() {
parent::__construct('Scribus Team', 'Scribus', 'https://www.scribus.net/downloads/stable-branch/');
}
function check() : bool {
if ($this->fetch('https://www.scribus.net/downloads/stable-branch/'))
return $this->parse('/<strong>Current stable release: Scribus ([\d\.]+)<\/strong>/');
return false;
}
}
?>