Skip to content

Commit

Permalink
fix ysp
Browse files Browse the repository at this point in the history
  • Loading branch information
lizongying committed May 20, 2024
1 parent 4ef95d6 commit 68f158e
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 更新日志

### v2.0.2
### v2.0.3

* 修复不能播放的问题

Expand Down
Binary file modified app/src/main/cpp/arm64-v8a/libnative.so
Binary file not shown.
Binary file modified app/src/main/cpp/armeabi-v7a/libnative.so
Binary file not shown.
2 changes: 1 addition & 1 deletion app/src/main/java/com/lizongying/mytv/models/TVList.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 20 additions & 0 deletions history.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version_code": 33554944, "version_name": "v2.0.2"}
{"version_code": 33555200, "version_name": "v2.0.3"}

0 comments on commit 68f158e

Please sign in to comment.