[PR #741] [CLOSED] Add FilaMan connectivity #1109

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

📋 Pull Request Information

Original PR: https://github.com/maziggy/bambuddy/pull/741
Author: @ManuelW77
Created: 3/17/2026
Status: Closed

Base: mainHead: main


📝 Commits (9)

  • a3e0666 feat: Integrate FilaMan for filament tracking and consumption reporting
  • bf63188 feat: Increase Node.js heap limit to prevent OOM during Vite/TypeScript build
  • 3de0a8d Merge branch 'maziggy:main' into main
  • 6bb67f7 fix(filaman): correct auth header from X-API-Key to Authorization ApiKey
  • 1b82c44 feat(frontend): add FilaMan API client methods
  • da1c0db feat(i18n): add FilaMan settings translation keys
  • 95cb713 feat(frontend): add FilaMan settings with three-mode selector
  • 50480ef feat(frontend): parameterize LinkSpoolModal for FilaMan support
  • d5fcdd6 Update script source in index.html to use new build version

📊 Changes

16 files changed (+2182 additions, -182 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 Dockerfile (+2 -0)
backend/app/api/routes/filaman.py (+539 -0)
📝 backend/app/api/routes/settings.py (+55 -0)
📝 backend/app/main.py (+138 -0)
backend/app/models/active_print_filaman.py (+42 -0)
backend/app/services/filaman.py (+289 -0)
backend/app/services/filaman_tracking.py (+411 -0)
📝 frontend/src/api/client.ts (+61 -0)
📝 frontend/src/components/LinkSpoolModal.tsx (+33 -18)
📝 frontend/src/components/SpoolmanSettings.tsx (+446 -34)
📝 frontend/src/i18n/locales/de.ts (+16 -2)
📝 frontend/src/i18n/locales/en.ts (+16 -2)
📝 frontend/src/pages/PrintersPage.tsx (+7 -0)
📝 static/assets/index-yVenNYqS.js (+125 -125)
📝 static/index.html (+1 -1)

📄 Description

Description

Added the same functionality as spoolman has for FilaMan. Add a FilaMan Instance per URL and Token.

no issue

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

  • Added FilaMan to LinkSpoolman Modal
  • Added functionality to link Spools to FilaMan
  • Added filaman.py to services and routes

Testing

build local bambuddy container and connected to my filaman instance

  • [X ] I have tested this on my local machine

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

🔄 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/741 **Author:** [@ManuelW77](https://github.com/ManuelW77) **Created:** 3/17/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (9) - [`a3e0666`](https://github.com/maziggy/bambuddy/commit/a3e0666d970b95a275823fc49a63e6da279a07ea) feat: Integrate FilaMan for filament tracking and consumption reporting - [`bf63188`](https://github.com/maziggy/bambuddy/commit/bf63188997e9ac4b27c5bcee11119464643ef528) feat: Increase Node.js heap limit to prevent OOM during Vite/TypeScript build - [`3de0a8d`](https://github.com/maziggy/bambuddy/commit/3de0a8d8061ccb7a0ae4e68b2bb6c1d11a937d91) Merge branch 'maziggy:main' into main - [`6bb67f7`](https://github.com/maziggy/bambuddy/commit/6bb67f7947fc542596e13b578294ca3d65763186) fix(filaman): correct auth header from X-API-Key to Authorization ApiKey - [`1b82c44`](https://github.com/maziggy/bambuddy/commit/1b82c44189291a888c2189a617901bdc1aaa32b3) feat(frontend): add FilaMan API client methods - [`da1c0db`](https://github.com/maziggy/bambuddy/commit/da1c0db956fb3fbf4679206ae7b36a2247f63375) feat(i18n): add FilaMan settings translation keys - [`95cb713`](https://github.com/maziggy/bambuddy/commit/95cb713da305e0e4d955a41b6e60c1093b38fea9) feat(frontend): add FilaMan settings with three-mode selector - [`50480ef`](https://github.com/maziggy/bambuddy/commit/50480efcf9b45610db7e5c34a436f108eb52e7f3) feat(frontend): parameterize LinkSpoolModal for FilaMan support - [`d5fcdd6`](https://github.com/maziggy/bambuddy/commit/d5fcdd6fe49979e65a35e89bdaebd150d650fce2) Update script source in index.html to use new build version ### 📊 Changes **16 files changed** (+2182 additions, -182 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `Dockerfile` (+2 -0) ➕ `backend/app/api/routes/filaman.py` (+539 -0) 📝 `backend/app/api/routes/settings.py` (+55 -0) 📝 `backend/app/main.py` (+138 -0) ➕ `backend/app/models/active_print_filaman.py` (+42 -0) ➕ `backend/app/services/filaman.py` (+289 -0) ➕ `backend/app/services/filaman_tracking.py` (+411 -0) 📝 `frontend/src/api/client.ts` (+61 -0) 📝 `frontend/src/components/LinkSpoolModal.tsx` (+33 -18) 📝 `frontend/src/components/SpoolmanSettings.tsx` (+446 -34) 📝 `frontend/src/i18n/locales/de.ts` (+16 -2) 📝 `frontend/src/i18n/locales/en.ts` (+16 -2) 📝 `frontend/src/pages/PrintersPage.tsx` (+7 -0) 📝 `static/assets/index-yVenNYqS.js` (+125 -125) 📝 `static/index.html` (+1 -1) </details> ### 📄 Description ## Description Added the same functionality as spoolman has for FilaMan. Add a FilaMan Instance per URL and Token. ## Related Issue no issue Fixes # ## Type of Change - [ ] 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 - Added FilaMan to LinkSpoolman Modal - Added functionality to link Spools to FilaMan - Added filaman.py to services and routes ## Testing build local bambuddy container and connected to my filaman instance - [X ] I have tested this on my local machine ## Checklist - [X] My code follows the project's coding style - [X] I have commented my code where necessary - [ ] I have updated the documentation (if needed) - [X] My changes generate no new warnings - [X] I have tested my changes thoroughly --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 12:35:05 +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#1109
No description provided.