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

[PR #189] [MERGED] Feature/printer model queue #954

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

📋 Pull Request Information

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

Base: 0.1.6-finalHead: feature/printer_model_queue


📝 Commits (6)

  • 2eb21e8 Issue #162
  • 7c5c4ee Model-based queue assignment with filament validation and queue notifications (#162)
  • 6fe3956 Added variables to queue related notificatuon templates
  • 836335b Correct AMS data access in print scheduler filament validation
  • 74379da Fix X1E model-based queue
  • ba3ad1d Merge branch '0.1.6-final' into feature/printer_model_queue

📊 Changes

33 files changed (+10234 additions, -183 deletions)

View changed files

📝 CHANGELOG.md (+18 -0)
📝 README.md (+7 -4)
📝 backend/app/api/routes/archives.py (+1 -0)
📝 backend/app/api/routes/notification_templates.py (+8 -0)
📝 backend/app/api/routes/notifications.py (+8 -0)
📝 backend/app/api/routes/print_queue.py (+175 -7)
📝 backend/app/api/routes/settings.py (+21 -0)
📝 backend/app/core/database.py (+40 -0)
📝 backend/app/main.py (+28 -0)
📝 backend/app/models/archive.py (+3 -0)
📝 backend/app/models/notification.py (+9 -0)
📝 backend/app/models/notification_template.py (+43 -0)
📝 backend/app/models/print_queue.py (+9 -0)
📝 backend/app/schemas/archive.py (+2 -0)
📝 backend/app/schemas/notification.py (+18 -0)
📝 backend/app/schemas/notification_template.py (+55 -0)
📝 backend/app/schemas/print_queue.py (+6 -0)
📝 backend/app/services/archive.py (+33 -3)
📝 backend/app/services/notification_service.py (+150 -0)
📝 backend/app/services/print_scheduler.py (+301 -39)

...and 13 more files

📄 Description

No description provided


🔄 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/189 **Author:** [@maziggy](https://github.com/maziggy) **Created:** 1/30/2026 **Status:** ✅ Merged **Merged:** 1/30/2026 **Merged by:** [@maziggy](https://github.com/maziggy) **Base:** `0.1.6-final` ← **Head:** `feature/printer_model_queue` --- ### 📝 Commits (6) - [`2eb21e8`](https://github.com/maziggy/bambuddy/commit/2eb21e8b424c64237748c804a3322f8ef3eb97c3) Issue #162 - [`7c5c4ee`](https://github.com/maziggy/bambuddy/commit/7c5c4ee5bb016963cd83e544b5fecff95e907a36) Model-based queue assignment with filament validation and queue notifications (#162) - [`6fe3956`](https://github.com/maziggy/bambuddy/commit/6fe3956316bda287cc8b475dcfe437b07e50bb49) Added variables to queue related notificatuon templates - [`836335b`](https://github.com/maziggy/bambuddy/commit/836335be7d95ba1a45795146ff8f49a40563a9e4) Correct AMS data access in print scheduler filament validation - [`74379da`](https://github.com/maziggy/bambuddy/commit/74379da28e34e6a147470343ac61e0cc5f1c5a33) Fix X1E model-based queue - [`ba3ad1d`](https://github.com/maziggy/bambuddy/commit/ba3ad1d2f17e62ebeb734b478d980518cdf0a7fa) Merge branch '0.1.6-final' into feature/printer_model_queue ### 📊 Changes **33 files changed** (+10234 additions, -183 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+18 -0) 📝 `README.md` (+7 -4) 📝 `backend/app/api/routes/archives.py` (+1 -0) 📝 `backend/app/api/routes/notification_templates.py` (+8 -0) 📝 `backend/app/api/routes/notifications.py` (+8 -0) 📝 `backend/app/api/routes/print_queue.py` (+175 -7) 📝 `backend/app/api/routes/settings.py` (+21 -0) 📝 `backend/app/core/database.py` (+40 -0) 📝 `backend/app/main.py` (+28 -0) 📝 `backend/app/models/archive.py` (+3 -0) 📝 `backend/app/models/notification.py` (+9 -0) 📝 `backend/app/models/notification_template.py` (+43 -0) 📝 `backend/app/models/print_queue.py` (+9 -0) 📝 `backend/app/schemas/archive.py` (+2 -0) 📝 `backend/app/schemas/notification.py` (+18 -0) 📝 `backend/app/schemas/notification_template.py` (+55 -0) 📝 `backend/app/schemas/print_queue.py` (+6 -0) 📝 `backend/app/services/archive.py` (+33 -3) 📝 `backend/app/services/notification_service.py` (+150 -0) 📝 `backend/app/services/print_scheduler.py` (+301 -39) _...and 13 more files_ </details> ### 📄 Description _No description provided_ --- <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:09 +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#954
No description provided.