From 0a2592893d108c9f3a158db998f020db554ba73f Mon Sep 17 00:00:00 2001 From: bao-qian Date: Sat, 14 Jan 2017 14:10:30 +0000 Subject: [PATCH] rename cache file --- Plugins/Wox.Plugin.Program/Main.cs | 4 ++-- Wox.Infrastructure/Image/ImageLoader.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Plugins/Wox.Plugin.Program/Main.cs b/Plugins/Wox.Plugin.Program/Main.cs index 86431be80a..139a9b01c5 100644 --- a/Plugins/Wox.Plugin.Program/Main.cs +++ b/Plugins/Wox.Plugin.Program/Main.cs @@ -33,9 +33,9 @@ namespace Wox.Plugin.Program Stopwatch.Normal("Preload programs", () => { - _win32Storage = new BinaryStorage("Win32Cache"); + _win32Storage = new BinaryStorage("Win32"); _win32s = _win32Storage.TryLoad(new Win32[] { }); - _uwpStorage = new BinaryStorage("UWPCache"); + _uwpStorage = new BinaryStorage("UWP"); _uwps = _uwpStorage.TryLoad(new UWP.Application[] { }); }); diff --git a/Wox.Infrastructure/Image/ImageLoader.cs b/Wox.Infrastructure/Image/ImageLoader.cs index aa74769b16..dce0081f7d 100644 --- a/Wox.Infrastructure/Image/ImageLoader.cs +++ b/Wox.Infrastructure/Image/ImageLoader.cs @@ -33,7 +33,7 @@ namespace Wox.Infrastructure.Image static ImageLoader() { - Storage = new BinaryStorage> ("ImageCache"); + Storage = new BinaryStorage> ("Image"); ImageCache.Usage = Storage.TryLoad(new ConcurrentDictionary()); }