Compare commits

...

2 Commits

Author SHA1 Message Date
pdxlocations
1362d3a219 bump version 2025-06-10 10:02:04 -07:00
pdxlocations
981d72e688 fix backspace 2025-06-10 10:01:44 -07:00
2 changed files with 3 additions and 2 deletions

View File

@@ -144,7 +144,7 @@ def main_ui(stdscr: curses.window) -> None:
handle_ctrl_t(stdscr)
elif char in (curses.KEY_BACKSPACE, chr(127)):
handle_backspace(entry_win, input_text)
input_text = handle_backspace(entry_win, input_text)
elif char == "`": # ` Launch the settings interface
handle_backtick(stdscr)
@@ -351,6 +351,7 @@ def handle_backspace(entry_win: curses.window, input_text: str) -> None:
entry_win.addch(" ") #
entry_win.move(y, x - 1)
entry_win.refresh()
return input_text
def handle_backtick(stdscr: curses.window) -> None:

View File

@@ -1,6 +1,6 @@
[project]
name = "contact"
version = "1.3.10"
version = "1.3.12"
description = "This Python curses client for Meshtastic is a terminal-based client designed to manage device settings, enable mesh chat communication, and handle configuration backups and restores."
authors = [
{name = "Ben Lipsey",email = "ben@pdxlocations.com"}