Blender: update regex

This commit is contained in:
Steffen Lange 2025-03-29 23:13:50 +01:00
parent 83d8c15afe
commit 9f8fb4e7fd

View file

@ -6,7 +6,7 @@ class Blender extends PatchBase {
} }
function check() : bool { function check() : bool {
if ($this->fetch('https://www.blender.org/download/')) if ($this->fetch('https://www.blender.org/download/'))
return $this->parse('/Download Blender ([\d\.]+)( LTS)?/'); return $this->parse('_//www\.blender\.org/download/release/Blender[\d\.]+/blender-([\d\.]+)-windows-x64\.msi_');
return false; return false;
} }
} }