Skip to content

Commit 52aec6d

Browse files
committed
支持打开方式
1. 以主程序作为打开方式打开各种工程文件 2. 将多文件拖拽至主程序图标上批量导入
1 parent 23871fc commit 52aec6d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

csharp/GUI/MainWindow.xaml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public MainWindow()
7575
ExportPluginMenuItem.Items.Add(exportMenuItem);
7676
}
7777
TaskListView.ItemsSource = Model.TaskList;
78+
AddConverterTasks(Environment.GetCommandLineArgs().Skip(1).Where(arg => File.Exists(arg)));
7879
}
7980

8081
private void FileDropColorOpacityChange(double from, double to)

csharp/GUI/ViewModels.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ public AppModel()
4545
});
4646
}
4747

48-
public string Version { get; set; } = "1.0.3 (Preview)";
48+
public string Version { get; set; } = "1.0.4 (Preview)";
4949

50-
public string FrameworkVersion { get; set; } = "1.2.0";
50+
public string FrameworkVersion { get; set; } = "1.2.1";
5151

5252
public string Author { get; set; } = "YQ之神";
5353

0 commit comments

Comments
 (0)