shortens imports and helps with auto imports from IDE Signed-off-by: Dominik Willner <th33xitus@gmail.com>
28 lines
1.3 KiB
Python
28 lines
1.3 KiB
Python
#!/usr/bin/env python3
|
|
|
|
# ======================================================================= #
|
|
# Copyright (C) 2020 - 2024 Dominik Willner <th33xitus@gmail.com> #
|
|
# #
|
|
# This file is part of KIAUH - Klipper Installation And Update Helper #
|
|
# https://github.com/dw-0/kiauh #
|
|
# #
|
|
# This file may be distributed under the terms of the GNU GPLv3 license #
|
|
# ======================================================================= #
|
|
|
|
from pathlib import Path
|
|
|
|
from core.backup_manager import BACKUP_ROOT_DIR
|
|
|
|
MODULE_PATH = Path(__file__).resolve().parent
|
|
MAINSAIL_DIR = Path.home().joinpath("mainsail")
|
|
MAINSAIL_BACKUP_DIR = BACKUP_ROOT_DIR.joinpath("mainsail-backups")
|
|
MAINSAIL_CONFIG_DIR = Path.home().joinpath("mainsail-config")
|
|
MAINSAIL_CONFIG_JSON = MAINSAIL_DIR.joinpath("config.json")
|
|
MAINSAIL_URL = (
|
|
"https://github.com/mainsail-crew/mainsail/releases/latest/download/mainsail.zip"
|
|
)
|
|
MAINSAIL_UNSTABLE_URL = (
|
|
"https://github.com/mainsail-crew/mainsail/releases/download/%TAG%/mainsail.zip"
|
|
)
|
|
MAINSAIL_CONFIG_REPO_URL = "https://github.com/mainsail-crew/mainsail-config.git"
|