@@ -26,9 +26,6 @@ public string NodeExecutablePath
26
26
}
27
27
}
28
28
29
- // TODO: Remove. This is backwards compatibility for 1.10.0 release.
30
- public string PythonDirectory { get ; set ; }
31
-
32
29
public Dictionary < string , Plugin > Plugins { get ; set ; } = new Dictionary < string , Plugin > ( ) ;
33
30
34
31
public void UpdatePluginSettings ( List < PluginMetadata > metadatas )
@@ -38,25 +35,6 @@ public void UpdatePluginSettings(List<PluginMetadata> metadatas)
38
35
if ( Plugins . ContainsKey ( metadata . ID ) )
39
36
{
40
37
var settings = Plugins [ metadata . ID ] ;
41
-
42
- if ( metadata . ID == "572be03c74c642baae319fc283e561a8" && metadata . ActionKeywords . Count > settings . ActionKeywords . Count )
43
- {
44
- // TODO: Remove. This is backwards compatibility for Explorer 1.8.0 release.
45
- // Introduced two new action keywords in Explorer, so need to update plugin setting in the UserData folder.
46
- if ( settings . Version . CompareTo ( "1.8.0" ) < 0 )
47
- {
48
- settings . ActionKeywords . Add ( Query . GlobalPluginWildcardSign ) ; // for index search
49
- settings . ActionKeywords . Add ( Query . GlobalPluginWildcardSign ) ; // for path search
50
- settings . ActionKeywords . Add ( Query . GlobalPluginWildcardSign ) ; // for quick access action keyword
51
- }
52
-
53
- // TODO: Remove. This is backwards compatibility for Explorer 1.9.0 release.
54
- // Introduced a new action keywords in Explorer since 1.8.0, so need to update plugin setting in the UserData folder.
55
- if ( settings . Version . CompareTo ( "1.8.0" ) > 0 )
56
- {
57
- settings . ActionKeywords . Add ( Query . GlobalPluginWildcardSign ) ; // for quick access action keyword
58
- }
59
- }
60
38
61
39
if ( string . IsNullOrEmpty ( settings . Version ) )
62
40
settings . Version = metadata . Version ;
0 commit comments