Compare commits
No commits in common. "eb8c3975770cff88f968dbb4ff8673f75370ee58" and "199c761a0a05ece29f1daf0c4de13e1fd03099f8" have entirely different histories.
eb8c397577
...
199c761a0a
2 changed files with 4 additions and 4 deletions
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
class Tftpd32 extends PatchBase {
|
class Tftpd32 extends PatchBase {
|
||||||
function __construct() {
|
function __construct() {
|
||||||
parent::__construct('Philippe Jounin', 'Tftpd64', 'http://www.tftpd64.com/');
|
parent::__construct('Philippe Jounin', 'Tftpd64', 'https://tftpd32.jounin.net/tftpd32_download.html');
|
||||||
}
|
}
|
||||||
function check() : bool {
|
function check() : bool {
|
||||||
if ($this->fetch_json('https://api.github.com/repos/PJO2/tftpd64/releases/latest'))
|
if ($this->fetch('https://pjo2.github.io/tftpd64/'))
|
||||||
return $this->parse_json('tag_name');
|
return $this->parse('_/[Tt]ftpd64-([\d\.]+)-setup\.exe_');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ class UltraVNC extends PatchBase {
|
||||||
}
|
}
|
||||||
function check() : bool {
|
function check() : bool {
|
||||||
if ($this->fetch('https://uvnc.com/downloads/ultravnc.html'))
|
if ($this->fetch('https://uvnc.com/downloads/ultravnc.html'))
|
||||||
return $this->parse('/Latest release version: UltraVNC ([\d\.]+)/u');
|
return $this->parse('/Latest release version: ([\d\.]+)/u');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue