[PR #560] [CLOSED] Feature/422 #1069

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

📋 Pull Request Information

Original PR: https://github.com/maziggy/bambuddy/pull/560
Author: @pleite
Created: 3/1/2026
Status: Closed

Base: mainHead: feature/422


📝 Commits (10+)

📊 Changes

42 files changed (+10689 additions, -200 deletions)

View changed files

backend/app/api/routes/automation.py (+106 -0)
📝 backend/app/api/routes/printers.py (+1 -0)
📝 backend/app/core/database.py (+8 -0)
📝 backend/app/main.py (+2 -0)
backend/app/models/automation.py (+35 -0)
📝 backend/app/models/printer.py (+5 -0)
backend/app/schemas/automation.py (+35 -0)
📝 backend/app/schemas/printer.py (+3 -0)
backend/app/services/automation.py (+250 -0)
📝 backend/app/services/background_dispatch.py (+154 -6)
📝 backend/app/services/print_scheduler.py (+21 -0)
📝 backend/app/services/printer_manager.py (+45 -6)
📝 backend/tests/conftest.py (+6 -2)
frontend/public/img/spoolbuddy_logo_dark.png (+0 -0)
frontend/public/img/spoolbuddy_logo_dark_small.png (+0 -0)
frontend/public/spoolbuddy_logo_dark.png (+0 -0)
📝 frontend/src/api/client.ts (+32 -0)
frontend/src/components/PlateAutomationModal.tsx (+144 -0)
📝 frontend/src/components/PrintModal/FilamentMapping.tsx (+29 -5)
📝 frontend/src/components/PrinterQueueWidget.tsx (+8 -2)

...and 22 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/560 **Author:** [@pleite](https://github.com/pleite) **Created:** 3/1/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/422` --- ### 📝 Commits (10+) - [`b3d1422`](https://github.com/maziggy/bambuddy/commit/b3d1422ccb240326bed79d046f071e518e93b625) automation initial implementation - [`c78f2a9`](https://github.com/maziggy/bambuddy/commit/c78f2a9dbca442d7b2606a384fed86721f921624) print fix - [`4047a36`](https://github.com/maziggy/bambuddy/commit/4047a3620f0892a97a86b5dfd5d7b453e2d6fe55) Merge branch 'maziggy:main' into automation - [`fa80bb5`](https://github.com/maziggy/bambuddy/commit/fa80bb552fa993fad97c443efc331857f2964274) Merge pull request #1 from pleite/0.2.1b3 - [`e760a38`](https://github.com/maziggy/bambuddy/commit/e760a38536a650c6c88239787100c1dde16e9915) localization for tooltip - [`cb9d351`](https://github.com/maziggy/bambuddy/commit/cb9d351b12a3bb7cc1290136dc2a40162e555583) updating locales - [`52005b4`](https://github.com/maziggy/bambuddy/commit/52005b4bd66860510a806cc13633a262b9bf6833) Merge branch 'automation' of https://github.com/pleite/bambuddy into automation - [`cf54033`](https://github.com/maziggy/bambuddy/commit/cf5403378bade13e0412585d5d9d7423b55866b0) Merge pull request #2 from pleite/0.2.1b3 - [`0849237`](https://github.com/maziggy/bambuddy/commit/0849237c8029b5d37065db3457e876ab2bbf01e6) Changing the Clear Plate button to not display if automation is set with a FINISHED / successfull plate - [`12be5a0`](https://github.com/maziggy/bambuddy/commit/12be5a0844860c3a9f815c59d12d3214ca852f3d) Automated flag on next queue item ### 📊 Changes **42 files changed** (+10689 additions, -200 deletions) <details> <summary>View changed files</summary> ➕ `backend/app/api/routes/automation.py` (+106 -0) 📝 `backend/app/api/routes/printers.py` (+1 -0) 📝 `backend/app/core/database.py` (+8 -0) 📝 `backend/app/main.py` (+2 -0) ➕ `backend/app/models/automation.py` (+35 -0) 📝 `backend/app/models/printer.py` (+5 -0) ➕ `backend/app/schemas/automation.py` (+35 -0) 📝 `backend/app/schemas/printer.py` (+3 -0) ➕ `backend/app/services/automation.py` (+250 -0) 📝 `backend/app/services/background_dispatch.py` (+154 -6) 📝 `backend/app/services/print_scheduler.py` (+21 -0) 📝 `backend/app/services/printer_manager.py` (+45 -6) 📝 `backend/tests/conftest.py` (+6 -2) ➕ `frontend/public/img/spoolbuddy_logo_dark.png` (+0 -0) ➕ `frontend/public/img/spoolbuddy_logo_dark_small.png` (+0 -0) ➕ `frontend/public/spoolbuddy_logo_dark.png` (+0 -0) 📝 `frontend/src/api/client.ts` (+32 -0) ➕ `frontend/src/components/PlateAutomationModal.tsx` (+144 -0) 📝 `frontend/src/components/PrintModal/FilamentMapping.tsx` (+29 -5) 📝 `frontend/src/components/PrinterQueueWidget.tsx` (+8 -2) _...and 22 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) - [ ] 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:51 +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#1069
No description provided.