Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@

## 0.7.0

- First TB2 support (not for daily use! Search for beta testers open: [https://t.me/toniebox_reverse_engineering/74847](https://t.me/toniebox_reverse_engineering/74847))
- Added custom tonies API
- Enhanced condition for valid tonieInfo check
- Added contribution.md [https://github.com/toniebox-reverse-engineering/teddycloud/issues/59](https://github.com/toniebox-reverse-engineering/teddycloud/issues/59)
- Fixed broken web radio streaming in alpine version [https://github.com/toniebox-reverse-engineering/teddycloud/issues/160](https://github.com/toniebox-reverse-engineering/teddycloud/issues/160)
- Added api to extend and fetch custom models entries in tonies.custom.json [https://github.com/toniebox-reverse-engineering/teddycloud/issues/176](https://github.com/toniebox-reverse-engineering/teddycloud/issues/176) & [https://github.com/toniebox-reverse-engineering/teddycloud/issues/178](https://github.com/toniebox-reverse-engineering/teddycloud/issues/178)
- Fixed bug unremoved cache on deinit [https://github.com/toniebox-reverse-engineering/teddycloud/issues/304](https://github.com/toniebox-reverse-engineering/teddycloud/issues/304)
- Increased max length of path/filename to 255 [https://github.com/toniebox-reverse-engineering/teddycloud/issues/374](https://github.com/toniebox-reverse-engineering/teddycloud/issues/374)
- Support running teddycloud as non-root in Docker (PUID/PGID env vars) [https://github.com/toniebox-reverse-engineering/teddycloud/issues/441](https://github.com/toniebox-reverse-engineering/teddycloud/issues/441)
- Fixed Runtime error during loading settings [https://github.com/toniebox-reverse-engineering/teddycloud/issues/447](https://github.com/toniebox-reverse-engineering/teddycloud/issues/447)
- Fixed docker-entrypoint: in-place restart loop never triggers (set -e + exit-code -2 vs 254) [https://github.com/toniebox-reverse-engineering/teddycloud/issues/448](https://github.com/toniebox-reverse-engineering/teddycloud/issues/448)
- Fixed bug config file loader bypasses the min/max bounds enforced by the settings setters [https://github.com/toniebox-reverse-engineering/teddycloud/issues/451](https://github.com/toniebox-reverse-engineering/teddycloud/issues/451)
- gui: Updated packages
- gui: Removed legacy ESP32 flasher
- gui: Fixed decimal input on ios [https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/289](https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/289)
Expand All @@ -18,6 +29,11 @@
- gui: Fixed some display issues in TeddyStudio labels
- gui: Fixed bug deleting only marked notifications
- gui: Added ESP32-C3 UART Gateway to cc3200 Box flashing guide [https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/292](https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/292)
- gui: Add mobile version of bulk-add tonies model [https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/305](https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/305)
- gui: Fixed bug in browser side taf encoding [https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/281](https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/281)
- gui: Fixed bug malformed library post request [https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/171](https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/171)
- gui: Added noopener noreferrer to external links [https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/308](https://github.com/toniebox-reverse-engineering/teddycloud_web/issues/308)
- gui: Added tonies.custom.json snippet modal for getting skeleton of tonies.custom.json for all or selected tafs in current folder

### Commits

Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ If you don't need the ESP32 Box flashing section working, you can adapt the `pac
"start-https": "cross-env HTTPS=true PORT=3443 vite",
"start": "concurrently \"npm run start-http\" \"npm run start-https\"",
"build": "tsc && vite build",
"preview": "vite preview"
"preview": "vite preview",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
```

Expand All @@ -54,7 +56,9 @@ to
"scripts": {
"start": "npm run start",
"build": "tsc && vite build",
"preview": "vite preview"
"preview": "vite preview",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
```

Expand Down
Loading