Rename app to Copyrka in UI/build

This commit is contained in:
2026-02-20 11:57:52 +03:00
parent a3acc60e76
commit 9a557e6754
3 changed files with 6 additions and 5 deletions

View File

@@ -33,9 +33,9 @@ except Exception:
DEFAULT_EXTENSIONS = ('*.bak', '*.BAK', '*.backup', '*.sql')
AUTOSTART_REG_PATH = r"Software\Microsoft\Windows\CurrentVersion\Run"
AUTOSTART_REG_NAME = "BackupCopier"
AUTOSTART_REG_NAME = "Copyrka"
ICON_PATH = "icon.ico"
APP_NAME = "BackupCopier"
APP_NAME = "Copyrka"
COPY_RETRIES = 2
COPY_RETRY_DELAY = 2
DEFAULT_MIN_FREE_GB = 1
@@ -248,7 +248,7 @@ class FileCopyScheduler:
class BackgroundFileCopyApp:
def __init__(self, root):
self.root = root
self.root.title("Планировщик копирования бекапов")
self.root.title("Копирка")
self.root.geometry("900x800")
self.root.minsize(900, 700)
self.setup_window_icon()
@@ -345,7 +345,7 @@ class BackgroundFileCopyApp:
notebook.add(log_tab, text="Лог")
notebook.add(help_tab, text="Справка")
title_label = ttk.Label(settings_tab, text="Планировщик копирования бекапов",
title_label = ttk.Label(settings_tab, text="Копирка",
font=("Arial", 14, "bold"))
title_label.pack(pady=8)