From 444ab7f26a1923bd79e787cda0bd3151d6b5d2c0 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sat, 23 Oct 2021 22:21:51 +0200 Subject: [PATCH] Ghostscript: link to download moved --- modules/Ghostscript.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/Ghostscript.php b/modules/Ghostscript.php index dff1c82..12171c6 100644 --- a/modules/Ghostscript.php +++ b/modules/Ghostscript.php @@ -2,11 +2,11 @@ class Ghostscript extends PatchBase { function __construct() { - parent::__construct('Artifex Software', 'Ghostscript', 'https://www.ghostscript.com/download/gsdnld.html'); + parent::__construct('Artifex Software', 'Ghostscript', 'https://www.ghostscript.com/releases/gsdnld.html'); } function check() : bool { - if ($this->fetch('https://www.ghostscript.com/download/gsdnld.html')) - return $this->parse('/<\/a>Ghostscript ([\d\.]+) Source/'); + if ($this->fetch('https://ghostscript.com/releases/index.html')) + return $this->parse('/The latest release is Ghostscript ([\d\.]+)/'); return false; } }