Enable user selected program loading only

Update logic, add program source only loading
This commit is contained in:
Jeremy Wu
2019-09-05 08:05:17 +10:00
parent dedac39d99
commit f51c391e84
4 changed files with 105 additions and 33 deletions

View File

@@ -12,11 +12,15 @@ namespace Wox.Plugin.Program
public bool EnableRegistrySource { get; set; } = true;
public bool EnableProgramSourceOnly { get; set; } = false;
internal const char SuffixSeperator = ';';
public class ProgramSource
{
public string Location { get; set; }
public string LocationFile { get; set; }
public bool EnableIndexing { get; set; } = true;
}
}
}