>>662
拡張キットのタイトル名に重複があれば警告するためのコード変更
ExtensionKit.cs 265行のLoadを入れ替えてみてください。

public void Load(string dir, StorageNode parameters) {
//modify for alert customize error
System.Collections.Generic.Dictionary<string, string> dic = new System.Collections.Generic.Dictionary<string, string>();
_files.Clear();
string[] fs = Directory.GetFiles(dir, "*.omega");
foreach(string f in fs) {
try {
ExtensionKit ek = ExtensionKit.LoadFrom(f, parameters);
string name = Path.GetFileName(f);
if (dic.ContainsKey(ek.Title)) {
MessageBox.Show($"拡張キットファイルのタイトル名に重複が見つかりました\r\n\tタイトル名の変更を検討してください\r\n{ek.Title}\t{name} - {dic[ek.Title]}");} else
dic.Add(ek.Title, name);
_files.Add(ek);}
catch(Exception ex) {
Util.SilentReportCriticalError(ex);
MessageBox.Show(String.Format("拡張キット {0} の読み込みに失敗しました。\n{1}", f, ex.Message), "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);}}
Reorder();}