14 lines
374 B
PHP
14 lines
374 B
PHP
<?php
|
|
|
|
class TenEditor extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('SweetScape Software', '010 Editor', 'https://sweetscape.com/download/010editor/');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://sweetscape.com/010editor/'))
|
|
return $this->parse('/<div class="version-text">Current: v([\d\.]+)<\/div>/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|