14 lines
352 B
PHP
14 lines
352 B
PHP
<?php
|
|
|
|
class TFTPD32 extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('Philippe Jounin', 'TFTPD64', 'https://tftpd32.jounin.net/tftpd32_download.html');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://tftpd32.jounin.net/tftpd32_news.html'))
|
|
return $this->parse('/<td>Version ([\d\.]+)<\/td>/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|