diff --git a/ACS/ACS/MainWindow.xaml.cs b/ACS/ACS/MainWindow.xaml.cs index 4cbed4e68..654d976f8 100644 --- a/ACS/ACS/MainWindow.xaml.cs +++ b/ACS/ACS/MainWindow.xaml.cs @@ -2585,6 +2585,7 @@ private String CreatePluginHelpQueryString(String compTypeValue, String id) if (id == null||compTypeValue==null) return ""; if (id.Substring(0, 9) == "asterics.") id = id.Substring(9, id.Length - 9); // eleminiate prefix + //Convert first letter to upper case, to fix the problem that some plugin names start with a small capital letter. //See: https://github.com/asterics/AsTeRICS/issues/320 id = id.Substring(0, 1).ToUpper() + id.Substring(1, id.Length-1); diff --git a/bin/ACS/ACS.exe b/bin/ACS/ACS.exe index 1709422eb..2a624eaf7 100644 Binary files a/bin/ACS/ACS.exe and b/bin/ACS/ACS.exe differ