Generate update file with links to the new downloads center

This commit is contained in:
Manuel Cortez 2022-01-01 16:01:46 -06:00
parent f4eea98a4b
commit 8acbea78ae
No known key found for this signature in database
GPG Key ID: 262CC30FA01B5CBF

View File

@ -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()