diff options
Diffstat (limited to 'mkvlib')
| -rw-r--r-- | mkvlib/ass.go | 7 | ||||
| -rw-r--r-- | mkvlib/shared.go | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/mkvlib/ass.go b/mkvlib/ass.go index ae54e12..71d8807 100644 --- a/mkvlib/ass.go +++ b/mkvlib/ass.go @@ -394,7 +394,7 @@ func (self *assProcessor) checkFontMissing(f *fontInfo, i int, c bool) bool { } if _str != "" { _str = stringDeduplication(_str) - printLog(self.lcb, `{%s%02d}Font [%s] missing normal char(s): "%s"`, h, i, f.oldName, _str) + printLog(self.lcb, `{%s%02d}Font [%s] -> "%s"[%d] missing normal char(s): "%s"`, h, i, f.oldName, f.file, f.index, _str) } if len(_runes) > 0 { _str = "" @@ -402,7 +402,7 @@ func (self *assProcessor) checkFontMissing(f *fontInfo, i int, c bool) bool { _str += fmt.Sprintf(`,0x%x`, _rune) } _str = _str[1:] - printLog(self.lcb, `{%s%02d}Font [%s] missing special char(s): "%s"`, h, i, f.oldName, _str) + printLog(self.lcb, `{%s%02d}Font [%s] -> "%s"[%d] missing special char(s): "%s"`, h, i, f.oldName, f.file, f.index, _str) } return _str == "" && len(_runes) == 0 } @@ -543,6 +543,9 @@ func (self *assProcessor) reMap() { m[v.file].runes = append(m[v.file].runes, v.runes...) } } + for _, v := range m { + printLog(self.lcb, `Font selected:[%s] -> "%s"[%d]`, v.oldName, v.file, v.index) + } self.m = m } diff --git a/mkvlib/shared.go b/mkvlib/shared.go index 2ddb371..01042fa 100644 --- a/mkvlib/shared.go +++ b/mkvlib/shared.go @@ -11,7 +11,7 @@ import ( ) const libName = "mkvlib" -const libVer = "v2.0.2" +const libVer = "v2.0.3" const LibFName = libName + " " + libVer |
