Rename project from ICRS to ICRA
This commit is contained in:
+2
-2
@@ -1,5 +1,5 @@
|
||||
"""Application package."""
|
||||
|
||||
from .app import ICRSApp, start_app
|
||||
from .app import ICRAApp, start_app
|
||||
|
||||
__all__ = ["ICRSApp", "start_app"]
|
||||
__all__ = ["ICRAApp", "start_app"]
|
||||
|
||||
+4
-4
@@ -8,7 +8,7 @@ from .gui import ColorPickerMixin, ExclusionMixin, ThemeMixin, UIBuilderMixin
|
||||
from .logic import DEFAULTS, ImageProcessingMixin, ResetMixin
|
||||
|
||||
|
||||
class ICRSApp(
|
||||
class ICRAApp(
|
||||
ThemeMixin,
|
||||
UIBuilderMixin,
|
||||
ImageProcessingMixin,
|
||||
@@ -20,7 +20,7 @@ class ICRSApp(
|
||||
|
||||
def __init__(self, root: tk.Tk):
|
||||
self.root = root
|
||||
self.root.title("ICRS — Interactive Color Range Analyzer")
|
||||
self.root.title("ICRA — Interactive Color Range Analyzer")
|
||||
self._setup_window()
|
||||
|
||||
# Theme and styling
|
||||
@@ -71,8 +71,8 @@ class ICRSApp(
|
||||
def start_app() -> None:
|
||||
"""Entry point used by the CLI script."""
|
||||
root = tk.Tk()
|
||||
app = ICRSApp(root)
|
||||
app = ICRAApp(root)
|
||||
root.mainloop()
|
||||
|
||||
|
||||
__all__ = ["ICRSApp", "start_app"]
|
||||
__all__ = ["ICRAApp", "start_app"]
|
||||
|
||||
+1
-1
@@ -374,7 +374,7 @@ class UIBuilderMixin:
|
||||
|
||||
title_label = tk.Label(
|
||||
title_bar,
|
||||
text="ICRS — Interactive Color Range Analyzer",
|
||||
text="ICRA — Interactive Color Range Analyzer",
|
||||
bg=bar_bg,
|
||||
fg="#f5f5f5",
|
||||
font=("Segoe UI", 11, "bold"),
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
"""Launcher ensuring Tcl/Tk resources are available before starting ICRS."""
|
||||
"""Launcher ensuring Tcl/Tk resources are available before starting ICRA."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
|
||||
Reference in New Issue
Block a user