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

[PR #180] [CLOSED] Add STL thumbnail generation support #950

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

📋 Pull Request Information

Original PR: https://github.com/maziggy/bambuddy/pull/180
Author: @MisterBeardy
Created: 1/29/2026
Status: Closed

Base: mainHead: feature/stl-thumbnail


📝 Commits (7)

📊 Changes

14 files changed (+1459 additions, -439 deletions)

View changed files

📝 .github/workflows/ci.yml (+11 -11)
📝 .gitignore (+1 -1)
📝 backend/app/api/routes/library.py (+220 -0)
📝 backend/app/schemas/library.py (+29 -0)
backend/app/services/stl_thumbnail.py (+227 -0)
📝 backend/tests/integration/test_library_api.py (+123 -0)
backend/tests/unit/services/test_stl_thumbnail.py (+326 -0)
📝 frontend/package-lock.json (+4 -3)
📝 frontend/package.json (+1 -0)
📝 frontend/src/api/client.ts (+30 -0)
📝 frontend/src/pages/FileManagerPage.tsx (+60 -1)
📝 requirements.txt (+4 -0)
📝 static/assets/index-C9BDZTzB.js (+422 -422)
📝 static/index.html (+1 -1)

📄 Description

Summary

  • Add STL thumbnail generation service for 3D model previews
  • Add library API routes for thumbnail handling
  • Update File Manager page to display STL thumbnails
  • Add unit and integration tests for the new functionality
  • Update CI workflow configuration

Test plan

  • Verify STL thumbnails generate correctly for various STL files
  • Test File Manager displays thumbnails properly
  • Run unit tests: pytest backend/tests/unit/services/test_stl_thumbnail.py
  • Run integration tests: pytest backend/tests/integration/test_library_api.py

🤖 Generated with Claude Code


🔄 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/180 **Author:** [@MisterBeardy](https://github.com/MisterBeardy) **Created:** 1/29/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/stl-thumbnail` --- ### 📝 Commits (7) - [`375d523`](https://github.com/maziggy/bambuddy/commit/375d5238d05309ced8b931e26c2f3699d52071ca) Add STL thumbnail generation support - [`4912e8a`](https://github.com/maziggy/bambuddy/commit/4912e8ae3a68c7cf5585104dac59ba770ff6c275) Retrigger CI pipeline - [`e8acf68`](https://github.com/maziggy/bambuddy/commit/e8acf68ea4f85f90a079286449e81023db2fc8dc) Updated CI - [`411b2ea`](https://github.com/maziggy/bambuddy/commit/411b2ea877d3ea9b2e0b3fa15eb1fe9d704fdac9) Retrigger CI pipeline - [`b74566c`](https://github.com/maziggy/bambuddy/commit/b74566c644edffbfa7598898e5e5c6a0b5c5afa2) test - [`79e2b3b`](https://github.com/maziggy/bambuddy/commit/79e2b3bba5bccc0cc4a8a7bb4da449786eea923a) Retrigger CI pipeline - [`b8e6ed8`](https://github.com/maziggy/bambuddy/commit/b8e6ed81cc5a0958ee35a1358616146ca6d00639) Add missing frontend bundle ### 📊 Changes **14 files changed** (+1459 additions, -439 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+11 -11) 📝 `.gitignore` (+1 -1) 📝 `backend/app/api/routes/library.py` (+220 -0) 📝 `backend/app/schemas/library.py` (+29 -0) ➕ `backend/app/services/stl_thumbnail.py` (+227 -0) 📝 `backend/tests/integration/test_library_api.py` (+123 -0) ➕ `backend/tests/unit/services/test_stl_thumbnail.py` (+326 -0) 📝 `frontend/package-lock.json` (+4 -3) 📝 `frontend/package.json` (+1 -0) 📝 `frontend/src/api/client.ts` (+30 -0) 📝 `frontend/src/pages/FileManagerPage.tsx` (+60 -1) 📝 `requirements.txt` (+4 -0) 📝 `static/assets/index-C9BDZTzB.js` (+422 -422) 📝 `static/index.html` (+1 -1) </details> ### 📄 Description ## Summary - Add STL thumbnail generation service for 3D model previews - Add library API routes for thumbnail handling - Update File Manager page to display STL thumbnails - Add unit and integration tests for the new functionality - Update CI workflow configuration ## Test plan - [ ] Verify STL thumbnails generate correctly for various STL files - [ ] Test File Manager displays thumbnails properly - [ ] Run unit tests: `pytest backend/tests/unit/services/test_stl_thumbnail.py` - [ ] Run integration tests: `pytest backend/tests/integration/test_library_api.py` 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- <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:08 +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#950
No description provided.