[PR #17] [MERGED] 0.1.5b4 #901

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

📋 Pull Request Information

Original PR: https://github.com/maziggy/bambuddy/pull/17
Author: @maziggy
Created: 12/10/2025
Status: Merged
Merged: 12/10/2025
Merged by: @maziggy

Base: mainHead: 0.1.5b


📝 Commits (10+)

  • 50259f6 Removed debug logs for backup/restore module
  • 69ba3e2 Fixed a bug in notification module where newly added notification types were not saved properly
  • 36b57bb - External links can now be embedded into sidebar navigation
  • b4007c9 Added embedded external links to backup/restore module
  • 42cdfdb * Add comprehensive mobile support with responsive navigation
  • 2683630 Updated README
  • 9504f4f Fixed layout for external link icons
  • 38cc31d Improved external link module
  • 8e6e999 Add comprehensive documentation
  • 07f4d44 Moved documentation to it's own repository

📊 Changes

41 files changed (+10396 additions, -8858 deletions)

View changed files

._.DS_Store (+0 -0)
.dockerignore (+53 -0)
Dockerfile (+37 -0)
backend/app/api/routes/external_links.py (+268 -0)
📝 backend/app/api/routes/notifications.py (+5 -0)
📝 backend/app/api/routes/settings.py (+86 -50)
📝 backend/app/core/config.py (+1 -1)
📝 backend/app/core/database.py (+1 -1)
📝 backend/app/main.py (+2 -1)
backend/app/models/external_link.py (+25 -0)
backend/app/schemas/external_link.py (+58 -0)
build_docker.sh (+3 -0)
docker-compose.yml (+16 -0)
📝 frontend/src/App.tsx (+2 -0)
📝 frontend/src/api/client.ts (+61 -0)
frontend/src/components/AddExternalLinkModal.tsx (+299 -0)
📝 frontend/src/components/Button.tsx (+3 -3)
📝 frontend/src/components/Dashboard.tsx (+1 -1)
frontend/src/components/ExternalLinksSettings.tsx (+187 -0)
frontend/src/components/IconPicker.tsx (+132 -0)

...and 21 more files

📄 Description

0.1.5b4

  • Removed debug logs for backup/restore module
  • Fixed a bug in notification module where newly added notification types were not respected
  • External links can now be embedded into sidebar navigation
  • Added embedded external links to backup/restore module
  • Add comprehensive mobile support with responsive navigation
  • Fixed layout for external link icons
  • Improved external link module
  • Add comprehensive documentation
  • Moved documentation to it's own repository
  • Added issue/pull request templates
  • Added Docker support
  • Added filament spool fill levels to printer card
  • Changed version to 0.1.5b4

🔄 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/17 **Author:** [@maziggy](https://github.com/maziggy) **Created:** 12/10/2025 **Status:** ✅ Merged **Merged:** 12/10/2025 **Merged by:** [@maziggy](https://github.com/maziggy) **Base:** `main` ← **Head:** `0.1.5b` --- ### 📝 Commits (10+) - [`50259f6`](https://github.com/maziggy/bambuddy/commit/50259f6dc4ebc2b67d3960b3fd440996fb9cb6cc) Removed debug logs for backup/restore module - [`69ba3e2`](https://github.com/maziggy/bambuddy/commit/69ba3e28067dfd64817efe1d06ff46e815b80e90) Fixed a bug in notification module where newly added notification types were not saved properly - [`36b57bb`](https://github.com/maziggy/bambuddy/commit/36b57bbafb668c9c41d119c75533b9922854131e) - External links can now be embedded into sidebar navigation - [`b4007c9`](https://github.com/maziggy/bambuddy/commit/b4007c9594e9372731aca000cd490079497a595f) Added embedded external links to backup/restore module - [`42cdfdb`](https://github.com/maziggy/bambuddy/commit/42cdfdbd749cc1fa9a623bde03df4fff4f1e69fd) * Add comprehensive mobile support with responsive navigation - [`2683630`](https://github.com/maziggy/bambuddy/commit/2683630729dd4eabf5e648c5e7a021221e43386d) Updated README - [`9504f4f`](https://github.com/maziggy/bambuddy/commit/9504f4fc5934f510bb82cac9b68af87783ab84f8) Fixed layout for external link icons - [`38cc31d`](https://github.com/maziggy/bambuddy/commit/38cc31d64cac80b481d50c915a9bd6b3f4598a54) Improved external link module - [`8e6e999`](https://github.com/maziggy/bambuddy/commit/8e6e999ab79185f2001037a0bfb901c7fbd10e1a) Add comprehensive documentation - [`07f4d44`](https://github.com/maziggy/bambuddy/commit/07f4d4482fea5521aad73858d1de13f6fabb11d8) Moved documentation to it's own repository ### 📊 Changes **41 files changed** (+10396 additions, -8858 deletions) <details> <summary>View changed files</summary> ➕ `._.DS_Store` (+0 -0) ➕ `.dockerignore` (+53 -0) ➕ `Dockerfile` (+37 -0) ➕ `backend/app/api/routes/external_links.py` (+268 -0) 📝 `backend/app/api/routes/notifications.py` (+5 -0) 📝 `backend/app/api/routes/settings.py` (+86 -50) 📝 `backend/app/core/config.py` (+1 -1) 📝 `backend/app/core/database.py` (+1 -1) 📝 `backend/app/main.py` (+2 -1) ➕ `backend/app/models/external_link.py` (+25 -0) ➕ `backend/app/schemas/external_link.py` (+58 -0) ➕ `build_docker.sh` (+3 -0) ➕ `docker-compose.yml` (+16 -0) 📝 `frontend/src/App.tsx` (+2 -0) 📝 `frontend/src/api/client.ts` (+61 -0) ➕ `frontend/src/components/AddExternalLinkModal.tsx` (+299 -0) 📝 `frontend/src/components/Button.tsx` (+3 -3) 📝 `frontend/src/components/Dashboard.tsx` (+1 -1) ➕ `frontend/src/components/ExternalLinksSettings.tsx` (+187 -0) ➕ `frontend/src/components/IconPicker.tsx` (+132 -0) _...and 21 more files_ </details> ### 📄 Description 0.1.5b4 - Removed debug logs for backup/restore module - Fixed a bug in notification module where newly added notification types were not respected - External links can now be embedded into sidebar navigation - Added embedded external links to backup/restore module - Add comprehensive mobile support with responsive navigation - Fixed layout for external link icons - Improved external link module - Add comprehensive documentation - Moved documentation to it's own repository - Added issue/pull request templates - Added Docker support - Added filament spool fill levels to printer card - Changed version to 0.1.5b4 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 12:33: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#901
No description provided.