From 600c60db2d4379d5fd71780838718f79fb7bf80f Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 12 Apr 2024 12:45:58 +0200 Subject: [PATCH] feat(installer): update modules JSON URL Switched the source URL for modules JSON to a new, more robust and secure internal repository, ensuring a safer and more reliable module fetching process. This change was made to address the need for a consistent and reliable source for module data, improving the maintainability of the system. --- src/pix360core/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pix360core/installer.py b/src/pix360core/installer.py index 6fa9049..60429a6 100644 --- a/src/pix360core/installer.py +++ b/src/pix360core/installer.py @@ -4,7 +4,7 @@ import json import subprocess class Installer: - MODULES_JSON = "https://kumig.it/-/snippets/131/raw/main/modules.json" + MODULES_JSON = "https://git.private.coffee/KumiSystems/pix360-modules/raw/branch/main/modules.json" def __init__(self): self.available_modules = self.fetch_modules()