Update .gitignore and launch.json for debugging configurations; adjust splash screen layout

This commit is contained in:
pdxlocations
2025-10-22 07:53:51 -07:00
parent ea33b78af0
commit b225d5fe51
3 changed files with 13 additions and 2 deletions

3
.gitignore vendored
View File

@@ -8,4 +8,5 @@ client.log
settings.log
config.json
default_config.log
dist/
dist/
.vscode/launch.json

11
.vscode/launch.json vendored
View File

@@ -1,13 +1,22 @@
{
"version": "0.1.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"name": "Python Debugger: main",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "contact.__main__",
"args": []
},
{
"name": "Python Debugger: tcp",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "contact.__main__",
"args": ["--host","192.168.86.69"]
}
]
}

View File

@@ -22,6 +22,7 @@ def draw_splash(stdscr: object) -> None:
stdscr.addstr(start_y + 1, start_x - 1, message_2, get_color("splash_logo", bold=True))
stdscr.addstr(start_y + 2, start_x - 2, message_3, get_color("splash_logo", bold=True))
stdscr.addstr(start_y + 4, start_x2, message_4, get_color("splash_text"))
stdscr.move(start_y + 6, 0)
stdscr.attrset(get_color("window_frame"))
stdscr.box()