PatchBot/modules/UltraVNC.php
2025-07-05 15:38:31 +02:00

14 lines
356 B
PHP

<?php
class UltraVNC extends PatchBase {
function __construct() {
parent::__construct('UltraVNC Team', 'UltraVNC', 'https://uvnc.com/downloads/ultravnc.html');
}
function check() : bool {
if ($this->fetch('https://uvnc.com/downloads/ultravnc.html'))
return $this->parse('/Latest release version: UltraVNC ([\d\.]+)/u');
return false;
}
}
?>