## π Bug Fixes
- [`9651304`](https://github.com/elmarti/camadb/commit/9651304) remove queues for in-browser APIs
- [`059f2c1`](https://github.com/elmarti/camadb/commit/059f2c1) await IDB init before operations
## π₯ Breaking Changes
- [`af5e1f2`](https://github.com/elmarti/camadb/commit/af5e1f2) centralize queueing system The queueing system created an instance for each service - this was slightly ineffectient, but also caused unnecessary concurrency complexity. This was uncovered by exploring issue #65 where custom storage directories weren't initializing properly. The initialization order of the metadata was part of the problem here, (the fundamental problem being hardcoded folder names). The initial fix was to add a service for handling metadata resolution, but the full fix is to resolve this concurrency issue - hence breaking change (Issues: [`#65`](https://github.com/elmarti/camadb/issues/65))