ci: Update Dokka configuration and unify AboutLibraries JSON generation (#4767)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2026-03-12 20:49:11 -05:00 committed by GitHub
parent 629d80ec65
commit 3321c47200
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 43 additions and 79 deletions

View file

@ -196,9 +196,7 @@ fun EntryProviderScope<NavKey>.desktopSettingsGraph(backStack: NavBackStack<NavK
entry<SettingsRoutes.About> {
AboutScreen(
onNavigateUp = { backStack.removeLastOrNull() },
jsonProvider = {
object {}.javaClass.getResourceAsStream("/aboutlibraries.json")?.bufferedReader()?.readText() ?: ""
},
jsonProvider = { SettingsRoutes::class.java.getResource("/aboutlibraries.json")?.readText() ?: "" },
)
}

File diff suppressed because one or more lines are too long