summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mkvtool-gui/MainWindow.axaml.cs2
-rw-r--r--mkvtool/go.mod2
-rw-r--r--mkvtool/main.go6
3 files changed, 5 insertions, 5 deletions
diff --git a/mkvtool-gui/MainWindow.axaml.cs b/mkvtool-gui/MainWindow.axaml.cs
index 441cb26..76c0c92 100644
--- a/mkvtool-gui/MainWindow.axaml.cs
+++ b/mkvtool-gui/MainWindow.axaml.cs
@@ -569,7 +569,7 @@ namespace mkvtool
}
}
if (ec == 0 &&
- mkvlib.MakeMKVs(WorkflowArg.Dir, WorkflowArg.Data, WorkflowArg.Dist, "", "", true, lcb))
+ mkvlib.MakeMKVs(WorkflowArg.Dir, WorkflowArg.Data, WorkflowArg.Dist, "", "", false, lcb))
{
PrintResult("Workflow", "Workflow successfully.");
WorkflowArg.Dir = string.Empty;
diff --git a/mkvtool/go.mod b/mkvtool/go.mod
index 79e7486..a085ac9 100644
--- a/mkvtool/go.mod
+++ b/mkvtool/go.mod
@@ -3,7 +3,7 @@ module github.com/MkvAutoSubset/MkvAutoSubset/mkvtool
go 1.19
require (
- github.com/MkvAutoSubset/MkvAutoSubset/mkvlib v0.0.0-20230101015733-6dc267dbafae
+ github.com/MkvAutoSubset/MkvAutoSubset/mkvlib v0.0.0-20230101032716-f7014b4d667c
github.com/fatih/color v1.13.0
github.com/mattn/go-colorable v0.1.9
)
diff --git a/mkvtool/main.go b/mkvtool/main.go
index 1613492..74548f2 100644
--- a/mkvtool/main.go
+++ b/mkvtool/main.go
@@ -18,7 +18,7 @@ import (
)
const appName = "MKV Tool"
-const appVer = "v4.2.7"
+const appVer = "v4.2.8"
const tTitle = appName + " " + appVer
var appFN = fmt.Sprintf("%s %s %s/%s", appName, appVer, runtime.GOOS, runtime.GOARCH)
@@ -273,7 +273,7 @@ func main() {
return
}
if m {
- if !processer.MakeMKVs(s, data, dist, sl, st, true, nil) {
+ if !processer.MakeMKVs(s, data, dist, sl, st, !n, nil) {
ec++
}
return
@@ -294,7 +294,7 @@ func main() {
}
}
if ec == 0 {
- if !processer.MakeMKVs(s, data, dist, sl, st, true, nil) {
+ if !processer.MakeMKVs(s, data, dist, sl, st, false, nil) {
ec++
}
}