16 lines
412 B
PHP
16 lines
412 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')) {
|
|
$this->data = utf8_decode($this->data);
|
|
return $this->parse('/[Ll]atest.[Vv]ersion.+[Rr]elease.([\d\.]+)/');
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|