diff --git a/CHANGELOG.md b/CHANGELOG.md index cea2f84..7db7422 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.08.12] - 2026-02-20 + +### Changed +- **Bot-Nachrichtenversand ohne ACK**: `sendText()` verwendet jetzt `wantAck=False` – + Nachrichten werden einmal gesendet ohne auf Bestätigung zu warten und ohne Retry-Logik. + Sinnvoll für Broadcasts und periodische Status-Meldungen; reduziert ACK-Pakete im Netz (closes #14). + ## [0.08.11] - 2026-02-20 ### Fixed diff --git a/config.yaml b/config.yaml index 8c3a8dd..2944c6f 100644 --- a/config.yaml +++ b/config.yaml @@ -1,4 +1,4 @@ -version: "0.08.11" +version: "0.08.12" bot: name: "MeshDD-Bot" diff --git a/meshbot/bot.py b/meshbot/bot.py index c264d00..f741cd9 100644 --- a/meshbot/bot.py +++ b/meshbot/bot.py @@ -468,7 +468,7 @@ class MeshBot: except Exception: logger.exception("Error storing sent message") try: - self.interface.sendText(msg, channelIndex=channel) + self.interface.sendText(msg, channelIndex=channel, wantAck=False) except Exception: logger.exception("Error sending text via radio")