mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
rename cache file
This commit is contained in:
@@ -33,9 +33,9 @@ namespace Wox.Plugin.Program
|
|||||||
|
|
||||||
Stopwatch.Normal("Preload programs", () =>
|
Stopwatch.Normal("Preload programs", () =>
|
||||||
{
|
{
|
||||||
_win32Storage = new BinaryStorage<Win32[]>("Win32Cache");
|
_win32Storage = new BinaryStorage<Win32[]>("Win32");
|
||||||
_win32s = _win32Storage.TryLoad(new Win32[] { });
|
_win32s = _win32Storage.TryLoad(new Win32[] { });
|
||||||
_uwpStorage = new BinaryStorage<UWP.Application[]>("UWPCache");
|
_uwpStorage = new BinaryStorage<UWP.Application[]>("UWP");
|
||||||
_uwps = _uwpStorage.TryLoad(new UWP.Application[] { });
|
_uwps = _uwpStorage.TryLoad(new UWP.Application[] { });
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ namespace Wox.Infrastructure.Image
|
|||||||
|
|
||||||
static ImageLoader()
|
static ImageLoader()
|
||||||
{
|
{
|
||||||
Storage = new BinaryStorage<ConcurrentDictionary<string, int>> ("ImageCache");
|
Storage = new BinaryStorage<ConcurrentDictionary<string, int>> ("Image");
|
||||||
ImageCache.Usage = Storage.TryLoad(new ConcurrentDictionary<string, int>());
|
ImageCache.Usage = Storage.TryLoad(new ConcurrentDictionary<string, int>());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user