diff --git a/HISTORY.md b/HISTORY.md index 9ef9c223..334cc071 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ ## 更新日志 -### v2.0.2 +### v2.0.3 * 修复不能播放的问题 diff --git a/app/src/main/cpp/arm64-v8a/libnative.so b/app/src/main/cpp/arm64-v8a/libnative.so index 001109af..1ea0926e 100755 Binary files a/app/src/main/cpp/arm64-v8a/libnative.so and b/app/src/main/cpp/arm64-v8a/libnative.so differ diff --git a/app/src/main/cpp/armeabi-v7a/libnative.so b/app/src/main/cpp/armeabi-v7a/libnative.so index 202af30a..7b731da7 100755 Binary files a/app/src/main/cpp/armeabi-v7a/libnative.so and b/app/src/main/cpp/armeabi-v7a/libnative.so differ diff --git a/app/src/main/java/com/lizongying/mytv/models/TVList.kt b/app/src/main/java/com/lizongying/mytv/models/TVList.kt index 0a6f7e29..ba1ed002 100644 --- a/app/src/main/java/com/lizongying/mytv/models/TVList.kt +++ b/app/src/main/java/com/lizongying/mytv/models/TVList.kt @@ -891,7 +891,7 @@ object TVList { ) val array = arrayOf("央视", "地方") -// list = list.filterKeys { it in array } + list = list.filterKeys { it in array } val listNew = mutableMapOf>() var id = 0 diff --git a/history.sh b/history.sh new file mode 100755 index 00000000..15f41154 --- /dev/null +++ b/history.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +in_changelog=false + +while IFS= read -r line; do + if [[ "$line" == "## "* ]]; then + continue + fi + + if [[ $in_changelog == false ]] && [[ "$line" == "### "* ]]; then + in_changelog=true + continue + fi + + if [[ $in_changelog == true ]] && [[ "$line" == "### "* ]]; then + break + fi + + echo "$line" +done < HISTORY.md diff --git a/version.json b/version.json index 188acfe6..02f9ab83 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version_code": 33554944, "version_name": "v2.0.2"} +{"version_code": 33555200, "version_name": "v2.0.3"}