Skip to content

Commit 56a3c6f

Browse files
committed
🔖 tv2.2.7
1 parent 327c3fc commit 56a3c6f

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# 更新日志
22

3+
## 【2.2.7】 - 2024-12-07
4+
5+
### 新增
6+
7+
- 新增播放器渲染方式
8+
- 添加配置项 播放器/停止上一媒体项
9+
- 控制跳过同一VSync渲染多帧
10+
11+
### 优化
12+
13+
- 优化本机ip获取
14+
- 解码器初始化失败后自动切换软解
15+
16+
### 修复
17+
18+
- 可能修复画面问题
19+
- 防止焦点导致崩溃,部分列表循环
20+
321
## [2.2.6] - 2024-11-23
422

523
### 新增

tv/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919
minSdk = libs.versions.minSdk.get().toInt()
2020
targetSdk = libs.versions.targetSdk.get().toInt()
2121
versionCode = 2
22-
versionName = "2.2.6"
22+
versionName = "2.2.7"
2323
vectorDrawables {
2424
useSupportLibrary = true
2525
}

tv/src/main/java/top/yogiczy/mytv/tv/utlis/HttpServer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ object HttpServer : Loggable() {
332332
}
333333

334334
private fun getLocalIpAddress(): String {
335-
val defaultIp = "0.0.0.0"
335+
val defaultIp = "127.0.0.1"
336336

337337
try {
338338
val en = NetworkInterface.getNetworkInterfaces()

0 commit comments

Comments
 (0)