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/XnView.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class XnView extends PatchBase {
function __construct() {
parent::__construct('Pierre-Emmanuel Gougelet', 'XnView', 'https://www.xnview.com/en/xnview/');
}
function check() : bool {
if ($this->fetch('https://www.xnview.com/en/xnview/'))
return $this->parse('/<strong>XnView ([\d\.]+)<\/strong>/');
return false;
}
}
?>