Overhual entire codebase part 1

- Big UI/UX changes
- Improved Config parser
- Some minor improvements and changes
This commit is contained in:
2025-11-30 19:09:08 -06:00
parent 919d191e61
commit c65cb04da9
29 changed files with 2324 additions and 1184 deletions

View File

@@ -1,15 +1,15 @@
from cx_Freeze import setup, Executable
setup(
name='ReticulumMeshChat',
name='ReticulumMeshChatX',
version='1.0.0',
description='A simple mesh network communications app powered by the Reticulum Network Stack',
executables=[
Executable(
script='meshchat.py', # this script to run
base=None, # we are running a console application, not a gui
target_name='ReticulumMeshChat', # creates ReticulumMeshChat.exe
shortcut_name='ReticulumMeshChat', # name shown in shortcut
target_name='ReticulumMeshChatX', # creates ReticulumMeshChatX.exe
shortcut_name='ReticulumMeshChatX', # name shown in shortcut
shortcut_dir='ProgramMenuFolder', # put the shortcut in windows start menu
icon='logo/icon.ico', # set the icon for the exe
copyright='Copyright (c) 2024 Liam Cottle',