Nextcloud: Renaming

This commit is contained in:
Steffen Lange 2021-01-07 16:12:54 +01:00
parent cfc43cfd3d
commit 9b7bbf2e01

View file

@ -0,0 +1,14 @@
<?php
class NextcloudServer extends PatchBase {
function __construct() {
parent::__construct('Nextcloud GmbH', 'Nextcloud Server', 'https://nextcloud.com/install/');
}
function check() : bool {
if ($this->fetch('https://nextcloud.com/install/'))
return $this->parse('_//download.nextcloud.com/server/releases/nextcloud-([\d\.]+)\.zip_');
return false;
}
}
?>