PatchBot/modules/Blender.php
2021-10-23 21:47:27 +02:00

14 lines
335 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/download/'))
return $this->parse('/Download Blender ([\d\.]+)( LTS)?/');
return false;
}
}
?>