Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-06-27 14:51:50 +0300
committerJelle Spijker <j.spijker@ultimaker.com>2022-06-27 14:51:50 +0300
commit62aacc59463a8287366b51ba9c78307f884fa825 (patch)
tree3dfcab2e7efcaf098734ca5ca7370b099007a133 /cura
parentfab8598a05765860159b8cbc08da79de92379eec (diff)
Initial set-up of deploy functionality
Contributes to CURA-9365
Diffstat (limited to 'cura')
-rw-r--r--cura/CuraVersion.py.in13
-rw-r--r--cura/CuraVersion.py.jinja13
2 files changed, 0 insertions, 26 deletions
diff --git a/cura/CuraVersion.py.in b/cura/CuraVersion.py.in
deleted file mode 100644
index ce2264f5fc..0000000000
--- a/cura/CuraVersion.py.in
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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@"
diff --git a/cura/CuraVersion.py.jinja b/cura/CuraVersion.py.jinja
deleted file mode 100644
index 1c30a0b5af..0000000000
--- a/cura/CuraVersion.py.jinja
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright (c) 2022 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_build_type }}"
-CuraDebugMode = {{ cura_debug_mode }}
-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 }}"