v0.1.32: Fix scan functionality and add debug logging
- Fixed scan functionality not showing output by ensuring JavaScript is properly injected - Added default hint text to scan results area - Added comprehensive debug console logging to help diagnose scan issues - Improved scan section injection logic - Updated version to 0.1.32 in all files Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
@@ -5,6 +5,17 @@ All notable changes to this project are documented in this file.
|
|||||||
The format is based on Keep a Changelog and this project uses Semantic Versioning.
|
The format is based on Keep a Changelog and this project uses Semantic Versioning.
|
||||||
|
|
||||||
|
|
||||||
|
## [0.1.32] - 2026-03-18
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- **Web UI**: Fixed scan functionality not showing output by ensuring JavaScript is properly injected in all cases.
|
||||||
|
- **Web UI**: Added default hint text to scan results area for better user guidance.
|
||||||
|
- **Web UI**: Added comprehensive debug console logging to help diagnose scan issues.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- **Web UI**: Improved scan section injection logic to work with both `</main>` and `</body>` templates.
|
||||||
|
- **Web UI**: Enhanced error handling and user feedback in scan functionality.
|
||||||
|
|
||||||
## [0.1.31] - 2026-03-18
|
## [0.1.31] - 2026-03-18
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: "Fichero Printer"
|
name: "Fichero Printer"
|
||||||
version: "0.1.31"
|
version: "0.1.32"
|
||||||
slug: "fichero_printer"
|
slug: "fichero_printer"
|
||||||
description: "REST API for the Fichero D11s (AiYin) thermal label printer over Bluetooth"
|
description: "REST API for the Fichero D11s (AiYin) thermal label printer over Bluetooth"
|
||||||
url: "https://git.leuschner.dev/Tobias/Fichero"
|
url: "https://git.leuschner.dev/Tobias/Fichero"
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ async def lifespan(app: FastAPI): # noqa: ARG001
|
|||||||
app = FastAPI(
|
app = FastAPI(
|
||||||
title="Fichero Printer API",
|
title="Fichero Printer API",
|
||||||
description="REST API for the Fichero D11s (AiYin) thermal label printer.",
|
description="REST API for the Fichero D11s (AiYin) thermal label printer.",
|
||||||
version = "0.1.31",
|
version = "0.1.32",
|
||||||
lifespan=lifespan,
|
lifespan=lifespan,
|
||||||
docs_url=None,
|
docs_url=None,
|
||||||
redoc_url=None,
|
redoc_url=None,
|
||||||
@@ -130,23 +130,28 @@ def _ui_html() -> str:
|
|||||||
<span class="loading" id="scan-loading" style="display: none;"></span>
|
<span class="loading" id="scan-loading" style="display: none;"></span>
|
||||||
<span id="scan-text">Scan for BLE Devices (10s)</span>
|
<span id="scan-text">Scan for BLE Devices (10s)</span>
|
||||||
</button>
|
</button>
|
||||||
<pre id="scan-results"></pre>
|
<pre id="scan-results">📱 Click "Scan for BLE Devices" to search for nearby Bluetooth devices...</pre>
|
||||||
</div>
|
</div>
|
||||||
"""
|
"""
|
||||||
scan_script = r'''
|
scan_script = r'''
|
||||||
<script>
|
<script>
|
||||||
async function scanForDevices() {
|
async function scanForDevices() {
|
||||||
|
console.log('Scan function called - checking elements...');
|
||||||
const resultsEl = document.getElementById('scan-results');
|
const resultsEl = document.getElementById('scan-results');
|
||||||
const scanButton = document.getElementById('scan-button');
|
const scanButton = document.getElementById('scan-button');
|
||||||
const loadingEl = document.getElementById('scan-loading');
|
const loadingEl = document.getElementById('scan-loading');
|
||||||
const textEl = document.getElementById('scan-text');
|
const textEl = document.getElementById('scan-text');
|
||||||
|
|
||||||
|
console.log('Elements found:', { resultsEl, scanButton, loadingEl, textEl });
|
||||||
|
|
||||||
// Show loading state
|
// Show loading state
|
||||||
scanButton.disabled = true;
|
scanButton.disabled = true;
|
||||||
loadingEl.style.display = 'inline-block';
|
loadingEl.style.display = 'inline-block';
|
||||||
textEl.textContent = 'Scanning...';
|
textEl.textContent = 'Scanning...';
|
||||||
resultsEl.textContent = '🔍 Searching for BLE devices (this may take up to 10 seconds)...';
|
resultsEl.textContent = '🔍 Searching for BLE devices (this may take up to 10 seconds)...';
|
||||||
|
|
||||||
|
console.log('Starting scan request...');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const response = await fetch('/scan');
|
const response = await fetch('/scan');
|
||||||
|
|
||||||
@@ -175,9 +180,11 @@ def _ui_html() -> str:
|
|||||||
console.error('Scan error:', e);
|
console.error('Scan error:', e);
|
||||||
} finally {
|
} finally {
|
||||||
// Reset button state
|
// Reset button state
|
||||||
|
console.log('Resetting button state...');
|
||||||
scanButton.disabled = false;
|
scanButton.disabled = false;
|
||||||
loadingEl.style.display = 'none';
|
loadingEl.style.display = 'none';
|
||||||
textEl.textContent = 'Scan for BLE Devices (10s)';
|
textEl.textContent = 'Scan for BLE Devices (10s)';
|
||||||
|
console.log('Scan completed. Final result:', resultsEl.textContent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@@ -185,7 +192,7 @@ def _ui_html() -> str:
|
|||||||
# Inject after the main content but before scripts
|
# Inject after the main content but before scripts
|
||||||
if "</main>" in template:
|
if "</main>" in template:
|
||||||
parts = template.split("</main>", 1)
|
parts = template.split("</main>", 1)
|
||||||
template = parts[0] + "</main>" + scan_html + parts[1]
|
template = parts[0] + "</main>" + scan_html + scan_script + parts[1]
|
||||||
elif "</body>" in template:
|
elif "</body>" in template:
|
||||||
parts = template.split("</body>", 1)
|
parts = template.split("</body>", 1)
|
||||||
template = parts[0] + scan_html + scan_script + "</body>" + parts[1]
|
template = parts[0] + scan_html + scan_script + "</body>" + parts[1]
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "fichero-printer"
|
name = "fichero-printer"
|
||||||
version = "0.1.31"
|
version = "0.1.32"
|
||||||
description = "Web GUI, Python CLI, and protocol documentation for the Fichero D11s thermal label printer."
|
description = "Web GUI, Python CLI, and protocol documentation for the Fichero D11s thermal label printer."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
|
|||||||
Reference in New Issue
Block a user