Add TightVNC + UltraVNC

This commit is contained in:
Steffen Lange 2021-01-08 10:22:35 +01:00
parent e4b80456eb
commit c1def8be6a
2 changed files with 28 additions and 0 deletions

14
modules/TightVNC.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class TightVNC extends PatchBase {
function __construct() {
parent::__construct('GlavSoft LLC', 'TightVNC', 'https://www.tightvnc.com/download.php');
}
function check() : bool {
if ($this->fetch('https://www.tightvnc.com/download.php'))
return $this->parse('/Download TightVNC for Windows \(Version ([\d\.]+)\)/');
return false;
}
}
?>