Ardour: website changed

This commit is contained in:
Steffen Lange 2022-04-29 16:17:22 +02:00
parent 63f4161054
commit e1e6e03d2b

View file

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