PatchBot/modules/Blender.php

14 lines
319 B
PHP

<?php
class Blender extends PatchBase {
function __construct() {
parent::__construct('Blender Foundation', 'Blender', 'https://www.blender.org/download/');
}
function check() : bool {
if ($this->fetch('https://www.blender.org/'))
return $this->parse('/>Blender ([\d\.]+)( LTS)?</');
return false;
}
}
?>