[PR #555] [MERGED] v0.2.1.1 #1063

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

📋 Pull Request Information

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

Base: mainHead: 0.2.1.1


📝 Commits (10+)

  • 105beb0 Updated CI
  • 233e84c Fix naive-vs-aware datetime crash from 0.2.1 timezone migration
  • b1cc346 Fix naive-vs-aware datetime crash from 0.2.1 timezone migration
  • d3bae07 Fix queue badge showing on printers without matching filament (#486)
  • abd2005 Fix Windows install syntax error from LF line endings (#544)
  • 5df2b82 Fix A1 Mini "unknown" status from non-UTF-8 MQTT payload (#549)
  • 240eeb4 Add H2C dual nozzle variant O1C2 model support (#489)
  • 90b9523 Updated commit message (now includes the test fix):
  • f2f43b9 Fix sidebar navigation not respecting user permissions
  • cca4e6f Uodated issue template

📊 Changes

23 files changed (+348 additions, -66 deletions)

View changed files

.gitattributes (+3 -0)
📝 CHANGELOG.md (+12 -0)
📝 backend/app/api/routes/camera.py (+164 -1)
📝 backend/app/core/config.py (+1 -1)
📝 backend/app/main.py (+38 -0)
📝 backend/app/services/bambu_mqtt.py (+13 -1)
📝 backend/app/services/camera.py (+2 -2)
📝 backend/app/services/printer_manager.py (+1 -0)
📝 backend/app/services/virtual_printer/manager.py (+2 -0)
📝 backend/app/services/virtual_printer/mqtt_server.py (+1 -0)
📝 backend/app/utils/printer_models.py (+2 -0)
📝 backend/tests/integration/test_camera_api.py (+8 -2)
📝 frontend/src/api/client.ts (+1 -0)
📝 frontend/src/components/Layout.tsx (+20 -6)
📝 frontend/src/i18n/locales/de.ts (+1 -0)
📝 frontend/src/i18n/locales/en.ts (+1 -0)
📝 frontend/src/i18n/locales/fr.ts (+1 -0)
📝 frontend/src/i18n/locales/it.ts (+1 -0)
📝 frontend/src/i18n/locales/ja.ts (+1 -0)
📝 frontend/src/i18n/locales/pt-BR.ts (+1 -0)

...and 3 more files

📄 Description

v0.2.1.1

Just one day ago after the last release, but I decided to make life a little better for those of you guys who are just received their new H2C :)

What happened?

Recent H2C deliveries from Bambu Lab ship with an updated internal model identifier: O1C2 instead of the previously known O1C. Bambuddy only recognized O1C, so these newer H2C units were not properly identified.

Also included some fixes.

  • Fix sidebar navigation not respecting user permissions
  • Fix camera button permissions & ffmpeg process leak (#550)
  • Fix A1 Mini "unknown" status from non-UTF-8 MQTT payload (#549)
  • Fix Windows install syntax error from LF line endings (#544)
  • Fix queue badge showing on printers without matching filament (#486)
  • Fix naive-vs-aware datetime crash from 0.2.1 timezone migration

🔄 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/555 **Author:** [@maziggy](https://github.com/maziggy) **Created:** 2/28/2026 **Status:** ✅ Merged **Merged:** 2/28/2026 **Merged by:** [@maziggy](https://github.com/maziggy) **Base:** `main` ← **Head:** `0.2.1.1` --- ### 📝 Commits (10+) - [`105beb0`](https://github.com/maziggy/bambuddy/commit/105beb092992ec84bdea72572b0904ba9125b2a3) Updated CI - [`233e84c`](https://github.com/maziggy/bambuddy/commit/233e84c03a6b40d10b4807fde675673ca9bbf966) Fix naive-vs-aware datetime crash from 0.2.1 timezone migration - [`b1cc346`](https://github.com/maziggy/bambuddy/commit/b1cc3462ed923936bf0d6623494933d37d6ac4e8) Fix naive-vs-aware datetime crash from 0.2.1 timezone migration - [`d3bae07`](https://github.com/maziggy/bambuddy/commit/d3bae07edfeefd0120f1bc865c4f25eeba2e7a40) Fix queue badge showing on printers without matching filament (#486) - [`abd2005`](https://github.com/maziggy/bambuddy/commit/abd20056ae3b36f44a1f1f90250310e57818ddb7) Fix Windows install syntax error from LF line endings (#544) - [`5df2b82`](https://github.com/maziggy/bambuddy/commit/5df2b8267339a5ed494b24c3e335ef073e53783a) Fix A1 Mini "unknown" status from non-UTF-8 MQTT payload (#549) - [`240eeb4`](https://github.com/maziggy/bambuddy/commit/240eeb4f5df9b56610355199d30cb16c330fa129) Add H2C dual nozzle variant O1C2 model support (#489) - [`90b9523`](https://github.com/maziggy/bambuddy/commit/90b9523998692cd7a976253abe26d6ee0eaa3aea) Updated commit message (now includes the test fix): - [`f2f43b9`](https://github.com/maziggy/bambuddy/commit/f2f43b98a3ef18fd54cf93acd4f1a07a791bfb9c) Fix sidebar navigation not respecting user permissions - [`cca4e6f`](https://github.com/maziggy/bambuddy/commit/cca4e6fab261bd06206e4783b9a882d638cd910d) Uodated issue template ### 📊 Changes **23 files changed** (+348 additions, -66 deletions) <details> <summary>View changed files</summary> ➕ `.gitattributes` (+3 -0) 📝 `CHANGELOG.md` (+12 -0) 📝 `backend/app/api/routes/camera.py` (+164 -1) 📝 `backend/app/core/config.py` (+1 -1) 📝 `backend/app/main.py` (+38 -0) 📝 `backend/app/services/bambu_mqtt.py` (+13 -1) 📝 `backend/app/services/camera.py` (+2 -2) 📝 `backend/app/services/printer_manager.py` (+1 -0) 📝 `backend/app/services/virtual_printer/manager.py` (+2 -0) 📝 `backend/app/services/virtual_printer/mqtt_server.py` (+1 -0) 📝 `backend/app/utils/printer_models.py` (+2 -0) 📝 `backend/tests/integration/test_camera_api.py` (+8 -2) 📝 `frontend/src/api/client.ts` (+1 -0) 📝 `frontend/src/components/Layout.tsx` (+20 -6) 📝 `frontend/src/i18n/locales/de.ts` (+1 -0) 📝 `frontend/src/i18n/locales/en.ts` (+1 -0) 📝 `frontend/src/i18n/locales/fr.ts` (+1 -0) 📝 `frontend/src/i18n/locales/it.ts` (+1 -0) 📝 `frontend/src/i18n/locales/ja.ts` (+1 -0) 📝 `frontend/src/i18n/locales/pt-BR.ts` (+1 -0) _...and 3 more files_ </details> ### 📄 Description v0.2.1.1 Just one day ago after the last release, but I decided to make life a little better for those of you guys who are just received their new H2C :) What happened? Recent H2C deliveries from Bambu Lab ship with an updated internal model identifier: O1C2 instead of the previously known O1C. Bambuddy only recognized O1C, so these newer H2C units were not properly identified. Also included some fixes. - Fix sidebar navigation not respecting user permissions - Fix camera button permissions & ffmpeg process leak (#550) - Fix A1 Mini "unknown" status from non-UTF-8 MQTT payload (#549) - Fix Windows install syntax error from LF line endings (#544) - Fix queue badge showing on printers without matching filament (#486) - Fix naive-vs-aware datetime crash from 0.2.1 timezone migration --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 12:34:46 +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#1063
No description provided.