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
diff options
context:
space:
mode:
Diffstat (limited to 'cura_app.py')
-rwxr-xr-xcura_app.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/cura_app.py b/cura_app.py
index 8df12d771a..bd6136f982 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -20,13 +20,18 @@ parser.add_argument("--debug",
known_args = vars(parser.parse_known_args()[0])
if not known_args["debug"]:
+ try:
+ from cura.CuraVersion import CuraAppName # type: ignore
+ except ImportError:
+ CuraAppName = "cura"
+
def get_cura_dir_path():
if Platform.isWindows():
- return os.path.expanduser("~/AppData/Roaming/cura")
+ return os.path.expanduser("~/AppData/Roaming/" + CuraAppName)
elif Platform.isLinux():
- return os.path.expanduser("~/.local/share/cura")
+ return os.path.expanduser("~/.local/share/" + CuraAppName)
elif Platform.isOSX():
- return os.path.expanduser("~/Library/Logs/cura")
+ return os.path.expanduser("~/Library/Logs/" + CuraAppName)
if hasattr(sys, "frozen"):
dirpath = get_cura_dir_path()