Add IrfanView & XnView

This commit is contained in:
Steffen Lange 2020-01-31 10:31:46 +01:00
parent 42d4d29f2a
commit 37964163f7
2 changed files with 28 additions and 0 deletions

14
modules/IrfanView.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class IrfanView extends PatchBase {
function __construct() {
parent::__construct('Irfan Skiljan', 'IrfanView', 'https://www.irfanview.com/');
}
function check() : bool {
if ($this->fetch('https://www.irfanview.com/64bit.htm'))
return $this->parse('/\(Version ([\d\.]+),/');
return false;
}
}
?>