Format round 1

This commit is contained in:
Syer10
2023-03-26 16:19:57 -04:00
parent 7128bcbccc
commit 8c953923fa
4 changed files with 5 additions and 5 deletions

View File

@@ -24,5 +24,5 @@ enum class Sort(@Transient val res: StringResource) {
// TOTAL_CHAPTERS,
// LATEST_CHAPTER,
// DATE_FETCHED,
DATE_ADDED(MR.strings.sort_date_added);
DATE_ADDED(MR.strings.sort_date_added)
}

View File

@@ -66,7 +66,7 @@ enum class MangaStatus(@Transient val res: StringResource) {
LICENSED(MR.strings.status_licensed),
PUBLISHING_FINISHED(MR.strings.status_publishing_finished),
CANCELLED(MR.strings.status_cancelled),
ON_HIATUS(MR.strings.status_on_hiatus);
ON_HIATUS(MR.strings.status_on_hiatus)
}
@Serializable

View File

@@ -196,7 +196,7 @@ class ServerService @Inject constructor(
UNUSED,
STARTING,
STARTED,
FAILED;
FAILED
}
private companion object {

View File

@@ -64,7 +64,7 @@ enum class TopLevelMenus(
Updates(MR.strings.location_updates, Icons.Outlined.NewReleases, Icons.Rounded.NewReleases, UpdatesScreen::class, { UpdatesScreen() }),
Sources(MR.strings.location_sources, Icons.Outlined.Explore, Icons.Rounded.Explore, SourcesScreen::class, { SourcesScreen() }),
Extensions(MR.strings.location_extensions, Icons.Outlined.Store, Icons.Rounded.Store, ExtensionsScreen::class, { ExtensionsScreen() }),
More(MR.strings.location_more, Icons.Outlined.MoreHoriz, Icons.Rounded.MoreHoriz, MoreScreen::class, { MoreScreen() });
More(MR.strings.location_more, Icons.Outlined.MoreHoriz, Icons.Rounded.MoreHoriz, MoreScreen::class, { MoreScreen() })
}
enum class MoreMenus(
@@ -77,5 +77,5 @@ enum class MoreMenus(
) : Menu {
Downloads(MR.strings.location_downloads, Icons.Outlined.Download, Icons.Rounded.Download, DownloadsScreen::class, { DownloadsScreen() }, extraInfo = { DownloadsExtraInfo() }),
Settings(MR.strings.location_settings, Icons.Outlined.Settings, Icons.Rounded.Settings, SettingsScreen::class, { SettingsScreen() }),
About(MR.strings.location_about, Icons.Outlined.Info, Icons.Rounded.Info, AboutScreen::class, { AboutScreen() });
About(MR.strings.location_about, Icons.Outlined.Info, Icons.Rounded.Info, AboutScreen::class, { AboutScreen() })
}