Security Question #6
-
|
Does ImageGlass save any data outside of it's install folder to the disc? Like thumbnails and/or caches. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hello, There are 2 kinds of data saved: 1. ImageGlass Configurations: 2. ImageGlass Plugins: In the future, I will consider to storing other data, such as extensions, language packs in the same place of theme pack's |
Beta Was this translation helpful? Give feedback.
Hello,
There are 2 kinds of data saved:
1. ImageGlass Configurations:
All configurations will be saved in registry HKEY_CURRENT_USER\Software\PhapSoftware\ImageGlass
You can find it here: https://github.com/d2phap/ImageGlass/blob/master/Source/Extensions/ImageGlass.Services/Configuration/GlobalSetting.cs#L372
2. ImageGlass Plugins:
Language packs and extensions are saved in install folder. However, due to security of Windows OS, ImageGlass theme packs are stored in %AppData%\ImageGlass
You can check it here:
https://github.com/d2phap/ImageGlass/blob/master/Source/Commands/igcmd/frmInstallTheme.cs#L64
In the future, I will consider to storing other data, such as extensions, language packs …