|
@@ -128,8 +128,9 @@ if TYPE_CHECKING:
|
|
|
numpy.seterr(all = "ignore")
|
|
|
|
|
|
try:
|
|
|
- from cura.CuraVersion import CuraVersion, CuraBuildType, CuraDebugMode, CuraSDKVersion
|
|
|
+ from cura.CuraVersion import CuraAppDisplayName, CuraVersion, CuraBuildType, CuraDebugMode, CuraSDKVersion
|
|
|
except ImportError:
|
|
|
+ CuraAppDisplayName = "Ultimaker Cura"
|
|
|
CuraVersion = "master" # [CodeStyle: Reflecting imported value]
|
|
|
CuraBuildType = ""
|
|
|
CuraDebugMode = False
|
|
@@ -161,7 +162,7 @@ class CuraApplication(QtApplication):
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
super().__init__(name = "cura",
|
|
|
- app_display_name = "Ultimaker Cura",
|
|
|
+ app_display_name = CuraAppDisplayName,
|
|
|
version = CuraVersion,
|
|
|
buildtype = CuraBuildType,
|
|
|
is_debug_mode = CuraDebugMode,
|