Add Audacity

This commit is contained in:
Steffen Lange 2020-04-30 23:32:19 +02:00
parent 37dfa2060a
commit 4478c19880

14
modules/Audacity.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Audacity extends PatchBase {
function __construct() {
parent::__construct('Audacity Team', 'Audacity', 'https://www.audacityteam.org/download/windows/');
}
function check() : bool {
if ($this->fetch('https://www.audacityteam.org/download/windows/'))
return $this->parse('/<h2>Current Version: ([\d\.]+)<\/h2>/');
return false;
}
}
?>