We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23871fc commit 52aec6dCopy full SHA for 52aec6d
2 files changed
csharp/GUI/MainWindow.xaml.cs
@@ -75,6 +75,7 @@ public MainWindow()
75
ExportPluginMenuItem.Items.Add(exportMenuItem);
76
}
77
TaskListView.ItemsSource = Model.TaskList;
78
+ AddConverterTasks(Environment.GetCommandLineArgs().Skip(1).Where(arg => File.Exists(arg)));
79
80
81
private void FileDropColorOpacityChange(double from, double to)
csharp/GUI/ViewModels.cs
@@ -45,9 +45,9 @@ public AppModel()
45
});
46
47
48
- public string Version { get; set; } = "1.0.3 (Preview)";
+ public string Version { get; set; } = "1.0.4 (Preview)";
49
50
- public string FrameworkVersion { get; set; } = "1.2.0";
+ public string FrameworkVersion { get; set; } = "1.2.1";
51
52
public string Author { get; set; } = "YQ之神";
53
0 commit comments