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

[PR #349] [MERGED] Feature/inventory #1013

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

📋 Pull Request Information

Original PR: https://github.com/maziggy/bambuddy/pull/349
Author: @maziggy
Created: 2/12/2026
Status: Merged
Merged: 2/12/2026
Merged by: @maziggy

Base: 0.2.0bHead: feature/inventory


📝 Commits (10+)

  • ec82092 Sync
  • 1f0931e Sync
  • e6e62f2 Add spool inventory: AMS slot assignment, usage tracking, and remaining weight editing
  • 1366076 Added docker-publish-beta.sh
  • a1f9ac1 Added BETA_TEST_PLAN.md
  • 1e96ea3 Update test case number format in issue reporting
  • c0dad33 Merge pull request #345 from maziggy/maziggy-patch-2
  • 469a135 Add requirement for spool without RFID tag
  • ab1b510 Merge pull request #347 from maziggy/maziggy-patch-3
  • 44df253 Merge branch '0.2.0b' into feature/inventory

📊 Changes

62 files changed (+18983 additions, -760 deletions)

View changed files

BETA_TEST_PLAN.md (+139 -0)
📝 CHANGELOG.md (+5 -0)
📝 DOCKERHUB.md (+1 -1)
📝 README.md (+5 -0)
📝 backend/app/api/routes/cloud.py (+48 -3)
backend/app/api/routes/inventory.py (+946 -0)
backend/app/core/bambu_colors.py (+317 -0)
backend/app/core/catalog_defaults.py (+357 -0)
📝 backend/app/core/database.py (+112 -0)
📝 backend/app/core/permissions.py (+18 -0)
📝 backend/app/main.py (+235 -0)
📝 backend/app/models/__init__.py (+12 -0)
backend/app/models/color_catalog.py (+20 -0)
backend/app/models/spool.py (+44 -0)
backend/app/models/spool_assignment.py (+35 -0)
backend/app/models/spool_catalog.py (+18 -0)
backend/app/models/spool_k_profile.py (+31 -0)
backend/app/models/spool_usage_history.py (+21 -0)
📝 backend/app/schemas/cloud.py (+1 -0)
backend/app/schemas/spool.py (+109 -0)

...and 42 more files

📄 Description

Feature/inventory


🔄 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/349 **Author:** [@maziggy](https://github.com/maziggy) **Created:** 2/12/2026 **Status:** ✅ Merged **Merged:** 2/12/2026 **Merged by:** [@maziggy](https://github.com/maziggy) **Base:** `0.2.0b` ← **Head:** `feature/inventory` --- ### 📝 Commits (10+) - [`ec82092`](https://github.com/maziggy/bambuddy/commit/ec82092bc7d8714cb1c5162473ca86c91d663ac3) Sync - [`1f0931e`](https://github.com/maziggy/bambuddy/commit/1f0931e00c5762bbf0bf6d0e7027da8490da7020) Sync - [`e6e62f2`](https://github.com/maziggy/bambuddy/commit/e6e62f2a680eeaf174c976b022644b812edea37e) Add spool inventory: AMS slot assignment, usage tracking, and remaining weight editing - [`1366076`](https://github.com/maziggy/bambuddy/commit/1366076b31a663e5706200926d8dc977d18d4b20) Added docker-publish-beta.sh - [`a1f9ac1`](https://github.com/maziggy/bambuddy/commit/a1f9ac1376f0544659751f994203a7d6c3f3549a) Added BETA_TEST_PLAN.md - [`1e96ea3`](https://github.com/maziggy/bambuddy/commit/1e96ea36f3fdf728a8e15d9def070f8766d7b000) Update test case number format in issue reporting - [`c0dad33`](https://github.com/maziggy/bambuddy/commit/c0dad3351785782d1a2756558df676c2cd401395) Merge pull request #345 from maziggy/maziggy-patch-2 - [`469a135`](https://github.com/maziggy/bambuddy/commit/469a13519ab3bddaea9aba4a7909561e9e133df8) Add requirement for spool without RFID tag - [`ab1b510`](https://github.com/maziggy/bambuddy/commit/ab1b510f94877b979c21724fa0c0ec9760b02aaa) Merge pull request #347 from maziggy/maziggy-patch-3 - [`44df253`](https://github.com/maziggy/bambuddy/commit/44df253c678219c9c67dc0be2cf03c9ca7e723c9) Merge branch '0.2.0b' into feature/inventory ### 📊 Changes **62 files changed** (+18983 additions, -760 deletions) <details> <summary>View changed files</summary> ➕ `BETA_TEST_PLAN.md` (+139 -0) 📝 `CHANGELOG.md` (+5 -0) 📝 `DOCKERHUB.md` (+1 -1) 📝 `README.md` (+5 -0) 📝 `backend/app/api/routes/cloud.py` (+48 -3) ➕ `backend/app/api/routes/inventory.py` (+946 -0) ➕ `backend/app/core/bambu_colors.py` (+317 -0) ➕ `backend/app/core/catalog_defaults.py` (+357 -0) 📝 `backend/app/core/database.py` (+112 -0) 📝 `backend/app/core/permissions.py` (+18 -0) 📝 `backend/app/main.py` (+235 -0) 📝 `backend/app/models/__init__.py` (+12 -0) ➕ `backend/app/models/color_catalog.py` (+20 -0) ➕ `backend/app/models/spool.py` (+44 -0) ➕ `backend/app/models/spool_assignment.py` (+35 -0) ➕ `backend/app/models/spool_catalog.py` (+18 -0) ➕ `backend/app/models/spool_k_profile.py` (+31 -0) ➕ `backend/app/models/spool_usage_history.py` (+21 -0) 📝 `backend/app/schemas/cloud.py` (+1 -0) ➕ `backend/app/schemas/spool.py` (+109 -0) _...and 42 more files_ </details> ### 📄 Description Feature/inventory --- <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:28 +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#1013
No description provided.