1
0
Fork 0
mirror of https://github.com/maziggy/bambuddy.git synced 2026-05-09 08:25:54 +02:00

[PR #194] [CLOSED] Feature/192 #960

Closed
opened 2026-05-07 00:15:11 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

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

Base: mainHead: feature/192


📝 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

133 files changed (+24886 additions, -11053 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yml (+2 -0)
📝 .github/workflows/ci.yml (+11 -11)
📝 .gitignore (+3 -1)
📝 .pre-commit-config.yaml (+1 -1)
=2.8.0 (+0 -5)
📝 CHANGELOG.md (+151 -0)
📝 README.md (+17 -4)
backend/.coverage (+0 -0)
📝 backend/app/api/routes/archives.py (+2 -0)
📝 backend/app/api/routes/camera.py (+448 -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/notification_templates.py (+8 -0)
📝 backend/app/api/routes/notifications.py (+12 -0)
📝 backend/app/api/routes/print_queue.py (+226 -7)
📝 backend/app/api/routes/printers.py (+77 -1)
📝 backend/app/api/routes/projects.py (+396 -1)
📝 backend/app/api/routes/settings.py (+210 -1)

...and 80 more files

📄 Description

Add H2D Pro printer model support

  • Add H2D Pro option to printer model dropdowns (add/edit modals)
  • Support both O1E and O2D internal codes for H2D Pro compatibility
  • Add O2D to RTSP-capable and chamber temp supported models
  • Add H2DPRO variant to firmware check mapping
  • Add H2D Pro and X1E to bug report issue template

Closes #192


🔄 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/194 **Author:** [@maziggy](https://github.com/maziggy) **Created:** 1/30/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/192` --- ### 📝 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 **133 files changed** (+24886 additions, -11053 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yml` (+2 -0) 📝 `.github/workflows/ci.yml` (+11 -11) 📝 `.gitignore` (+3 -1) 📝 `.pre-commit-config.yaml` (+1 -1) ➖ `=2.8.0` (+0 -5) 📝 `CHANGELOG.md` (+151 -0) 📝 `README.md` (+17 -4) ➖ `backend/.coverage` (+0 -0) 📝 `backend/app/api/routes/archives.py` (+2 -0) 📝 `backend/app/api/routes/camera.py` (+448 -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/notification_templates.py` (+8 -0) 📝 `backend/app/api/routes/notifications.py` (+12 -0) 📝 `backend/app/api/routes/print_queue.py` (+226 -7) 📝 `backend/app/api/routes/printers.py` (+77 -1) 📝 `backend/app/api/routes/projects.py` (+396 -1) 📝 `backend/app/api/routes/settings.py` (+210 -1) _...and 80 more files_ </details> ### 📄 Description Add H2D Pro printer model support - Add H2D Pro option to printer model dropdowns (add/edit modals) - Support both O1E and O2D internal codes for H2D Pro compatibility - Add O2D to RTSP-capable and chamber temp supported models - Add H2DPRO variant to firmware check mapping - Add H2D Pro and X1E to bug report issue template Closes #192 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-07 00:15:11 +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-maziggy-1#960
No description provided.