josephspurrier / golang-portable-windows

Go Programming Language - Portable Environment for Windows
MIT License
119 stars 17 forks source link

LiteIDE writes to AppData\Local #4

Closed kravlost closed 7 years ago

kravlost commented 7 years ago

Just to let you know that LiteIDE isn't perfectly portable, because it created a LiteIDE folder inside my user's AppData\Local folder, containing a "Hello World" go program.

josephspurrier commented 7 years ago

Yeah, that's actually a limitation of LiteIDE.

The goplay path is retrieved from here: https://github.com/visualfc/liteide/blob/eddb51b5fd2c43836003ca52ab8db9ae4e588b78/liteidex/src/plugins/golangplay/goplaybrowser.cpp#L63

storagePath() is retrieved from here: https://github.com/visualfc/liteide/blob/7bfa0821eb02e0b1e8219dcb5fc735fb5e823770/liteidex/src/liteapp/liteapp.cpp#L120

QStandardPaths::DataLocation points to AppData.

You may want to put in a ticket for LiteIDE.

kravlost commented 7 years ago

Thanks for the information!

kravlost commented 7 years ago

I put in a ticket and it's already possible to make LiteIDE use local storage. Details here.