Completely redid database layout #2

Merged
kristy-fournier merged 6 commits from dev into main 2025-03-05 15:50:36 -05:00
kristy-fournier commented 2025-03-05 15:49:43 -05:00 (Migrated from github.com)

Old Layout:

    {
    "file": "The Search_NF.mp3", 
    "title": "The Search", 
    "artist": "NF", 
    "art": "https://lastfm.freetls.fastly.net/i/u/64s/03125956378d531a44e1b7da89aae795.png", 
    "length": 292

    }```
New Layout:
```{
    "songDirectory": "./sound/", 
    "songData": {
        "Circus_Fox Szn.mp3": 
        {"title": "Circus", 
        "artist": "Fox Szn", 
        "art": null, 
        "length": 141}
    }
}```
Old Layout: ```[ { "file": "The Search_NF.mp3", "title": "The Search", "artist": "NF", "art": "https://lastfm.freetls.fastly.net/i/u/64s/03125956378d531a44e1b7da89aae795.png", "length": 292 }``` New Layout: ```{ "songDirectory": "./sound/", "songData": { "Circus_Fox Szn.mp3": {"title": "Circus", "artist": "Fox Szn", "art": null, "length": 141} } }```
Sign in to join this conversation.
No description provided.