mirror of
https://github.com/pdxlocations/contact.git
synced 2026-05-01 02:52:16 +02:00
26 lines
589 B
Python
26 lines
589 B
Python
import os
|
|
|
|
app_directory = os.path.dirname(os.path.abspath(__file__))
|
|
db_file_path = os.path.join(app_directory, "client.db")
|
|
log_file_path = os.path.join(app_directory, "client.log")
|
|
|
|
all_messages = {}
|
|
channel_list = []
|
|
notifications = set()
|
|
packet_buffer = []
|
|
myNodeNum = 0
|
|
selected_channel = 0
|
|
selected_message = 0
|
|
selected_node = 0
|
|
current_window = 0
|
|
interface = None
|
|
display_log = False
|
|
message_prefix = ">>"
|
|
sent_message_prefix = message_prefix + " Sent"
|
|
ack_implicit_str = "[◌]"
|
|
ack_str = "[✓]"
|
|
nak_str = "[x]"
|
|
ack_unknown_str = "[…]"
|
|
notification_symbol = "*"
|
|
node_list = []
|