summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorb5f0d6c3 <[email protected]>2022-03-22 15:07:06 +0800
committerb5f0d6c3 <[email protected]>2022-03-22 15:07:06 +0800
commitd3bdadca00eee35127913da461b7366bd9d50f1c (patch)
tree09936602214c07314cdd1ac5fa166768a9513d22
parentde93bdea69091a07b3fc8bd9bdf607eafe69e7aa (diff)
update mkvlib:remove fon
-rw-r--r--mkvlib/shared.go2
-rw-r--r--mkvlib/utils.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/mkvlib/shared.go b/mkvlib/shared.go
index 76e6ea7..5ce7900 100644
--- a/mkvlib/shared.go
+++ b/mkvlib/shared.go
@@ -11,7 +11,7 @@ import (
)
const libName = "mkvlib"
-const libVer = "v1.2.5"
+const libVer = "v1.2.6"
const LibFName = libName + " " + libVer
diff --git a/mkvlib/utils.go b/mkvlib/utils.go
index 46a505c..802b94e 100644
--- a/mkvlib/utils.go
+++ b/mkvlib/utils.go
@@ -193,6 +193,6 @@ func findMKVs(dir string) []string {
}
func findFonts(dir string) []string {
- list, _ := findPath(dir, `\.((?i)(ttf)|(otf)|(ttc)|(fon))$`)
+ list, _ := findPath(dir, `\.((?i)(ttf)|(otf)|(ttc))$`)
return list
}