feat: Add window title configuration and update related components and tests

This commit is contained in:
claudi 2026-01-30 11:28:23 +01:00
parent c621e63a8d
commit 8e97f85c64
8 changed files with 13 additions and 1 deletions

View file

@ -246,6 +246,7 @@ class TestConfigExporter:
webapp_url="http://localhost:8080",
window_width=800,
window_height=600,
window_title="WebDrop Bridge v1.0.0",
enable_logging=True,
)

View file

@ -32,6 +32,7 @@ def sample_config(tmp_path):
webapp_url=str(webapp_file),
window_width=800,
window_height=600,
window_title="Test WebDrop v1.0.0",
enable_logging=False,
)
return config

View file

@ -22,6 +22,7 @@ def sample_config(tmp_path):
webapp_url="http://localhost:8080",
window_width=800,
window_height=600,
window_title="WebDrop Bridge v1.0.0",
enable_logging=True,
)

View file

@ -22,6 +22,7 @@ def sample_config(tmp_path):
webapp_url="file:///./webapp/index.html",
window_width=800,
window_height=600,
window_title="Test WebDrop v1.0.0",
enable_logging=False,
)