mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-03-28 17:42:45 +01:00
Fix critical bug in private message logging that prevented proper DM tracking.
Previous version (1.3.11) logged sent private messages with incomplete data:
- Missing recipient information
- Only included sender name in 'name' field
- Format: {"type": "SENT_MSG", "name": "MarWoj", "text": "...", ...}
Updated version (1.3.12) includes both sender and recipient:
- Added 'recipient' field with recipient's device name
- Added 'sender' field with sender's name
- Format: {"type": "SENT_MSG", "recipient": "SP7UNR_tdeck", "sender": "MarWoj", "name": "SP7UNR_tdeck", ...}
This fix enables proper message tracking in the DM module, as it now correctly
identifies both parties in private message exchanges.
Fix requested from meshcore-cli maintainers and implemented in v1.3.12.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
29 lines
593 B
Docker
29 lines
593 B
Docker
# MeshCore Bridge Dockerfile
|
|
FROM python:3.11-slim
|
|
|
|
LABEL maintainer="mc-webui"
|
|
LABEL description="MeshCore CLI Bridge - HTTP API wrapper for meshcli"
|
|
|
|
WORKDIR /bridge
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
gcc \
|
|
python3-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install meshcore-cli (from PyPI)
|
|
RUN pip install --no-cache-dir meshcore-cli==1.3.12
|
|
|
|
# Copy bridge application
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY bridge.py .
|
|
|
|
# Expose bridge API port
|
|
EXPOSE 5001
|
|
|
|
# Run bridge
|
|
CMD ["python", "bridge.py"]
|