diff --git a/.gitignore b/.gitignore index 1d30efb..00bd372 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,5 @@ client.log settings.log config.json default_config.log -dist/ \ No newline at end of file +dist/ +.vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json index fe2dc5b..d0b7a9c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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"] } ] } diff --git a/contact/ui/splash.py b/contact/ui/splash.py index cce0584..83052a8 100644 --- a/contact/ui/splash.py +++ b/contact/ui/splash.py @@ -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()