YetAnotherPomodoroApp / YAPA-2

Minimalistic desktop timer app for Pomodoro Technique users
https://yapa2.app/
MIT License
512 stars 58 forks source link

Don't put settings into the Documents folder #90

Open placoderm opened 2 years ago

placoderm commented 2 years ago

Great App!

I noticed that a folder has been created in my Documents folder to hold settings for the app. This is not the proper place to store settings (or honestly anything from any app, but that part is just my opinion).

I'm not experienced with writing windows apps, but I'm sure there is a better place than the user's doucments folder to be putting the settings.

Thanks!!

fanuch commented 2 years ago

There's a place called App Data which might work: %APPDATA% == (by default points to: C:\Users\<user>\AppData\Roaming)

Or Local App Data: %LOCALAPPDATA% == (by default points to: C:\Users\<user>\AppData\Local)

* Not a Windows dev