File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed
java/com/heyanle/easybangumi4/ui/extension_push
buildSrc/src/main/java/com/heyanle/buildsrc Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1+ - 2025/08/17 5.5.3 紧急更新
2+ 修复 数据更新 crash 问题
3+ 修复 添加同个 url 会 crash 问题
4+ 修复 历史记录丢失问题
5+ 新增 番源引擎 2.0,支持添加仓库后直接更新番源。
6+ 新增 本地番源在主页展示功能,默认关闭,可在本地番源设置中开启。
7+ 优化 本地下载页面默认展示本地番源
8+ 新增 旧引擎 js 源自动迁移
9+ 该版本为纯纯看番纯安卓版最后一个需求版本,后续只修复问题。
10+ 新版跨平台端还在开发中 ~
11+
112- 2025/08/16 5.5.1 紧急更新
213 修复 数据更新 crash 问题
314 修复 历史记录丢失问题
Original file line number Diff line number Diff line change @@ -83,10 +83,10 @@ fun ExtensionRepository() {
8383 .fillMaxSize()
8484 .reorderable(state)
8585 ) {
86- items(vm.repository, key = { it.url } ) { tag ->
86+ items(vm.repository, ) { tag ->
8787 ReorderableItem (
8888 reorderableState = state,
89- key = tag.url ,
89+ key = tag,
9090 modifier = Modifier
9191 .fillMaxWidth()
9292 ) {
@@ -185,6 +185,8 @@ fun ExtensionRepository() {
185185 TextButton (onClick = {
186186 if (label.isEmpty()) {
187187 stringRes(R .string.is_empty).moeSnackBar()
188+ } else if (vm.repository.any { it.url == label }) {
189+ " 重复添加" .moeSnackBar()
188190 } else {
189191 vm.onCreate(label)
190192 vm.dialogDismiss()
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ object Android {
99 const val targetSdk = 34
1010 const val compileSdk = 34
1111
12- const val versionCode = 104
13- const val versionName = " 5.5.2 "
12+ const val versionCode = 105
13+ const val versionName = " 5.5.3 "
1414
1515
1616}
You can’t perform that action at this time.
0 commit comments