Skip to content

Commit f1bd924

Browse files
committed
chore: Bump version to 1.3.1 and update release notes
1 parent c5ff360 commit f1bd924

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/build-desktop.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,12 +226,11 @@ jobs:
226226
shell: bash
227227
run: |
228228
# Define common release notes
229-
NOTES="1.新增使用 NAS 登录和 FN Connect 中继访问的支持
230-
2.修复电视节目切换下一集后快捷键失效的问题
231-
3.优化登录界面 UI 及代码逻辑
229+
NOTES="1.修复 Mac 下使用 NAS 登录 WebView 界面无法正常显示的问题
230+
2.使用 FN ID 登录时现在会自动探测是否是内网环境
232231
 
233232
感谢以下飞牛共建团成员反馈问题并协助排查:
234-
@[玉尺书生](https://club.fnnas.com/home.php?mod=space&uid=6482)
233+
@[玉尺书生](https://club.fnnas.com/home.php?mod=space&uid=6482) @[一西啊](https://club.fnnas.com/home.php?mod=space&uid=785)
235234
 
236235
> **当前应用中没有展示出来或者点击没有反应的就是还没做的功能,后面陆续都会实现,请仅对已实现的功能提出合理意见,感谢理解**
237236
  "

composeApp/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
66
val osName = System.getProperty("os.name").lowercase()
77
val osArch = System.getProperty("os.arch").lowercase()
88

9-
val appVersion = "1.3.0"
10-
val appVersionSuffix = "Beta"
9+
val appVersion = "1.3.1"
10+
val appVersionSuffix = ""
1111

1212
val platformStr = when {
1313
osName.contains("win") -> {

composeApp/src/commonMain/kotlin/com/jankinwu/fntv/client/manager/PreferencesManager.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class PreferencesManager private constructor() {
122122
return try {
123123
mapper.readValue<List<LoginHistory>>(historyJson)
124124
// json.decodeFromString<List<LoginHistory>>(historyJson)
125-
} catch (e: Exception) {
125+
} catch (_: Exception) {
126126
emptyList()
127127
}
128128
}
@@ -131,7 +131,7 @@ class PreferencesManager private constructor() {
131131
val usernamesJson = settings.getString("loginUsernameHistory", "[]")
132132
return try {
133133
mapper.readValue<List<String>>(usernamesJson)
134-
} catch (e: Exception) {
134+
} catch (_: Exception) {
135135
emptyList()
136136
}
137137
}

0 commit comments

Comments
 (0)