mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 13:49:39 +08:00

This way its value will be imported in the UltimakerCloudConstants.py file and be used throughout the application.
14 lines
556 B
Python
14 lines
556 B
Python
# Copyright (c) 2020 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
CuraAppName = "@CURA_APP_NAME@"
|
|
CuraAppDisplayName = "@CURA_APP_DISPLAY_NAME@"
|
|
CuraVersion = "@CURA_VERSION@"
|
|
CuraBuildType = "@CURA_BUILDTYPE@"
|
|
CuraDebugMode = True if "@_cura_debugmode@" == "ON" else False
|
|
CuraCloudAPIRoot = "@CURA_CLOUD_API_ROOT@"
|
|
CuraCloudAPIVersion = "@CURA_CLOUD_API_VERSION@"
|
|
CuraCloudAccountAPIRoot = "@CURA_CLOUD_ACCOUNT_API_ROOT@"
|
|
CuraMarketplaceRoot = "@CURA_MARKETPLACE_ROOT@"
|
|
CuraDigitalFactoryURL = "@CURA_DIGITAL_FACTORY_URL@"
|