PatchBot/modules/SublimeText3.php

15 lines
364 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;
}
}
?>