From 9d40a5f595c1c67b9de3ff90480e6cf1245011ae Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Mon, 5 Sep 2022 15:22:14 +0200 Subject: [PATCH] GIMP: download path changed --- modules/GIMP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/GIMP.php b/modules/GIMP.php index 899c890..dcb490b 100644 --- a/modules/GIMP.php +++ b/modules/GIMP.php @@ -6,7 +6,7 @@ class GIMP extends PatchBase { } function check() : bool { if ($this->fetch('https://www.gimp.org/downloads/')) - return $this->parse('_//download\.gimp\.org/mirror/pub/gimp/v[\d\.]+/windows/gimp-([\d\.]+)-setup[-\d]*\.exe_'); + return $this->parse('_//download\.gimp\.org/gimp/v[\d\.]+/windows/gimp-([\d\.]+)-setup[-\d]*\.exe_'); return false; } }