[PR #54] [MERGED] v0.1.6b6 #919

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

📋 Pull Request Information

Original PR: https://github.com/maziggy/bambuddy/pull/54
Author: @maziggy
Created: 1/4/2026
Status: Merged
Merged: 1/4/2026
Merged by: @maziggy

Base: mainHead: 0.1.6b7


📝 Commits (10+)

  • e356d03 - Added new settings tab Filament and moved Spoolman Sync card
  • 29f1fa9 - Improved Docker environment
  • ad40dfa - Minor fixes
  • 0f65fb9 - Bugfixes
  • 0213184 Updated screenshots
  • 61c8682 Fixed dark theme's logo
  • 83cbac0 - Add interactive API Browser to Settings > API Keys
  • 94c961d Add real-time fan status monitoring to printer cards
  • 74e2d95 Changed version to 0.1.6b6
  • d03fe75 Fixed bug in Spoolman sync

📊 Changes

181 files changed (+14698 additions, -11226 deletions)

View changed files

📝 CHANGELOG.md (+70 -1)
📝 Dockerfile (+10 -4)
📝 README.md (+34 -7)
📝 backend/app/api/routes/ams_history.py (+5 -6)
📝 backend/app/api/routes/api_keys.py (+6 -7)
📝 backend/app/api/routes/archives.py (+210 -55)
📝 backend/app/api/routes/camera.py (+88 -10)
📝 backend/app/api/routes/external_links.py (+14 -38)
📝 backend/app/api/routes/filaments.py (+103 -33)
📝 backend/app/api/routes/kprofiles.py (+5 -9)
📝 backend/app/api/routes/notification_templates.py (+9 -16)
📝 backend/app/api/routes/notifications.py (+40 -53)
📝 backend/app/api/routes/print_queue.py (+48 -29)
📝 backend/app/api/routes/printers.py (+84 -20)
📝 backend/app/api/routes/settings.py (+44 -2)
📝 backend/app/api/routes/system.py (+28 -33)
📝 backend/app/api/routes/webhook.py (+33 -35)
📝 backend/app/api/routes/websocket.py (+15 -10)
📝 backend/app/core/auth.py (+10 -19)
📝 backend/app/core/config.py (+1 -1)

...and 80 more files

📄 Description

v0.1.6b6

FEATURES

  • Resizable printer cards - Four sizes (Small, Medium, Large, XL) with persistent preference
  • Queue Only mode - Stage prints without automatic scheduling, manual release with play button
  • Virtual printer model selection - Choose from X1, P, A1, H2 series models with auto-restart on change
  • Pending upload delete confirmation - Confirmation modal when discarding pending uploads

Fixes

  • Camera stream reconnection - Improved stuck stream detection with automatic reconnection
  • Virtual printer SSDP model codes - Corrected C11=P1P, C12=P1S, N7=P2S
  • Virtual printer serial prefixes - Fixed to match actual Bambu Lab format
  • Virtual printer startup model - Now correctly loads saved model from database on restart
  • Virtual printer model change - Model changes auto-restart (no manual disable/enable needed)
  • Docker certificate persistence - Certificates correctly persist in bambuddy_data volume

🔄 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/54 **Author:** [@maziggy](https://github.com/maziggy) **Created:** 1/4/2026 **Status:** ✅ Merged **Merged:** 1/4/2026 **Merged by:** [@maziggy](https://github.com/maziggy) **Base:** `main` ← **Head:** `0.1.6b7` --- ### 📝 Commits (10+) - [`e356d03`](https://github.com/maziggy/bambuddy/commit/e356d03ee1a9e775fed262d092cb73a252446447) - Added new settings tab Filament and moved Spoolman Sync card - [`29f1fa9`](https://github.com/maziggy/bambuddy/commit/29f1fa9732ae3561f69526e9f9f10b47a145dc30) - Improved Docker environment - [`ad40dfa`](https://github.com/maziggy/bambuddy/commit/ad40dfa67f49906c44070bd3d8a91b9208fef6d7) - Minor fixes - [`0f65fb9`](https://github.com/maziggy/bambuddy/commit/0f65fb948489b7f3651b0b3f397d7cc7947470c7) - Bugfixes - [`0213184`](https://github.com/maziggy/bambuddy/commit/021318437db2894fc812645f956c2fee9072b7da) Updated screenshots - [`61c8682`](https://github.com/maziggy/bambuddy/commit/61c8682fa9d7036b97abb0bd5487deaea186d366) Fixed dark theme's logo - [`83cbac0`](https://github.com/maziggy/bambuddy/commit/83cbac04b7d0cbd7e3c79052bf0e49ab6dd8e1b6) - Add interactive API Browser to Settings > API Keys - [`94c961d`](https://github.com/maziggy/bambuddy/commit/94c961dbaf79b64bca3ac1f4673bf6898763a0b5) Add real-time fan status monitoring to printer cards - [`74e2d95`](https://github.com/maziggy/bambuddy/commit/74e2d95ea8054ba7dcb74a623fcaa5f9ef8d0662) Changed version to 0.1.6b6 - [`d03fe75`](https://github.com/maziggy/bambuddy/commit/d03fe7598f9772e29e299d4a77c5c08098ed1d2b) Fixed bug in Spoolman sync ### 📊 Changes **181 files changed** (+14698 additions, -11226 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+70 -1) 📝 `Dockerfile` (+10 -4) 📝 `README.md` (+34 -7) 📝 `backend/app/api/routes/ams_history.py` (+5 -6) 📝 `backend/app/api/routes/api_keys.py` (+6 -7) 📝 `backend/app/api/routes/archives.py` (+210 -55) 📝 `backend/app/api/routes/camera.py` (+88 -10) 📝 `backend/app/api/routes/external_links.py` (+14 -38) 📝 `backend/app/api/routes/filaments.py` (+103 -33) 📝 `backend/app/api/routes/kprofiles.py` (+5 -9) 📝 `backend/app/api/routes/notification_templates.py` (+9 -16) 📝 `backend/app/api/routes/notifications.py` (+40 -53) 📝 `backend/app/api/routes/print_queue.py` (+48 -29) 📝 `backend/app/api/routes/printers.py` (+84 -20) 📝 `backend/app/api/routes/settings.py` (+44 -2) 📝 `backend/app/api/routes/system.py` (+28 -33) 📝 `backend/app/api/routes/webhook.py` (+33 -35) 📝 `backend/app/api/routes/websocket.py` (+15 -10) 📝 `backend/app/core/auth.py` (+10 -19) 📝 `backend/app/core/config.py` (+1 -1) _...and 80 more files_ </details> ### 📄 Description v0.1.6b6 ### FEATURES - Resizable printer cards - Four sizes (Small, Medium, Large, XL) with persistent preference - Queue Only mode - Stage prints without automatic scheduling, manual release with play button - Virtual printer model selection - Choose from X1, P, A1, H2 series models with auto-restart on change - Pending upload delete confirmation - Confirmation modal when discarding pending uploads ### Fixes - Camera stream reconnection - Improved stuck stream detection with automatic reconnection - Virtual printer SSDP model codes - Corrected C11=P1P, C12=P1S, N7=P2S - Virtual printer serial prefixes - Fixed to match actual Bambu Lab format - Virtual printer startup model - Now correctly loads saved model from database on restart - Virtual printer model change - Model changes auto-restart (no manual disable/enable needed) - Docker certificate persistence - Certificates correctly persist in bambuddy_data volume --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 12:33:56 +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#919
No description provided.