pull/842/head v2.0.3
Li ZongYing 2 years ago
parent 4ef95d60c4
commit 68f158e556
  1. 2
      HISTORY.md
  2. BIN
      app/src/main/cpp/arm64-v8a/libnative.so
  3. BIN
      app/src/main/cpp/armeabi-v7a/libnative.so
  4. 2
      app/src/main/java/com/lizongying/mytv/models/TVList.kt
  5. 20
      history.sh
  6. 2
      version.json

@ -1,6 +1,6 @@
## 更新日志
### v2.0.2
### v2.0.3
* 修复不能播放的问题

@ -891,7 +891,7 @@ object TVList {
)
val array = arrayOf("央视", "地方")
// list = list.filterKeys { it in array }
list = list.filterKeys { it in array }
val listNew = mutableMapOf<String, List<TV>>()
var id = 0

@ -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

@ -1 +1 @@
{"version_code": 33554944, "version_name": "v2.0.2"}
{"version_code": 33555200, "version_name": "v2.0.3"}

Loading…
Cancel
Save