PatchBot/modules/UltraVNC.php
2021-05-30 00:15:48 +02:00

14 lines
375 B
PHP

<?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('/[Ll]atest.[Rr]elease.[Vv]ersion.+[Rr]elease.([\d\.]+)/u');
return false;
}
}
?>