pmgl / microstudio

Free, open source game engine online
MIT License
936 stars 106 forks source link

Show Storage Usage for each user project #185

Closed HomineLudens closed 1 year ago

HomineLudens commented 1 year ago

It would help to locate the most space eater project. Right now is quite a pain to find out where that enormous mp3 file is hiding.

HomineLudens commented 1 year ago

Just posting here a snippet that Gilles posted on Discord, in case anyone need to sort out some free space. From Browser console just paste:

app.projects.sort((a,b)=> { return b.size-a.size })

to get a nice print of projects infos