From 8acbea78ae31f6c2cc4d56a47b8d5517f41f0857 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Sat, 1 Jan 2022 16:01:46 -0600 Subject: [PATCH] Generate update file with links to the new downloads center --- scripts/generate_update_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate_update_file.py b/scripts/generate_update_file.py index 174739f..1bf5020 100644 --- a/scripts/generate_update_file.py +++ b/scripts/generate_update_file.py @@ -14,7 +14,7 @@ print("Version detected: %s" % (version_type,)) # Read update description and URL'S if version_type == "alpha": description = os.environ.get("CI_COMMIT_MESSAGE") - urls = dict(Windows32="https://files.manuelcortez.net/socializer/alpha/socializer_x86.zip", Windows64="https://files.manuelcortez.net/socializer/alpha/socializer_x64.zip") + urls = dict(Windows32="https://files.mcvsoftware.com/socializer/alpha/socializer_x86.zip", Windows64="https://files.mcvsoftware.com/socializer/alpha/socializer_x64.zip") else: with open("update-description",'r') as f: description = f.read()