Remove Citrix Workspace app, current version

This commit is contained in:
Steffen Lange 2024-01-22 11:13:32 +01:00
parent ece4462f53
commit 7ccf7acd5b

View file

@ -1,14 +0,0 @@
<?php
class CitrixWorkspaceApp extends PatchBase {
function __construct() {
parent::__construct('Citrix', 'Workspace App', 'https://www.citrix.com/downloads/workspace-app/windows/workspace-app-for-windows-latest.html');
}
function check() : bool {
if ($this->fetch('https://www.citrix.com/downloads/workspace-app/windows/workspace-app-for-windows-latest.html'))
return $this->parse('/<p>Version: ([\d\.]+) ?\([\d\.]+\)<\/p>/');
return false;
}
}
?>