[PR #187] [CLOSED] Feature/164 #948

Closed
opened 2026-05-06 12:34:07 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/maziggy/bambuddy/pull/187
Author: @maziggy
Created: 1/30/2026
Status: Closed

Base: mainHead: feature/164


📝 Commits (10+)

  • fe35c1d Bumped version number
  • 40c672b Changed version
  • 5672d79 Add recalculate costs button and reprint cost tracking
  • bda659e Fix status indicators using accent color instead of semantic colors
  • d56206c Fix empty archive tiles on P2S printer
  • 721eab1 Fix HA energy sensors not detected due to case-sensitive unit matching
  • 8ba04df Add ZIP folder creation option and improve camera zoom/pan (#121, #132)
  • e0e53cb Add multi-file selection and bulk download to printer file browser
  • 691fb13 Add external network camera support for printers
  • 2669eab Fixed bug where file manager's upload dialog only allowed zip files for selection

📊 Changes

120 files changed (+23789 additions, -10853 deletions)

View changed files

📝 .github/workflows/ci.yml (+11 -11)
📝 .gitignore (+3 -1)
📝 .pre-commit-config.yaml (+1 -1)
=2.8.0 (+0 -5)
📝 CHANGELOG.md (+141 -0)
📝 README.md (+11 -0)
📝 backend/app/api/routes/archives.py (+1 -0)
📝 backend/app/api/routes/camera.py (+442 -7)
📝 backend/app/api/routes/cloud.py (+36 -2)
backend/app/api/routes/github_backup.py (+319 -0)
📝 backend/app/api/routes/library.py (+37 -6)
backend/app/api/routes/metrics.py (+418 -0)
📝 backend/app/api/routes/notifications.py (+4 -0)
📝 backend/app/api/routes/print_queue.py (+51 -0)
📝 backend/app/api/routes/printers.py (+77 -1)
📝 backend/app/api/routes/projects.py (+396 -1)
📝 backend/app/api/routes/settings.py (+189 -1)
📝 backend/app/core/config.py (+9 -2)
📝 backend/app/core/database.py (+112 -16)
📝 backend/app/main.py (+523 -72)

...and 80 more files

📄 Description

Streaming overlay page for OBS integration (#164)

Add a dedicated overlay page at /overlay/:printerId that combines
camera feed with real-time print status for live streaming use cases.

Features:

  • Camera feed as fullscreen background
  • Status overlay at bottom with gradient for readability
  • Real-time updates via WebSocket with polling fallback
  • Customizable via query params (?size=large&show=progress,eta)

Closes #164


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/maziggy/bambuddy/pull/187 **Author:** [@maziggy](https://github.com/maziggy) **Created:** 1/30/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/164` --- ### 📝 Commits (10+) - [`fe35c1d`](https://github.com/maziggy/bambuddy/commit/fe35c1d134c31356890bb0350a4d71f04c73ac8a) Bumped version number - [`40c672b`](https://github.com/maziggy/bambuddy/commit/40c672b1b9e2072c44087fa07c3100e5415ab774) Changed version - [`5672d79`](https://github.com/maziggy/bambuddy/commit/5672d7965ad1a58bb45835d4340668f399ecae6c) Add recalculate costs button and reprint cost tracking - [`bda659e`](https://github.com/maziggy/bambuddy/commit/bda659e11d3db522a1820794471cb046d3a9918f) Fix status indicators using accent color instead of semantic colors - [`d56206c`](https://github.com/maziggy/bambuddy/commit/d56206cbac231d809e64fda2b138e786445cad11) Fix empty archive tiles on P2S printer - [`721eab1`](https://github.com/maziggy/bambuddy/commit/721eab1f6771056d1890a254aa047ce00961d265) Fix HA energy sensors not detected due to case-sensitive unit matching - [`8ba04df`](https://github.com/maziggy/bambuddy/commit/8ba04dfa8968e35a2a4d36579e296d902669b835) Add ZIP folder creation option and improve camera zoom/pan (#121, #132) - [`e0e53cb`](https://github.com/maziggy/bambuddy/commit/e0e53cb680866566de04d4e298bf753efaa65d0e) Add multi-file selection and bulk download to printer file browser - [`691fb13`](https://github.com/maziggy/bambuddy/commit/691fb133b75a1b724241f63279a9f20f529963e1) Add external network camera support for printers - [`2669eab`](https://github.com/maziggy/bambuddy/commit/2669eabe2b2bd11bf44c39b2214d35509afa23f4) Fixed bug where file manager's upload dialog only allowed zip files for selection ### 📊 Changes **120 files changed** (+23789 additions, -10853 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+11 -11) 📝 `.gitignore` (+3 -1) 📝 `.pre-commit-config.yaml` (+1 -1) ➖ `=2.8.0` (+0 -5) 📝 `CHANGELOG.md` (+141 -0) 📝 `README.md` (+11 -0) 📝 `backend/app/api/routes/archives.py` (+1 -0) 📝 `backend/app/api/routes/camera.py` (+442 -7) 📝 `backend/app/api/routes/cloud.py` (+36 -2) ➕ `backend/app/api/routes/github_backup.py` (+319 -0) 📝 `backend/app/api/routes/library.py` (+37 -6) ➕ `backend/app/api/routes/metrics.py` (+418 -0) 📝 `backend/app/api/routes/notifications.py` (+4 -0) 📝 `backend/app/api/routes/print_queue.py` (+51 -0) 📝 `backend/app/api/routes/printers.py` (+77 -1) 📝 `backend/app/api/routes/projects.py` (+396 -1) 📝 `backend/app/api/routes/settings.py` (+189 -1) 📝 `backend/app/core/config.py` (+9 -2) 📝 `backend/app/core/database.py` (+112 -16) 📝 `backend/app/main.py` (+523 -72) _...and 80 more files_ </details> ### 📄 Description Streaming overlay page for OBS integration (#164) Add a dedicated overlay page at /overlay/:printerId that combines camera feed with real-time print status for live streaming use cases. Features: - Camera feed as fullscreen background - Status overlay at bottom with gradient for readability - Real-time updates via WebSocket with polling fallback - Customizable via query params (?size=large&show=progress,eta) Closes #164 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 12:34:08 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/bambuddy#948
No description provided.