修复标题替换失效的问题
This commit is contained in:
@@ -120,11 +120,23 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Upload APK
|
- name: Upload universal APK
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: APKs
|
name: universal-apk
|
||||||
path: app/build/outputs/apk/app/release/*.apk
|
path: app/build/outputs/apk/app/release/legado_app_*[0-9].apk
|
||||||
|
|
||||||
|
- name: Upload arm64-v8a APK
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: arm64-v8a-apk
|
||||||
|
path: app/build/outputs/apk/app/release/*arm64-v8a.apk
|
||||||
|
|
||||||
|
- name: Upload armeabi-v7a APK
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: armeabi-v7a-apk
|
||||||
|
path: app/build/outputs/apk/app/release/*armeabi-v7a.apk
|
||||||
|
|
||||||
- name: Upload Mapping File To Artifact
|
- name: Upload Mapping File To Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|||||||
+1
-1
@@ -18,7 +18,7 @@ apply from: 'download.gradle'
|
|||||||
ext {
|
ext {
|
||||||
versionMajor = 3
|
versionMajor = 3
|
||||||
versionMinor = 25
|
versionMinor = 25
|
||||||
versionPatch = 9
|
versionPatch = 10
|
||||||
}
|
}
|
||||||
|
|
||||||
def name = "legado"
|
def name = "legado"
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ class ChapterListAdapter(
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun getDisplayTitle(chapter: BookChapter): String =
|
private fun getDisplayTitle(chapter: BookChapter): String =
|
||||||
displayTitleMap[chapter.title] ?: chapter.title
|
displayTitleMap[chapter.url] ?: chapter.title
|
||||||
|
|
||||||
override fun getViewBinding(parent: ViewGroup): ItemChapterListBinding =
|
override fun getViewBinding(parent: ViewGroup): ItemChapterListBinding =
|
||||||
ItemChapterListBinding.inflate(inflater, parent, false)
|
ItemChapterListBinding.inflate(inflater, parent, false)
|
||||||
|
|||||||
Reference in New Issue
Block a user