Add TightVNC + UltraVNC
This commit is contained in:
parent
e4b80456eb
commit
c1def8be6a
2 changed files with 28 additions and 0 deletions
14
modules/TightVNC.php
Normal file
14
modules/TightVNC.php
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
14
modules/UltraVNC.php
Normal file
14
modules/UltraVNC.php
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue