Add Beyond Compare

This commit is contained in:
Steffen Lange 2024-08-19 11:48:11 +02:00
parent a9e08eccf1
commit bff0d43288

15
modules/BCompare5.php Normal file
View file

@ -0,0 +1,15 @@
<?php
class BCompare5 extends PatchBase {
function __construct() {
parent::__construct('Scooter Software Inc.', 'Beyond Compare', 'https://www.scootersoftware.com/download');
$this->patch->setBranch('5');
}
function check() : bool {
if ($this->fetch('https://www.scootersoftware.com/checkupdates.php?product=bc5'))
return $this->parse('/Version <b>([\d\.]+ build \d+)<\/b>/');
return false;
}
}
?>