diff options
| -rw-r--r-- | mkvtool/go.mod | 8 | ||||
| -rw-r--r-- | mkvtool/main.go | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/mkvtool/go.mod b/mkvtool/go.mod index 18ae727..159c819 100644 --- a/mkvtool/go.mod +++ b/mkvtool/go.mod @@ -1,14 +1,14 @@ module github.com/KurenaiRyu/MkvAutoSubset/mkvtool -go 1.17 +go 1.18 -require github.com/KurenaiRyu/MkvAutoSubset/mkvlib v0.0.0-20220323064518-12b9924e13a6 +require github.com/KurenaiRyu/MkvAutoSubset/mkvlib v0.0.0-20220421040106-4219efb8ffe5 require ( - github.com/antchfx/xmlquery v1.3.8 // indirect + github.com/antchfx/xmlquery v1.3.10 // indirect github.com/antchfx/xpath v1.2.0 // indirect github.com/asticode/go-astikit v0.20.0 // indirect - github.com/asticode/go-astisub v0.20.0 // indirect + github.com/asticode/go-astisub v0.21.0 // indirect github.com/asticode/go-astits v1.8.0 // indirect github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect diff --git a/mkvtool/main.go b/mkvtool/main.go index 6887509..0305efe 100644 --- a/mkvtool/main.go +++ b/mkvtool/main.go @@ -13,7 +13,7 @@ import ( ) const appName = "MKV Tool" -const appVer = "v3.3.7" +const appVer = "v3.3.8" const tTitle = appName + " " + appVer var appFN = fmt.Sprintf("%s %s %s/%s", appName, appVer, runtime.GOOS, runtime.GOARCH) @@ -84,7 +84,7 @@ func main() { flag.StringVar(&data, "data", "data", "Subtitles & Fonts folder (dump & make mode only)") flag.StringVar(&dist, "dist", "dist", "Results output folder (make mode only)") flag.StringVar(&flog, "log", "", "Log file path") - flag.IntVar(&pf, "pf", 23, "PGS frameRate:23,24,25,29,30,50,59,60. (ass2pgs only)") + flag.IntVar(&pf, "pf", 23, "PGS frame rate:23,24,25,29,30,50,59,60. (ass2pgs only)") flag.IntVar(&pr, "pr", 1080, "PGS resolution:480,576,720,1080,2160. (ass2pgs only)") flag.BoolVar(&v, "v", false, "Show app info.") flag.Parse() |
