PatchBot/modules/UltraVNC.php

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