feat: v0.3.11 - Move send input to separate card above main panels

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ppfeiffer 2026-02-16 17:48:51 +01:00
parent 16465eb8f6
commit 211b338b23
3 changed files with 18 additions and 10 deletions

View file

@ -1,5 +1,10 @@
# Changelog # Changelog
## [0.3.11] - 2026-02-16
### Changed
- Sende-Zeile als eigene Card mit gruener Oberkante oberhalb der Nodes/Nachrichten-Cards
- Nachrichten-Card ohne Footer (schlanker)
## [0.3.10] - 2026-02-16 ## [0.3.10] - 2026-02-16
### Added ### Added
- Gesendete Bot-Nachrichten werden im Nachrichtenfenster angezeigt - Gesendete Bot-Nachrichten werden im Nachrichtenfenster angezeigt

View file

@ -1,4 +1,4 @@
version: "0.3.10" version: "0.3.11"
bot: bot:
name: "MeshDD-Bot" name: "MeshDD-Bot"

View file

@ -97,6 +97,18 @@
</div> </div>
</div> </div>
<!-- Send Message -->
<div class="card card-outline card-success mb-2">
<div class="card-body py-2 px-2">
<div class="input-group input-group-sm">
<span class="input-group-text"><i class="bi bi-send-fill"></i></span>
<select class="form-select form-select-sm" id="sendChannel" style="max-width:110px"></select>
<input type="text" class="form-control form-control-sm" id="sendText" placeholder="Nachricht senden...">
<button class="btn btn-success btn-sm" id="btnSend" type="button">Senden</button>
</div>
</div>
</div>
<!-- Main Cards --> <!-- Main Cards -->
<div class="row g-2"> <div class="row g-2">
<!-- Nodes --> <!-- Nodes -->
@ -133,15 +145,6 @@
<div class="card-body p-0" style="max-height:520px;overflow-y:auto"> <div class="card-body p-0" style="max-height:520px;overflow-y:auto">
<div id="messagesList"></div> <div id="messagesList"></div>
</div> </div>
<div class="card-footer py-2 px-2">
<div class="input-group input-group-sm">
<select class="form-select form-select-sm" id="sendChannel" style="max-width:110px"></select>
<input type="text" class="form-control form-control-sm" id="sendText" placeholder="Nachricht senden...">
<button class="btn btn-info btn-sm" id="btnSend" type="button">
<i class="bi bi-send-fill"></i>
</button>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>