Add WinSCP

This commit is contained in:
Steffen Lange 2020-01-29 15:35:00 +01:00
parent ca2c035cfd
commit 0b78e001d2

14
modules/WinSCP.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class WinSCP extends PatchBase {
function __construct() {
parent::__construct('Martin Přikryl', 'WinSCP', 'https://winscp.net/');
}
function check() : bool {
if ($this->fetch('https://winscp.net/eng/download.php'))
return $this->parse('/<h1>WinSCP ([\d\.]+) Download<\/h1>/');
return false;
}
}
?>