Skip to content

Commit e2e06fb

Browse files
fix: rename display strings from "FlameConnect" to "Flame Connect" (#72)
* Initial plan * fix: replace \"FlameConnect\" with \"Flame Connect\" in UI and documentation strings Co-authored-by: deviantintegral <255023+deviantintegral@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: deviantintegral <255023+deviantintegral@users.noreply.github.com>
1 parent 1dc5531 commit e2e06fb

14 files changed

Lines changed: 18 additions & 18 deletions

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# 🔥 FlameConnect
1+
# 🔥 Flame Connect for Python
22

33
[![CI](https://github.com/deviantintegral/flameconnect/actions/workflows/ci.yml/badge.svg)](https://github.com/deviantintegral/flameconnect/actions/workflows/ci.yml)
44
[![PyPI](https://img.shields.io/pypi/v/flameconnect)](https://pypi.org/project/flameconnect/)
55
[![Python](https://img.shields.io/pypi/pyversions/flameconnect)](https://pypi.org/project/flameconnect/)
66

77
Async Python library for controlling Dimplex, Faber, and Real Flame fireplaces via the Flame Connect cloud API.
88

9-
![FlameConnect TUI](images/flameconnect-0.1.0.png)
9+
![Flame Connect TUI](images/flameconnect-0.1.0.png)
1010

1111
> 🏠 Looking for a Home Assistant integration? Try the [flame_connect_ha custom component](https://github.com/deviantintegral/flame_connect_ha).
1212
@@ -63,7 +63,7 @@ asyncio.run(main())
6363

6464
## Authentication
6565

66-
FlameConnect supports two authentication modes depending on your use case.
66+
Flame Connect supports two authentication modes depending on your use case.
6767

6868
### Standalone (CLI / TUI)
6969

src/flameconnect/tui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Textual TUI for FlameConnect."""
1+
"""Textual TUI for Flame Connect."""
22

33
from __future__ import annotations
44

src/flameconnect/tui/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Main Textual application for the FlameConnect TUI."""
1+
"""Main Textual application for the Flame Connect TUI."""
22

33
from __future__ import annotations
44

@@ -168,7 +168,7 @@ def _get_fireplace_commands() -> type[FireplaceCommandsProvider]:
168168
class FlameConnectApp(App[None]):
169169
"""Textual TUI application for monitoring and controlling fireplaces."""
170170

171-
TITLE = f"FlameConnect {_resolved_version}"
171+
TITLE = f"Flame Connect {_resolved_version}"
172172
CSS = _APP_CSS
173173
COMMANDS = App.COMMANDS | {_get_fireplace_commands}
174174

@@ -907,7 +907,7 @@ def action_toggle_temp_unit(self) -> None:
907907

908908

909909
async def run_tui(*, verbose: bool = False) -> None:
910-
"""Launch the FlameConnect TUI dashboard.
910+
"""Launch the Flame Connect TUI dashboard.
911911
912912
Creates an authenticated client and runs the Textual application.
913913
The client session is managed via an async context manager.

src/flameconnect/tui/auth_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Authentication modal screen for the FlameConnect TUI."""
1+
"""Authentication modal screen for the Flame Connect TUI."""
22

33
from __future__ import annotations
44

src/flameconnect/tui/color_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Reusable RGBW colour picker modal for the FlameConnect TUI."""
1+
"""Reusable RGBW colour picker modal for the Flame Connect TUI."""
22

33
from __future__ import annotations
44

src/flameconnect/tui/fire_select_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Fire selection modal for the FlameConnect TUI."""
1+
"""Fire selection modal for the Flame Connect TUI."""
22

33
from __future__ import annotations
44

src/flameconnect/tui/flame_color_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Flame color selection modal for the FlameConnect TUI."""
1+
"""Flame color selection modal for the Flame Connect TUI."""
22

33
from __future__ import annotations
44

src/flameconnect/tui/flame_speed_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Flame speed selection modal for the FlameConnect TUI."""
1+
"""Flame speed selection modal for the Flame Connect TUI."""
22

33
from __future__ import annotations
44

src/flameconnect/tui/heat_mode_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Heat mode selection modal for the FlameConnect TUI."""
1+
"""Heat mode selection modal for the Flame Connect TUI."""
22

33
from __future__ import annotations
44

src/flameconnect/tui/media_theme_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Media theme selection modal for the FlameConnect TUI."""
1+
"""Media theme selection modal for the Flame Connect TUI."""
22

33
from __future__ import annotations
44

0 commit comments

Comments
 (0)