[PR #389] [CLOSED] First attempt to automation, Location == automation means printer auto clear on successful completion #1024

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

📋 Pull Request Information

Original PR: https://github.com/maziggy/bambuddy/pull/389
Author: @pleite
Created: 2/15/2026
Status: Closed

Base: mainHead: 0.2.0b


📝 Commits (10+)

  • edefce6 Bumped version
  • 905e609 Bumped version
  • 40f4e60 Remove print() debugging from external_camera.py
  • ced51e0 Implement currency symbol handling and update related components
  • 8570e10 Merge branch '0.2.0b' into fix/ext-cam-print-2026-02
  • 0e6f4cc Merge pull request #330 from jeffsf/fix/ext-cam-print-2026-02
  • 09d8e7d Fix external camera not used for snapshot + stream dropping (#325)
  • 0fe2bb1 Fix timelapse baseline race condition (#315)
  • 253bee1 Fix nozzle rack text unreadable on light filament colors (#300)
  • 8e09e4f Add additional currency options for cost tracking (#329)

📊 Changes

162 files changed (+30915 additions, -10502 deletions)

View changed files

📝 .gitignore (+2 -0)
BETA_TEST_PLAN.md (+139 -0)
📝 CHANGELOG.md (+63 -0)
📝 CONTRIBUTING.md (+1 -0)
📝 DOCKERHUB.md (+1 -1)
📝 README.md (+15 -4)
📝 backend/app/api/routes/archives.py (+20 -5)
📝 backend/app/api/routes/camera.py (+19 -0)
📝 backend/app/api/routes/cloud.py (+109 -3)
backend/app/api/routes/inventory.py (+1063 -0)
📝 backend/app/api/routes/kprofiles.py (+3 -0)
📝 backend/app/api/routes/library.py (+7 -0)
📝 backend/app/api/routes/maintenance.py (+98 -15)
📝 backend/app/api/routes/notifications.py (+2 -0)
backend/app/api/routes/print_log.py (+129 -0)
📝 backend/app/api/routes/printers.py (+247 -56)
📝 backend/app/api/routes/settings.py (+11 -2)
📝 backend/app/api/routes/spoolman.py (+47 -3)
📝 backend/app/api/routes/support.py (+5 -2)
📝 backend/app/api/routes/system.py (+340 -0)

...and 80 more files

📄 Description

Description

Fixes #

Type of Change

  • Bug fix (non-breaking change that fixes an issue)
  • New feature (non-breaking change that adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update
  • Code refactoring
  • Performance improvement
  • Test addition or update

Changes Made

Screenshots

Testing

  • I have tested this on my local machine
  • I have tested with my printer model:

Checklist

  • My code follows the project's coding style
  • I have commented my code where necessary
  • I have updated the documentation (if needed)
  • My changes generate no new warnings
  • I have tested my changes thoroughly

Additional Notes


🔄 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/389 **Author:** [@pleite](https://github.com/pleite) **Created:** 2/15/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `0.2.0b` --- ### 📝 Commits (10+) - [`edefce6`](https://github.com/maziggy/bambuddy/commit/edefce67febac49419f3745a5c9e8ea3193b096d) Bumped version - [`905e609`](https://github.com/maziggy/bambuddy/commit/905e609e19db36c64bea3546c4d6741411f0b276) Bumped version - [`40f4e60`](https://github.com/maziggy/bambuddy/commit/40f4e60f0492e59c66f73f50fc9f1f317e2929ab) Remove print() debugging from external_camera.py - [`ced51e0`](https://github.com/maziggy/bambuddy/commit/ced51e06fb3a5c6850aec1bec21fc21a0fcd8f41) Implement currency symbol handling and update related components - [`8570e10`](https://github.com/maziggy/bambuddy/commit/8570e10f0588a9f9f43dc2a252cebb010134a5a5) Merge branch '0.2.0b' into fix/ext-cam-print-2026-02 - [`0e6f4cc`](https://github.com/maziggy/bambuddy/commit/0e6f4cc6946c52c51b54955c413318bf778d7adc) Merge pull request #330 from jeffsf/fix/ext-cam-print-2026-02 - [`09d8e7d`](https://github.com/maziggy/bambuddy/commit/09d8e7d682466da87f8f4b723f92b5bd9b44dfb9) Fix external camera not used for snapshot + stream dropping (#325) - [`0fe2bb1`](https://github.com/maziggy/bambuddy/commit/0fe2bb134229ec861a0ba041e8f0b60ed8202373) Fix timelapse baseline race condition (#315) - [`253bee1`](https://github.com/maziggy/bambuddy/commit/253bee18a1cccb7f1f8c4189de4535ffe8b7a899) Fix nozzle rack text unreadable on light filament colors (#300) - [`8e09e4f`](https://github.com/maziggy/bambuddy/commit/8e09e4fb65e6a7c7cda72899bb9a6feeaf591c29) Add additional currency options for cost tracking (#329) ### 📊 Changes **162 files changed** (+30915 additions, -10502 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) ➕ `BETA_TEST_PLAN.md` (+139 -0) 📝 `CHANGELOG.md` (+63 -0) 📝 `CONTRIBUTING.md` (+1 -0) 📝 `DOCKERHUB.md` (+1 -1) 📝 `README.md` (+15 -4) 📝 `backend/app/api/routes/archives.py` (+20 -5) 📝 `backend/app/api/routes/camera.py` (+19 -0) 📝 `backend/app/api/routes/cloud.py` (+109 -3) ➕ `backend/app/api/routes/inventory.py` (+1063 -0) 📝 `backend/app/api/routes/kprofiles.py` (+3 -0) 📝 `backend/app/api/routes/library.py` (+7 -0) 📝 `backend/app/api/routes/maintenance.py` (+98 -15) 📝 `backend/app/api/routes/notifications.py` (+2 -0) ➕ `backend/app/api/routes/print_log.py` (+129 -0) 📝 `backend/app/api/routes/printers.py` (+247 -56) 📝 `backend/app/api/routes/settings.py` (+11 -2) 📝 `backend/app/api/routes/spoolman.py` (+47 -3) 📝 `backend/app/api/routes/support.py` (+5 -2) 📝 `backend/app/api/routes/system.py` (+340 -0) _...and 80 more files_ </details> ### 📄 Description ## Description <!-- Provide a brief description of your changes --> ## Related Issue <!-- Link to the issue this PR addresses (if applicable) --> Fixes # ## Type of Change <!-- Mark the relevant option with an "x" --> - [ ] Bug fix (non-breaking change that fixes an issue) - [x] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update - [ ] Code refactoring - [ ] Performance improvement - [ ] Test addition or update ## Changes Made <!-- List the specific changes made in this PR --> - - - ## Screenshots <!-- If applicable, add screenshots to demonstrate your changes --> ## Testing <!-- Describe how you tested your changes --> - [ ] I have tested this on my local machine - [ ] I have tested with my printer model: <!-- e.g., X1C, P1S, A1 --> ## Checklist - [ ] My code follows the project's coding style - [ ] I have commented my code where necessary - [ ] I have updated the documentation (if needed) - [ ] My changes generate no new warnings - [ ] I have tested my changes thoroughly ## Additional Notes <!-- Add any additional information that reviewers should know --> --- <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:33 +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#1024
No description provided.