15 lines
366 B
PHP
15 lines
366 B
PHP
<?php
|
|
|
|
class SublimeText3 extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('Sublime HQ', 'Sublime Text', 'https://www.sublimetext.com/3');
|
|
$this->patch->setBranch('3');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://www.sublimetext.com/3'))
|
|
return $this->parse('/<p class="latest">.+Build ([\d]+)<\/p>/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|