PatchBot/modules/Ardour.php
2021-10-26 11:04:04 +02:00

14 lines
321 B
PHP

<?php
class Ardour extends PatchBase {
function __construct() {
parent::__construct('Paul Davis', 'Ardour', 'https://ardour.org/download.html');
}
function check() : bool {
if ($this->fetch('https://community.ardour.org/download'))
return $this->parse('/set_release\("([\d\.]+)"\)/');
return false;
}
}
?>