Add Ardour
This commit is contained in:
parent
e2379502aa
commit
8c56cd954f
1 changed files with 14 additions and 0 deletions
14
modules/Ardour.php
Normal file
14
modules/Ardour.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue