Add Citrix Workspace app LTSR

This commit is contained in:
Steffen Lange 2020-07-25 00:17:55 +02:00
parent 812c30049a
commit 264f0e6d64

View file

@ -0,0 +1,15 @@
<?php
class CitrixWorkspaceAppLTSR extends PatchBase {
function __construct() {
parent::__construct('Citrix', 'Workspace App', 'https://www.citrix.com/downloads/workspace-app/workspace-app-for-windows-long-term-service-release/');
$this->patch->setBranch('LTSR');
}
function check() : bool {
if ($this->fetch('https://www.citrix.com/downloads/workspace-app/workspace-app-for-windows-long-term-service-release/'))
return $this->parse('/>Citrix Workspace app ([\d\.]+).+LTSR/');
return false;
}
}
?>