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:
parent
16465eb8f6
commit
211b338b23
|
|
@ -1,5 +1,10 @@
|
|||
# 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
|
||||
### Added
|
||||
- Gesendete Bot-Nachrichten werden im Nachrichtenfenster angezeigt
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
version: "0.3.10"
|
||||
version: "0.3.11"
|
||||
|
||||
bot:
|
||||
name: "MeshDD-Bot"
|
||||
|
|
|
|||
|
|
@ -97,6 +97,18 @@
|
|||
</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 -->
|
||||
<div class="row g-2">
|
||||
<!-- Nodes -->
|
||||
|
|
@ -133,15 +145,6 @@
|
|||
<div class="card-body p-0" style="max-height:520px;overflow-y:auto">
|
||||
<div id="messagesList"></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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue