diff options
| author | b5f0d6c3 <[email protected]> | 2022-04-21 12:03:53 +0800 |
|---|---|---|
| committer | b5f0d6c3 <[email protected]> | 2022-04-21 12:03:53 +0800 |
| commit | ad399fedbdf6f3bd2b00ae6fd8c07d68396c5972 (patch) | |
| tree | abf0f14820d3884eb6e10357d5aaa691f69595a5 /mkvtool | |
| parent | 4219efb8ffe540d9c9068a18d6d2cc0c23ce9c05 (diff) | |
update mkvtool:mkvlib bump to v1.3.0
Diffstat (limited to 'mkvtool')
| -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() |
