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/UltraVNC.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class UltraVNC extends PatchBase {
function __construct() {
parent::__construct('UltraVNC Team', 'UltraVNC', 'https://www.uvnc.com/downloads/ultravnc.html');
}
function check() : bool {
if ($this->fetch('https://www.uvnc.com/downloads/ultravnc.html'))
return $this->parse('/[Dd]ownload [Uu]ltra[Vv][Nn][Cc] ([\d\.]+)/');
return false;
}
}
?>