Add Cyberduck

This commit is contained in:
Steffen Lange 2022-03-14 10:28:35 +01:00
parent 61e4d15407
commit 7eb61f3b1e

14
modules/Cyberduck.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Cyberduck extends PatchBase {
function __construct() {
parent::__construct('iterate GmbH', 'Cyberduck', 'https://cyberduck.io/download/');
}
function check() : bool {
if ($this->fetch('https://version.cyberduck.io/changelog.rss'))
return $this->parse('/sparkle:shortVersionString="([\d.]+)"/');
return false;
}
}
?>