Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Merge from mihon until 0.16.5 #1663

Merged
merged 56 commits into from
Jul 11, 2024
Merged

Commits on Jul 1, 2024

  1. Made some changes to ComicInfo metadata

    * Made some changes to ComicInfo metadata
    
    The web field now contains a " " separated list of source and tracker urls.
    The translator field will now use the source name if the scanlator field is empty.
    
    * lint
    
    * use already existing source instance
    
    * made translator not nullable
    
    * implemented requested changes
    
    created new Mihon exclusive ComicInfo source field  and populated it with SourceName
    
    reverted previous changes to translator field
    
    * Update core-metadata/src/main/java/tachiyomi/core/metadata/comicinfo/ComicInfo.kt
    
    Co-authored-by: AntsyLich <[email protected]>
    
    * Update app/src/main/java/eu/kanade/domain/manga/model/Manga.kt
    
    Co-authored-by: AntsyLich <[email protected]>
    
    * Update app/src/main/java/eu/kanade/domain/manga/model/Manga.kt
    
    Co-authored-by: AntsyLich <[email protected]>
    
    * Update app/src/main/java/eu/kanade/tachiyomi/data/download/Downloader.kt
    
    Co-authored-by: AntsyLich <[email protected]>
    
    * Update app/src/main/java/eu/kanade/tachiyomi/data/download/Downloader.kt
    
    ---------
    
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: Shamicen <[email protected]>
    3 people committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    962b60a View commit details
    Browse the repository at this point in the history
  2. Address ZipFile deprecation warning

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    bf8b570 View commit details
    Browse the repository at this point in the history
  3. Upgrade Compose

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    d52d93c View commit details
    Browse the repository at this point in the history
  4. ChapterDownloadIndicator: Remove composed modifier usage

    Co-authored-by: Ivan Iskandar <[email protected]>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    e4a97ee View commit details
    Browse the repository at this point in the history
  5. Remove custom Pager

    Co-authored-by: Ivan Iskandar <[email protected]>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    0cf34a4 View commit details
    Browse the repository at this point in the history
  6. Switch to Coil3

    Co-authored-by: Ivan Iskandar <[email protected]>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    99cf0cd View commit details
    Browse the repository at this point in the history
  7. Update dependency me.saket.swipe:swipe to v1.3.0

    * Update dependency me.saket.swipe:swipe to v1.3.0
    
    * Update MangaChapterListItem.kt
    
    ---------
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: Ivan Iskandar <[email protected]>
    4 people committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    58fe2c8 View commit details
    Browse the repository at this point in the history
  8. detekt my beloved

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    d0a7a0a View commit details
    Browse the repository at this point in the history
  9. Revert changes to gradle.properties

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    1d4f5f6 View commit details
    Browse the repository at this point in the history
  10. Small cleanup

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    5e5cb55 View commit details
    Browse the repository at this point in the history
  11. Fix ChapterDownloadIndicator

    Co-authored-by: Ivan Iskandar <[email protected]>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    2b46933 View commit details
    Browse the repository at this point in the history
  12. Fix dual page split for local source

    `InputStream.available()` is implementation-dependent, should never assume it will return the total number of bytes in the stream.
    
    Co-authored-by: FooIbar <[email protected]>
    Secozzi and FooIbar committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    7778a2e View commit details
    Browse the repository at this point in the history
  13. Fix shizuku being buggy for multi user setups

    Fetch the current userid separately because shizuku always runs as the main user and would otherwise install and update for the main user
    
    * Update app/src/main/java/eu/kanade/tachiyomi/extension/installer/ShizukuInstaller.kt
    
    ---------
    
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: Redjard <[email protected]>
    3 people committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    c42c7ff View commit details
    Browse the repository at this point in the history
  14. feat: db changes to accommodate new cross device syncing logic.

    * feat: db changes to accommodate new syncing logic.
    
    Using timestamp to sync is a bit skewed due to system clock etc and therefore there was a lot of issues with it such as removing a manga that shouldn't have been removed. Marking chapters as unread even though it was marked as a read. Hopefully by using versioning system it should eliminate those issues.
    
    * chore: add new line.
    
    * chore: remove isSyncing from Chapter/Manga model.
    
    * chore: remove isSyncing leftover.
    
    * chore: remove isSyncing.
    
    * refactor: remove isSync guard.
    
    Just use it directly to 1 now since we don't have the isSyncing field in Manga or Chapter.
    
    * Lint and stuff
    
    * Add missing ,
    
    ---------
    
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: KaiserBh <[email protected]>
    3 people committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    c9161b3 View commit details
    Browse the repository at this point in the history
  15. Translations update from Hosted Weblate (aniyomiorg#445)

    * Translated using Weblate (Esperanto)
    
    Currently translated at 65.1% (517 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/eo/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Croatian)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hr/
    
    * Translated using Weblate (Serbian)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sr/
    
    * Translated using Weblate (Chinese (Simplified))
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hans/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hant/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/es/
    
    * Translated using Weblate (Croatian)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/hr/
    
    * Translated using Weblate (Serbian)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/sr/
    
    * Translated using Weblate (Chinese (Simplified))
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/zh_Hans/
    
    * Translated using Weblate (Filipino)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fil/
    
    * Translated using Weblate (Filipino)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/fil/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/zh_Hant/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/hu/
    
    * Translated using Weblate (Nepali)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ne/
    
    * Translated using Weblate (Polish)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/pl/
    
    * Translated using Weblate (Polish)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/pl/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ru/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/ru/
    
    * Translated using Weblate (Indonesian)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/id/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Indonesian)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/id/
    
    * Translated using Weblate (Dutch)
    
    Currently translated at 94.2% (748 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/nl/
    
    * Translated using Weblate (Dutch)
    
    Currently translated at 94.4% (17 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/nl/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/de/
    
    ---------
    
    Co-authored-by: Radoŝ Porka <[email protected]>
    Co-authored-by: gallegonovato <[email protected]>
    Co-authored-by: Milo Ivir <[email protected]>
    Co-authored-by: David Katrinka <[email protected]>
    Co-authored-by: gekka <[email protected]>
    Co-authored-by: ɴᴇᴋᴏ <[email protected]>
    Co-authored-by: Infy's Tagalog Translations <[email protected]>
    Co-authored-by: Lzmxya <[email protected]>
    Co-authored-by: B4LiN7 <[email protected]>
    Co-authored-by: FateXBlood <[email protected]>
    Co-authored-by: Eryk Michalak <[email protected]>
    Co-authored-by: Dexroneum <[email protected]>
    Co-authored-by: TheKingTermux <[email protected]>
    Co-authored-by: Tim Bolhoeve <[email protected]>
    Co-authored-by: Lyfja <[email protected]>
    
    (cherry picked from commit edd7d0522c305a8aec8ab524214d3a26106dac31)
    weblate authored and Secozzi committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    f54a1a4 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Fix crash in track date selection dialog

    Co-authored-by: Ivan Iskandar <[email protected]>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    94730b1 View commit details
    Browse the repository at this point in the history
  2. Fix multiple issues regarding sources loading too late

    Co-authored-by: jobobby04 <[email protected]>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    fd5d568 View commit details
    Browse the repository at this point in the history
  3. Disable SerialVersionUIDInSerializableClass detekt rule

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    e9f9152 View commit details
    Browse the repository at this point in the history
  4. Use SHA for GitHub actions version

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    81a5335 View commit details
    Browse the repository at this point in the history
  5. Check for dependency update every Friday

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    ea87921 View commit details
    Browse the repository at this point in the history
  6. Fix regression from coil3 migration

    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: jobobby04 <[email protected]>
    3 people committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    3c9cfda View commit details
    Browse the repository at this point in the history
  7. Switch to seconds for DATE_MODIFIED of saved pages

    While most Android skins are seemingly able to handle the millisecond
    format, the documentation technically specifies seconds. This seems to
    be causing issues on Samsung devices using the Samsung Gallery app,
    which renders the millisecond timestamps as if they were second ones,
    causing the dates to be set at some point in the year 56189.
    
    This change should fix that issue on Samsung devices and have no real
    impact on the rest.
    
    Co-authored-by: MajorTanya <[email protected]>
    Secozzi and MajorTanya committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    e016c0e View commit details
    Browse the repository at this point in the history
  8. Update image-decoder, color management

    * Update image-decoder, color management
    
    * move display profile pref
    
    * remove true color pref
    
    * Move Display Profile settings to a new section
    
    * Partially revert "remove true color pref"
    
    This partially reverts commit e1a7581.
    
    * Tweak label
    
    ---------
    
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: w <[email protected]>
    3 people committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    6d17177 View commit details
    Browse the repository at this point in the history
  9. Address detekt issues

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    8378c5a View commit details
    Browse the repository at this point in the history
  10. Fix recycled item's height being 0 in webtoon mode (aniyomiorg#563)

    Which will prevent the new image from being decoded until it's visible.
    
    Co-authored-by: FooIbar <[email protected]>
    Secozzi and FooIbar committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    6b49a5d View commit details
    Browse the repository at this point in the history
  11. chore(deps): update actions/dependency-review-action action to v4.2.3

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Secozzi and renovate[bot] committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    e3c6682 View commit details
    Browse the repository at this point in the history
  12. Fix webtoon last visible item position calculation

    Covers the case when image height > screen height.
    
    Co-authored-by: FooIbar <[email protected]>
    Secozzi and FooIbar committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    1e75c9c View commit details
    Browse the repository at this point in the history
  13. Rework Duplicate Dialog and Allow Migration

    * (Mostly) Working Manga screen migration via duplicate dialog
    
    * Fully working migrate from Browse Search
    
    * Small tweaks for Antsy
    
    * Update app/src/main/java/eu/kanade/tachiyomi/ui/browse/source/browse/BrowseSourceScreenModel.kt
    
    * Update app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaScreen.kt
    
    ---------
    
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: Maddie Witman <[email protected]>
    3 people committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    caf269a View commit details
    Browse the repository at this point in the history
  14. chore(deps): update kotlin

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Secozzi and renovate[bot] committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    a21c83a View commit details
    Browse the repository at this point in the history
  15. fix(deps): update aboutlib.version to v11 (major)

    * fix(deps): update aboutlib.version to v11
    
    * Fix build
    
    ---------
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    ccc66a8 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Grab extension repo detail from repo.json and include in DB

    * WIP Extension Repo DB Support
    
    * Wired in to extension screen, browse settings screen
    
    * Detekt changes
    
    * Ui tweaks and open in browser
    
    * Migrate ExtensionRepos on Update
    
    * Migration Cleanup
    
    * Slight cleanup / error handling
    
    * Update ExtensionRepo from Repo.json during extension search.
    Added Manual refresh in extension repos page.
    
    * Split repo fetching into separate API module, major refactor work
    
    * Removed development strings
    
    * Moved migration to aniyomiorg#3
    
    * Fixed rebase
    
    * Detekt changes
    
    * Added Replace Repository Dialog
    
    * Cleanup, removed platform specific code, PR comments
    
    * Removed extra function, reverted small change
    
    * Detekt cleanup
    
    * Apply suggestions from code review
    
    Co-authored-by: AntsyLich <[email protected]>
    
    * Fixed error introduced in cleanup
    
    * Tweak for multiline when
    
    * Moved getCount() to flow
    
    * changed getCount to non-suspend, used property delegation
    
    * Apply suggestions from code review
    
    Co-authored-by: AntsyLich <[email protected]>
    
    * Fixed formatting with updated comment string
    
    * Big wave of PR comments, renaming/other tweaks
    
    * onOpenWebsite changes
    
    * onOpenWebsite changes
    
    * trying to make single line
    
    * Renamed ExtensionRepoApi.kt to ExtensionRepoService.kt
    
    ---------
    
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: Maddie Witman <[email protected]>
    3 people committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    6c42541 View commit details
    Browse the repository at this point in the history
  2. detekt(detekt): detekt

    Secozzi committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    cdb0621 View commit details
    Browse the repository at this point in the history
  3. Migrated from Accompanist Webview to KevinZou WebView

    * Migrated from Accompanist Webview to KevinZou WebView to preempt deprecation
    
    * Removed old webview from version library
    
    Co-authored-by: Maddie Witman <[email protected]>
    Secozzi and sirlag committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    f4f6986 View commit details
    Browse the repository at this point in the history
  4. Refactor the ExtensionRepoService to use DTOs

    * Refactor the ExtensionRepoService to use DTOs
    
    Slightly refactored the `ExtensionRepoService` so it uses a DTO with
    `parseAs` to avoid parsing the JSON response by hand.
    
    The default Json instance Injekt provides here has
    `ignoreUnknownKeys` enabled, so the `ExtensionRepoMetaDto` only
    specifies the meta key of the response content.
    
    The extension function `toExtensionRepo` allows for mapping the new
    DTO to the `domain` `ExtensionRepo` data class.
    
    * Implement feedback
    
    - Removed SerialName of the ExtensionRepoMetaDto property and renamed
    it `meta`, same as the incoming attribute.
    - Added a more general catch clause that also logs the occurring
    Exception
    
    Detekt likes to complain about TooGenericExceptionCaught, hence the
    Suppress annotation on the function.
    
    Co-authored-by: MajorTanya <[email protected]>
    Secozzi and MajorTanya committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    ce6a79d View commit details
    Browse the repository at this point in the history
  5. Fix repo name used for URL instead of baseUrl

    * Fix repo name used for URL instead of baseUrl
    
    This applies to both the item being shown in the screen as well as the
    "copy to clipboard" button. Before, copying a repo url would return
    "The Repo Name/index.json.min". This PR fixes that.
    
    * Correct Misunderstanding
    
    Passing the whole ExtensionRepo data class through now, using the name
    for display purposes and the baseUrl for copying the URL.
    
    Co-authored-by: MajorTanya <[email protected]>
    Secozzi and MajorTanya committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    5111522 View commit details
    Browse the repository at this point in the history
  6. Fix extension repo crash with TypeReference issue

    Fix by @AntsyLich.
    
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: MajorTanya <[email protected]>
    3 people committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    233af96 View commit details
    Browse the repository at this point in the history
  7. Fix more TypeReference issues and cleanup

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    1ea1072 View commit details
    Browse the repository at this point in the history
  8. Fix mishap

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    92f16c9 View commit details
    Browse the repository at this point in the history
  9. Rewrite Migrations (aniyomiorg#577)

    * Rewrite Migrations
    
    * Fix Detekt errors
    
    * Do migrations synchronous
    
    * Filter and sort migrations
    
    * Review changes
    
    * Review changes 2
    
    * Fix Detekt errors
    
    Co-authored-by: Andreas <[email protected]>
    Secozzi and ghostbear committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    486db1f View commit details
    Browse the repository at this point in the history
  10. detekt(detekt): detekt

    Secozzi committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    428c6e1 View commit details
    Browse the repository at this point in the history
  11. Migrator improvements

    Co-authored-by: Andreas <[email protected]>
    Secozzi and ghostbear committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    664fb1d View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. New Feature: Introduce Upcoming page to Mihon

    * Work in progress upcoming feature
    
    * Checkpointing WIP upcoming feature
    
    * Functional Upcoming Screen
    
    * Rename UpdateCalendar to UpdateUpcoming
    
    * Converted Strings to resources
    
    * Cleanup
    
    * Fixed detekt issues
    
    * Removed Link icon per @AntsyLich's suggestion.
    
    * Detekt
    
    * Fixed Calendar display on wide form factor devices
    
    * Added Key to upcoming lazycolumn
    
    * Updated tablet mode UI to support two column view
    
    * Updated header creation logic
    
    * Updated header creation logic... again
    
    * Moved stray string to resources
    
    * Fixed PR Comments and query refactor
    
    * Tweaks to query, refactored to flow, comments on calendar
    
    * Switched to Date Formatter
    
    * Cleaned up date formatter
    
    * More Refactor work
    
    * Updated Calendar to support localized week formats
    
    * Fixed year format
    
    * Refactored Header animation
    
    * Moved upcoming FAQ
    
    * Completed YearMonth Migration
    
    * Replaced currentYearMonth with delegate
    
    * Even more cleanup
    
    * cleaned up alignment modifiers
    
    * Click Handler and other refactors
    
    * Removed Wrapped Content Height/Size/extra clips
    
    * Huge Refactor for CalendarDay
    
    * Another cleanup attempt
    
    * Migrated to new mihon.feature.* module pattern
    
    * changed access modifier
    
    * A Bunch of changes from the next round of reviews
    
    * Cleanups
    
    * Cleanup 2
    
    ---------
    
    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: Maddie Witman <[email protected]>
    3 people committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    e67a6a2 View commit details
    Browse the repository at this point in the history
  2. fix(deps): update dependency io.github.kevinnzou:compose-webview to v…

    …0.33.6
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Secozzi and renovate[bot] committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    6cdc2c6 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update actions/dependency-review-action action to v4.2.5

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Secozzi and renovate[bot] committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    97beaf2 View commit details
    Browse the repository at this point in the history
  4. Fix Migrator not doing work

    Co-authored-by: Andreas <[email protected]>
    Secozzi and ghostbear committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    26486df View commit details
    Browse the repository at this point in the history
  5. Add ProGuard rule to keep mihon namespace classes

    Co-authored-by: AntsyLich <[email protected]>
    Co-authored-by: MajorTanya <[email protected]>
    3 people committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    67875b7 View commit details
    Browse the repository at this point in the history
  6. Moves upcoming requirement from existence to current day or later.

    * Moves upcoming requirement from existence to current day or later.
    
    * Suppress millis conversion warning
    
    Co-authored-by: Maddie Witman <[email protected]>
    Secozzi and sirlag committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    057da07 View commit details
    Browse the repository at this point in the history
  7. Translations update from Hosted Weblate (aniyomiorg#508)

    * Translated using Weblate (Greek)
    
    Currently translated at 99.8% (793 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/el/
    
    * Translated using Weblate (Turkish)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/tr/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/de/
    
    * Translated using Weblate (Persian)
    
    Currently translated at 84.7% (673 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fa/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/de/
    
    * Translated using Weblate (Greek)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/el/
    
    * Translated using Weblate (Portuguese (Brazil))
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/pt_BR/
    
    * Translated using Weblate (Portuguese (Brazil))
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/pt_BR/
    
    * Translated using Weblate (Galician)
    
    Currently translated at 95.9% (762 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/gl/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/ja/
    
    * Translated using Weblate (Javanese)
    
    Currently translated at 38.8% (7 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/jv/
    
    * Translated using Weblate (Galician)
    
    Currently translated at 96.5% (767 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/gl/
    
    * Translated using Weblate (Galician)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/gl/
    
    * Update translation files
    
    Updated by "Cleanup translation files" hook in Weblate.
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (793 of 793 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Croatian)
    
    Currently translated at 100.0% (793 of 793 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hr/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (793 of 793 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hant/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 100.0% (795 of 795 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ru/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (795 of 795 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (795 of 795 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (795 of 795 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 99.7% (796 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ru/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Filipino)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fil/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/de/
    
    * Translated using Weblate (Chinese (Simplified))
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hans/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hant/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.4% (794 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Czech)
    
    Currently translated at 99.8% (797 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/cs/
    
    * Translated using Weblate (Italian)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/it/
    
    * Translated using Weblate (Nepali)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ne/
    
    * Translated using Weblate (Czech)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/cs/
    
    * Translated using Weblate (Italian)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/it/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.7% (801 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ru/
    
    * Translated using Weblate (Filipino)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fil/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.7% (801 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Chinese (Simplified))
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hans/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/de/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.7% (801 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hant/
    
    ---------
    
    Co-authored-by: Syrodil Eventalious <[email protected]>
    Co-authored-by: NukeSource <[email protected]>
    Co-authored-by: Lyfja <[email protected]>
    Co-authored-by: Arash <[email protected]>
    Co-authored-by: Pitpe11 <[email protected]>
    Co-authored-by: Mr. Fakezay <[email protected]>
    Co-authored-by: kevans <[email protected]>
    Co-authored-by: TheKingTermux <[email protected]>
    Co-authored-by: gallegonovato <[email protected]>
    Co-authored-by: Milo Ivir <[email protected]>
    Co-authored-by: Lzmxya <[email protected]>
    Co-authored-by: Dexroneum <[email protected]>
    Co-authored-by: B4LiN7 <[email protected]>
    Co-authored-by: Infy's Tagalog Translations <[email protected]>
    Co-authored-by: gekka <[email protected]>
    Co-authored-by: akir45 <[email protected]>
    Co-authored-by: Matyáš Caras <[email protected]>
    Co-authored-by: Federico Pierantoni <[email protected]>
    Co-authored-by: FateXBlood <[email protected]>
    
    (cherry picked from commit 6abaa47f5beacdc36a40cec98e3d7f02ac77f320)
    weblate authored and Secozzi committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    4ea240c View commit details
    Browse the repository at this point in the history
  8. Translations update from Hosted Weblate (aniyomiorg#609)

    * Translated using Weblate (Greek)
    
    Currently translated at 99.8% (793 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/el/
    
    * Translated using Weblate (Turkish)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/tr/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/de/
    
    * Translated using Weblate (Persian)
    
    Currently translated at 84.7% (673 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fa/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/de/
    
    * Translated using Weblate (Greek)
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/el/
    
    * Translated using Weblate (Portuguese (Brazil))
    
    Currently translated at 100.0% (794 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/pt_BR/
    
    * Translated using Weblate (Portuguese (Brazil))
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/pt_BR/
    
    * Translated using Weblate (Galician)
    
    Currently translated at 95.9% (762 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/gl/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/ja/
    
    * Translated using Weblate (Javanese)
    
    Currently translated at 38.8% (7 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/jv/
    
    * Translated using Weblate (Galician)
    
    Currently translated at 96.5% (767 of 794 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/gl/
    
    * Translated using Weblate (Galician)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/gl/
    
    * Update translation files
    
    Updated by "Cleanup translation files" hook in Weblate.
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (793 of 793 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Croatian)
    
    Currently translated at 100.0% (793 of 793 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hr/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (793 of 793 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hant/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 100.0% (795 of 795 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ru/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (795 of 795 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (795 of 795 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (795 of 795 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 99.7% (796 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ru/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Filipino)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fil/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/de/
    
    * Translated using Weblate (Chinese (Simplified))
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hans/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hant/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.4% (794 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Czech)
    
    Currently translated at 99.8% (797 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/cs/
    
    * Translated using Weblate (Italian)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/it/
    
    * Translated using Weblate (Nepali)
    
    Currently translated at 100.0% (798 of 798 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ne/
    
    * Translated using Weblate (Czech)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/cs/
    
    * Translated using Weblate (Italian)
    
    Currently translated at 100.0% (18 of 18 strings)
    
    Translation: Mihon/Mihon Plurals
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon-plurals/it/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.7% (801 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ru/
    
    * Translated using Weblate (Filipino)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fil/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.7% (801 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Chinese (Simplified))
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hans/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/de/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.7% (801 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hant/
    
    * Translated using Weblate (Amharic)
    
    Currently translated at 34.3% (276 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/am/
    
    * Translated using Weblate (Arabic)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ar/
    
    * Translated using Weblate (Belarusian)
    
    Currently translated at 42.0% (338 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/be/
    
    * Translated using Weblate (Bulgarian)
    
    Currently translated at 79.8% (641 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/bg/
    
    * Translated using Weblate (Bengali)
    
    Currently translated at 79.2% (636 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/bn/
    
    * Translated using Weblate (Catalan)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ca/
    
    * Translated using Weblate (Cebuano)
    
    Currently translated at 55.0% (442 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ceb/
    
    * Translated using Weblate (Czech)
    
    Currently translated at 99.2% (797 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/cs/
    
    * Translated using Weblate (Chuvash)
    
    Currently translated at 74.5% (599 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/cv/
    
    * Translated using Weblate (Danish)
    
    Currently translated at 39.9% (321 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/da/
    
    * Translated using Weblate (German)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/de/
    
    * Translated using Weblate (Greek)
    
    Currently translated at 98.6% (792 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/el/
    
    * Translated using Weblate (Esperanto)
    
    Currently translated at 64.2% (516 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/eo/
    
    * Translated using Weblate (Spanish)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/es/
    
    * Translated using Weblate (Basque)
    
    Currently translated at 74.4% (598 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/eu/
    
    * Translated using Weblate (Persian)
    
    Currently translated at 83.5% (671 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fa/
    
    * Translated using Weblate (Finnish)
    
    Currently translated at 84.0% (675 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fi/
    
    * Translated using Weblate (Filipino)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fil/
    
    * Translated using Weblate (French)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/fr/
    
    * Translated using Weblate (Galician)
    
    Currently translated at 95.2% (765 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/gl/
    
    * Translated using Weblate (Hebrew)
    
    Currently translated at 89.7% (721 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/he/
    
    * Translated using Weblate (Hindi)
    
    Currently translated at 82.6% (664 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hi/
    
    * Translated using Weblate (Croatian)
    
    Currently translated at 98.7% (793 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hr/
    
    * Translated using Weblate (Hungarian)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/hu/
    
    * Translated using Weblate (Indonesian)
    
    Currently translated at 98.6% (792 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/id/
    
    * Translated using Weblate (Italian)
    
    Currently translated at 99.3% (798 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/it/
    
    * Translated using Weblate (Japanese)
    
    Currently translated at 99.7% (801 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ja/
    
    * Translated using Weblate (Javanese)
    
    Currently translated at 38.3% (308 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/jv/
    
    * Translated using Weblate (Georgian)
    
    Currently translated at 52.5% (422 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ka/
    
    * Translated using Weblate (Kazakh)
    
    Currently translated at 86.1% (692 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/kk/
    
    * Translated using Weblate (Khmer (Central))
    
    Currently translated at 26.7% (215 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/km/
    
    * Translated using Weblate (Kannada)
    
    Currently translated at 62.2% (500 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/kn/
    
    * Translated using Weblate (Korean)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ko/
    
    * Translated using Weblate (Lithuanian)
    
    Currently translated at 84.9% (682 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/lt/
    
    * Translated using Weblate (Latvian)
    
    Currently translated at 93.3% (750 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/lv/
    
    * Translated using Weblate (Marathi)
    
    Currently translated at 26.6% (214 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/mr/
    
    * Translated using Weblate (Malay)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ms/
    
    * Translated using Weblate (Norwegian Bokmål)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/nb_NO/
    
    * Translated using Weblate (Nepali)
    
    Currently translated at 99.3% (798 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ne/
    
    * Translated using Weblate (Dutch)
    
    Currently translated at 92.9% (746 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/nl/
    
    * Translated using Weblate (Norwegian Nynorsk)
    
    Currently translated at 33.6% (270 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/nn/
    
    * Translated using Weblate (Polish)
    
    Currently translated at 98.6% (792 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/pl/
    
    * Translated using Weblate (Portuguese (Brazil))
    
    Currently translated at 98.6% (792 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/pt_BR/
    
    * Translated using Weblate (Portuguese)
    
    Currently translated at 88.6% (712 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/pt/
    
    * Translated using Weblate (Romanian)
    
    Currently translated at 97.8% (786 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ro/
    
    * Translated using Weblate (Russian)
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/ru/
    
    * Translated using Weblate (Sanskrit)
    
    Currently translated at 71.3% (573 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sa/
    
    * Translated using Weblate (Yakut)
    
    Currently translated at 51.3% (412 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sah/
    
    * Translated using Weblate (Sardinian)
    
    Currently translated at 93.3% (750 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sc/
    
    * Translated using Weblate (Kurdish (Southern))
    
    Currently translated at 29.8% (240 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sdh/
    
    * Translated using Weblate (Slovak)
    
    Currently translated at 78.7% (632 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sk/
    
    * Translated using Weblate (Albanian)
    
    Currently translated at 86.6% (696 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sq/
    
    * Translated using Weblate (Serbian)
    
    Currently translated at 98.6% (792 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sr/
    
    * Translated using Weblate (Swedish)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/sv/
    
    * Translated using Weblate (Telugu)
    
    Currently translated at 24.5% (197 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/te/
    
    * Translated using Weblate (Thai)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/th/
    
    * Translated using Weblate (Turkish)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/tr/
    
    * Translated using Weblate (Ukrainian)
    
    Currently translated at 98.5% (791 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/uk/
    
    * Translated using Weblate (Uzbek)
    
    Currently translated at 44.4% (357 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/uz/
    
    * Translated using Weblate (Vietnamese)
    
    Currently translated at 96.3% (774 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/vi/
    
    * Translated using Weblate (Chinese (Simplified))
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hans/
    
    * Translated using Weblate (Chinese (Traditional))
    
    Currently translated at 100.0% (803 of 803 strings)
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/zh_Hant/
    
    * Update translation files
    
    Updated by "Remove blank strings" hook in Weblate.
    
    Translation: Mihon/Mihon
    Translate-URL: https://hosted.weblate.org/projects/mihon/mihon/
    
    ---------
    
    Co-authored-by: Syrodil Eventalious <[email protected]>
    Co-authored-by: NukeSource <[email protected]>
    Co-authored-by: Lyfja <[email protected]>
    Co-authored-by: Arash <[email protected]>
    Co-authored-by: Pitpe11 <[email protected]>
    Co-authored-by: Mr. Fakezay <[email protected]>
    Co-authored-by: kevans <[email protected]>
    Co-authored-by: TheKingTermux <[email protected]>
    Co-authored-by: gallegonovato <[email protected]>
    Co-authored-by: Milo Ivir <[email protected]>
    Co-authored-by: Lzmxya <[email protected]>
    Co-authored-by: Dexroneum <[email protected]>
    Co-authored-by: B4LiN7 <[email protected]>
    Co-authored-by: Infy's Tagalog Translations <[email protected]>
    Co-authored-by: gekka <[email protected]>
    Co-authored-by: akir45 <[email protected]>
    Co-authored-by: Matyáš Caras <[email protected]>
    Co-authored-by: Federico Pierantoni <[email protected]>
    Co-authored-by: FateXBlood <[email protected]>
    
    (cherry picked from commit 34bf5c6f87d74df2dcc6d0f23f5a73425d2fd6ef)
    weblate authored and Secozzi committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    a028ba3 View commit details
    Browse the repository at this point in the history
  9. Disable mpp and agp compability warning

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    edc9637 View commit details
    Browse the repository at this point in the history
  10. Fix build time zone in about screen

    And slight cleanup
    
    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    c593c83 View commit details
    Browse the repository at this point in the history
  11. Rework buildSrc and remove usage of subprojects

    Co-authored-by: AntsyLich <[email protected]>
    Secozzi and AntsyLich committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    3eb3f01 View commit details
    Browse the repository at this point in the history
  12. MangaCoverFetcher: Small cleanups

    Co-authored-by: Ivan Iskandar <[email protected]>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    f258614 View commit details
    Browse the repository at this point in the history
  13. Revert "Update Scaffold fork (#10143)" + Cleanup

    Causes delay of one frame before actual contentPadding is measured
    
    This reverts commit mihonapp/mihon@ea15bc7.
    
    Co-authored-by: Ivan Iskandar <[email protected]>
    Co-authored-by: AntsyLich <[email protected]>
    3 people committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    331df8a View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    fb52755 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Configuration menu
    Copy the full SHA
    525c471 View commit details
    Browse the repository at this point in the history