feat(gui): Rename Context Hub to Project Settings

- gui_2.py: Window title changed to 'Project Settings'
- app_controller.py: show_windows key updated
- Updated tests to reference new name
This commit is contained in:
2026-03-22 12:57:49 -04:00
parent f5d4913da2
commit 2ed9867e39
6 changed files with 31 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ def test_new_hubs_defined_in_show_windows(mock_app: App) -> None:
This ensures they will be available in the 'Windows' menu.
"""
expected_hubs = [
"Context Hub",
"Project Settings",
"AI Settings",
"Discussion Hub",
"Operations Hub",
@@ -53,7 +53,7 @@ def test_hub_windows_exist_in_gui2(app_instance_simple: Any) -> None:
"""
Verifies that the new Hub windows are present in the show_windows dictionary.
"""
hubs = ["Context Hub", "AI Settings", "Discussion Hub", "Operations Hub"]
hubs = ["Project Settings", "AI Settings", "Discussion Hub", "Operations Hub"]
for hub in hubs:
assert hub in app_instance_simple.show_windows