Add eM Client

This commit is contained in:
Steffen Lange 2021-02-21 22:31:22 +01:00
parent a771bb5223
commit 429dd3aaad

14
modules/EMClient.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class EMClient extends PatchBase {
function __construct() {
parent::__construct('eM Client Inc.', 'eM Client', 'https://www.emclient.com/download?lang=en');
}
function check() : bool {
if ($this->fetch('https://www.emclient.com/dist/latest/setup.msi', false))
return $this->parse('/filename=emclient-v([\d\.]+)\.msi/');
return false;
}
}
?>