mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 06:42:05 +01:00
Rewrite backend
- Use Tachiyomi 1.x Preference backend - Switch DI from Koin to Toothpick - Use gradle BuildConfig library to move variables from gradle to the App - Switch from Logback to Log4j2 with slf4j implmenetation - Try to use the same java as the application for the server - Add Run Debug run configuration
This commit is contained in:
@@ -32,9 +32,8 @@ import androidx.compose.ui.text.TextStyle
|
||||
import androidx.compose.ui.text.font.FontFamily
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.unit.sp
|
||||
import ca.gosyer.backend.models.Manga
|
||||
import ca.gosyer.data.models.Manga
|
||||
import ca.gosyer.ui.base.components.KtorImage
|
||||
import ca.gosyer.util.system.get
|
||||
|
||||
@Composable
|
||||
fun LibraryMangaCompactGrid(
|
||||
@@ -78,7 +77,7 @@ private fun LibraryMangaCompactGridItem(
|
||||
.clickable(onClick = onClick)
|
||||
) {
|
||||
if (cover != null) {
|
||||
KtorImage(get(), cover, contentScale = ContentScale.Crop)
|
||||
KtorImage(cover, contentScale = ContentScale.Crop)
|
||||
}
|
||||
Box(modifier = Modifier.fillMaxSize().then(shadowGradient))
|
||||
Text(
|
||||
|
||||
Reference in New Issue
Block a user