Add VueScan

This commit is contained in:
Steffen Lange 2021-12-22 15:08:23 +01:00
parent 82a32b714d
commit 6ae4917477

14
modules/VueScan.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class VueScan extends PatchBase {
function __construct() {
parent::__construct('Hamrick Software', 'VueScan', 'https://www.hamrick.com/download.html');
}
function check() : bool {
if ($this->fetch('https://d1t4l16dpbiwrj.cloudfront.net/menu.min.js'))
return $this->parse('/var ve="([\d\.]+)";/');
return false;
}
}
?>