From 6f1a6239d80535102d222d3ac0e8b4de36c4793d Mon Sep 17 00:00:00 2001 From: Thomas Pointhuber Date: Tue, 26 Oct 2021 12:11:35 +0200 Subject: [PATCH] Update KiCad to correct URL old domain is no longer valid! https://www.kicad.org/blog/2021/10/Avoid-links-to-former-kicad-domain --- modules/KiCad.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/KiCad.php b/modules/KiCad.php index da2ecae..dd39edf 100644 --- a/modules/KiCad.php +++ b/modules/KiCad.php @@ -2,10 +2,10 @@ class KiCad extends PatchBase { function __construct() { - parent::__construct('KiCad Developers', 'KiCad', 'https://kicad-pcb.org/download/'); + parent::__construct('KiCad Developers', 'KiCad', 'https://kicad.org/download/'); } function check() : bool { - if ($this->fetch('https://kicad-pcb.org/download/source/')) + if ($this->fetch('https://kicad.org/download/source/')) return $this->parse('/

Current Version: ([\d\.]+)<\/strong><\/p>/'); return false; }