diff --git a/README.md b/README.md index 52f1c1c..d3d352f 100644 --- a/README.md +++ b/README.md @@ -52,12 +52,9 @@ Requires **`python3.11`** or above. Clone the repo from GitHub: ```bash -git clone --recurse-submodules https://github.com/pablorevilla-meshtastic/meshview.git +git clone https://github.com/pablorevilla-meshtastic/meshview.git ``` -> **NOTE** -> It is important to include the `--recurse-submodules` flag or the meshtastic protobufs won't be included. - Create a Python virtual environment: ```bash diff --git a/meshview/templates/chat.html b/meshview/templates/chat.html index 29f7452..f72fbf4 100644 --- a/meshview/templates/chat.html +++ b/meshview/templates/chat.html @@ -56,7 +56,7 @@ {{ packet.payload }} {% if packet.raw_mesh_packet.decoded.reply_id %} - (Replying to: {{ packet.raw_mesh_packet.decoded.reply_id }}) + (Replying to: {{ packet.raw_mesh_packet.decoded.reply_id }}) {% endif %} diff --git a/meshview/templates/net.html b/meshview/templates/net.html index 4c5eeb7..0ce4917 100644 --- a/meshview/templates/net.html +++ b/meshview/templates/net.html @@ -15,13 +15,16 @@ .chat-packet:nth-of-type(even){ background-color: #333333; /* Slightly lighter than the previous #181818 */ } - {% endblock %} -{% block body %} -
{{ site_config["site"]["weekly_net_message"] }}

-
-
+{% block body %} +
+ {{ site_config["site"]["weekly_net_message"] }}

+ +
Number of Check-ins: {{ packets|length }}
+
+ +
{% for packet in packets %}
{{packet.pretty_payload}}
{% endif %} {% if packet.raw_mesh_packet and packet.raw_mesh_packet.decoded and packet.raw_mesh_packet.decoded.reply_id %} - Reply ID: {{ packet.raw_mesh_packet.decoded.reply_id }} + (Replying to: {{ packet.raw_mesh_packet.decoded.reply_id }}) {% endif %} {% if packet.raw_mesh_packet.decoded and packet.raw_mesh_packet.decoded.portnum == 70 %}