mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
c42ec4dcde
+ start ditching in-mem stores + move main db table to a new name + experiments!
28 lines
401 B
Markdown
28 lines
401 B
Markdown
# What's New?
|
|
|
|
<!-- TODO: ELABORATE -->
|
|
- Auth
|
|
|
|
## Improvements
|
|
- The context menu now doesn't take forever to open up
|
|
- Merged "Save as Playlist" with "Add to Playlist" > "New Playlist"
|
|
|
|
## Bug fixes
|
|
- Add to queue adding to last index -1
|
|
-
|
|
|
|
## Development
|
|
|
|
|
|
## THE BIG ONE API CHANGES
|
|
|
|
- genre is no longer a string, but a struct:
|
|
|
|
```ts
|
|
interface Genre {
|
|
name: str;
|
|
genrehash: str;
|
|
}
|
|
```
|
|
|