Compare commits

...

3 Commits

Author SHA1 Message Date
pdxlocations
0701111f2d bump version 2025-01-15 07:54:08 -08:00
pdxlocations
62a847a565 change db filepath to save in app directory 2025-01-15 07:48:57 -08:00
pdxlocations
457e1a66fe typo 2025-01-14 22:25:39 -08:00
2 changed files with 8 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
import os
app_directory = os.path.dirname(os.path.abspath(__file__))
db_file_path = os.path.join(app_directory, "client.db")
all_messages = {}
channel_list = []
notifications = set()
@@ -9,7 +14,6 @@ selected_node = 0
current_window = 0
interface = None
display_log = False
db_file_path = "client.db"
message_prefix = ">>"
sent_message_prefix = message_prefix + " Sent"
notification_symbol = "*"
notification_symbol = "*"

View File

@@ -1,9 +1,9 @@
#!/usr/bin/env python3
'''
Curses Client for Meshtastic by http://github.com/pdxlocations
Contact - A Console UI for Meshtastic by http://github.com/pdxlocations
Powered by Meshtastic.org
V 1.0.0
V 1.0.1
'''
import curses