diff --git a/.github/workflows/build_preview.yml b/.github/workflows/build_preview.yml index 3ab0025c5..79348c559 100644 --- a/.github/workflows/build_preview.yml +++ b/.github/workflows/build_preview.yml @@ -152,7 +152,7 @@ jobs: run: ./gradlew spotlessCheck - name: Build app - run: ./gradlew assemblePreview + run: ./gradlew assemblePreview -Pinclude-analytics -Penable-updater - name: Run unit tests run: ./gradlew testReleaseUnitTest diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index 36d458f8c..3725c4e78 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -69,7 +69,7 @@ jobs: run: ./gradlew spotlessCheck - name: Build app - run: ./gradlew assembleRelease -Pwith-analytics -Pwith-updater + run: ./gradlew assembleRelease -Pinclude-analytics -Penable-updater - name: Run unit tests run: ./gradlew testReleaseUnitTest diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index d99a98167..5f348fd2b 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -125,7 +125,7 @@ jobs: run: ./gradlew spotlessCheck - name: Build app - run: ./gradlew assembleRelease -Pwith-analytics -Pwith-updater + run: ./gradlew assembleRelease -Pinclude-analytics -Penable-updater - name: Run unit tests run: ./gradlew testReleaseUnitTest diff --git a/app/build.gradle.kts b/app/build.gradle.kts index da682f64f..23e565fee 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,10 +11,17 @@ plugins { id("com.github.ben-manes.versions") } -val includeAnalytics = project.hasProperty("with-analytics") -val includeUpdater = project.hasProperty("with-updater") +class ConfigClass { + val includeAnalytics: Boolean = project.hasProperty("include-analytics") + val enableUpdater: Boolean = project.hasProperty("enable-updater") + val enableCodeShrink: Boolean = !project.hasProperty("disable-code-shrink") + val includeDependencyInfo: Boolean = project.hasProperty("include-dependency-info") +} -if (includeAnalytics) { +@Suppress("PropertyName") +val Config = ConfigClass() + +if (Config.includeAnalytics) { pluginManager.apply { apply(libs.plugins.google.services.get().pluginId) apply(libs.plugins.firebase.crashlytics.get().pluginId) @@ -33,9 +40,8 @@ android { buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"") buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"") buildConfigField("String", "BUILD_TIME", "\"${getBuildTime()}\"") - buildConfigField("boolean", "INCLUDE_ANALYTICS", "$includeAnalytics") - buildConfigField("boolean", "INCLUDE_UPDATER", "$includeUpdater") - buildConfigField("boolean", "PREVIEW", "false") + buildConfigField("boolean", "ANALYTICS_INCLUDED", "${Config.includeAnalytics}") + buildConfigField("boolean", "UPDATER_ENABLED", "${Config.enableUpdater}") testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } @@ -47,11 +53,14 @@ android { isPseudoLocalesEnabled = true } val release by getting { - isMinifyEnabled = true - isShrinkResources = true + isMinifyEnabled = Config.enableCodeShrink + isShrinkResources = Config.enableCodeShrink proguardFiles("proguard-android-optimize.txt", "proguard-rules.pro") } + + val commonMatchingFallbacks = listOf(release.name) + create("releaseTest") { initWith(release) @@ -59,14 +68,14 @@ android { isMinifyEnabled = false isShrinkResources = false - matchingFallbacks.add(release.name) + matchingFallbacks.addAll(commonMatchingFallbacks) } create("foss") { initWith(release) - applicationIdSuffix = ".t-foss" + applicationIdSuffix = ".foss" - matchingFallbacks.add(release.name) + matchingFallbacks.addAll(commonMatchingFallbacks) } create("preview") { initWith(release) @@ -76,9 +85,7 @@ android { versionNameSuffix = debug.versionNameSuffix signingConfig = debug.signingConfig - matchingFallbacks.add(release.name) - - buildConfigField("boolean", "PREVIEW", "true") + matchingFallbacks.addAll(commonMatchingFallbacks) } create("benchmark") { initWith(release) @@ -90,12 +97,12 @@ android { signingConfig = debug.signingConfig - matchingFallbacks.add(release.name) + matchingFallbacks.addAll(commonMatchingFallbacks) } } sourceSets { - val analyticsDir = if (includeAnalytics) "analytics-firebase" else "analytics-firebase-noop" + val analyticsDir = if (Config.includeAnalytics) "analytics-firebase" else "analytics-firebase-noop" getByName("main").kotlin.srcDirs("src/$analyticsDir/kotlin") getByName("preview").res.srcDirs("src/beta/res") getByName("benchmark").res.srcDirs("src/debug/res") @@ -140,7 +147,8 @@ android { } dependenciesInfo { - includeInApk = false + includeInApk = Config.includeDependencyInfo + includeInBundle = Config.includeDependencyInfo } buildFeatures { @@ -300,7 +308,7 @@ dependencies { implementation(libs.logcat) // Crash reports/analytics - if (includeAnalytics) { + if (Config.includeAnalytics) { implementation(platform(libs.firebase.bom)) implementation(libs.firebase.analytics) implementation(libs.firebase.crashlytics) diff --git a/app/src/analytics-firebase/kotlin/exh/log/CrashlyticsPrinter.kt b/app/src/analytics-firebase/kotlin/exh/log/CrashlyticsPrinter.kt index 2b481ed75..fe18053bb 100644 --- a/app/src/analytics-firebase/kotlin/exh/log/CrashlyticsPrinter.kt +++ b/app/src/analytics-firebase/kotlin/exh/log/CrashlyticsPrinter.kt @@ -3,7 +3,7 @@ package exh.log import com.elvishew.xlog.printer.Printer import com.google.firebase.Firebase import com.google.firebase.crashlytics.crashlytics -import eu.kanade.tachiyomi.BuildConfig +import eu.kanade.tachiyomi.util.system.isDebugBuildType class CrashlyticsPrinter(private val logLevel: Int) : Printer { /** @@ -19,7 +19,7 @@ class CrashlyticsPrinter(private val logLevel: Int) : Printer { Firebase.crashlytics.log("$logLevel/$tag: $msg") } catch (t: Throwable) { // Crash in debug if shit like this happens - if (BuildConfig.DEBUG) throw t + if (isDebugBuildType) throw t } } } diff --git a/app/src/debug/res/raw/preview_latest.json b/app/src/debug/res/raw/preview_latest.json deleted file mode 100644 index dff62af30..000000000 --- a/app/src/debug/res/raw/preview_latest.json +++ /dev/null @@ -1,229 +0,0 @@ -{ - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/184548882", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/184548882/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/184548882/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9576", - "id": 184548882, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4K__4S", - "tag_name": "r9576", - "target_commitish": "main", - "name": "Komikku Preview r9576", - "draft": false, - "prerelease": false, - "created_at": "2024-10-31T21:22:20Z", - "published_at": "2024-11-10T07:50:48Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437757", - "id": 205437757, - "node_id": "RA_kwDOL4q0GM4MPrs9", - "name": "Komikku-arm64-v8a-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36655297, - "download_count": 731, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-arm64-v8a-r9576.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437760", - "id": 205437760, - "node_id": "RA_kwDOL4q0GM4MPrtA", - "name": "Komikku-armeabi-v7a-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31707343, - "download_count": 72, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-armeabi-v7a-r9576.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437758", - "id": 205437758, - "node_id": "RA_kwDOL4q0GM4MPrs-", - "name": "Komikku-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 88282864, - "download_count": 67, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:44Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-r9576.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437759", - "id": 205437759, - "node_id": "RA_kwDOL4q0GM4MPrs_", - "name": "Komikku-x86-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 37822615, - "download_count": 3, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-x86-r9576.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437761", - "id": 205437761, - "node_id": "RA_kwDOL4q0GM4MPrtB", - "name": "Komikku-x86_64-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 39817388, - "download_count": 14, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-x86_64-r9576.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9576", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9576", - "body": "#### What's Changed\r\n##### New\r\n- Filter only Obsolete sources in Migration screen (@cuong-tran)\r\n- Add option to always use SSIV for image decoding (@AntsyLich)\r\n\r\n##### Improve\r\n- Trying to load saved-search as much as possible even though filterList might changed (@cuong-tran)\r\n- Improve saved-search usage (@cuong-tran)\r\n- Allow reset filters on SourceFeedScreen (@cuong-tran)\r\n- Allow using saved-search while migration source search (@cuong-tran)\r\n- Change bulk-favorite icon to Heart (@cuong-tran)\r\n- Bump default user agent (@AntsyLich)\r\n- Support comma (,) delimiter when searching library (@cuong-tran)\r\n- Auto format extension repo URLs (@AntsyLich)\r\n- Some improvements to Bangumi tracker search (@MajorTanya)\r\n- Do not sync automatically when not connected to a network. (@NGB-Was-Taken)\r\n\r\n##### Fix\r\n- Fix a rare crash when invoking \"Mark previous as read\" action (@AntsyLich)\r\n- Fix long strip images not loading in some old devices (@AntsyLich)\r\n- Fix InterceptActivity crash (@jobobby04)\r\n- Fix crashes from Exh Updater (@jobobby04)\r\n- Fix app onStart sync (@jobobby04)\r\n- Fix crash on MigrationListScreen with null accessing a mutableState when it's being put in the background (@cuong-tran)\r\n- Fix Reader's dialog font size (@cuong-tran)\r\n- Fix multiple issues with the E-Hentai updater (@jobobby04)\r\n- Fix a possible crash with auto-zoom (@jobobby04)\r\n- Fix source-search clear causing disappearance of search box (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9523...r9576\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | d4810c40e54cfb0834dc1253b83c502ba0307a89114b9842f1a01f270d854979 |\r\n| arm64-v8a | 329720d8616359ee311c8bb4f1b151d8318e4afbf996c7d9202c01778ae99128 |\r\n| armeabi-v7a | cd500e73fd8397b07994a3d4de2028af35d2cc91c1c054ce55ad0321347498ca |\r\n| x86 | cc45fb1109cc08127d084fd780cba15d1d011aae6fae31a05690bc0a3ae027e4 |\r\n| x86_64 | a2da81a678d626e0a80b2fe393f987f8059e3924d67f6e1a6e145972e7373e04 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9576.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/184548882/reactions", - "total_count": 6, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 6, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 5 -} \ No newline at end of file diff --git a/app/src/debug/res/raw/previews.json b/app/src/debug/res/raw/previews.json deleted file mode 100644 index d03ab76a2..000000000 --- a/app/src/debug/res/raw/previews.json +++ /dev/null @@ -1,5846 +0,0 @@ -[ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/184548882", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/184548882/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/184548882/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9576", - "id": 184548882, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4K__4S", - "tag_name": "r9576", - "target_commitish": "main", - "name": "Komikku Preview r9576", - "draft": false, - "prerelease": false, - "created_at": "2024-10-31T21:22:20Z", - "published_at": "2024-11-10T07:50:48Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437757", - "id": 205437757, - "node_id": "RA_kwDOL4q0GM4MPrs9", - "name": "Komikku-arm64-v8a-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36655297, - "download_count": 731, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-arm64-v8a-r9576.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437760", - "id": 205437760, - "node_id": "RA_kwDOL4q0GM4MPrtA", - "name": "Komikku-armeabi-v7a-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31707343, - "download_count": 72, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-armeabi-v7a-r9576.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437758", - "id": 205437758, - "node_id": "RA_kwDOL4q0GM4MPrs-", - "name": "Komikku-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 88282864, - "download_count": 67, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:44Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-r9576.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437759", - "id": 205437759, - "node_id": "RA_kwDOL4q0GM4MPrs_", - "name": "Komikku-x86-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 37822615, - "download_count": 3, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-x86-r9576.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/205437761", - "id": 205437761, - "node_id": "RA_kwDOL4q0GM4MPrtB", - "name": "Komikku-x86_64-r9576.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 39817388, - "download_count": 14, - "created_at": "2024-11-10T07:42:42Z", - "updated_at": "2024-11-10T07:42:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9576/Komikku-x86_64-r9576.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9576", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9576", - "body": "#### What's Changed\r\n##### New\r\n- Filter only Obsolete sources in Migration screen (@cuong-tran)\r\n- Add option to always use SSIV for image decoding (@AntsyLich)\r\n\r\n##### Improve\r\n- Trying to load saved-search as much as possible even though filterList might changed (@cuong-tran)\r\n- Improve saved-search usage (@cuong-tran)\r\n- Allow reset filters on SourceFeedScreen (@cuong-tran)\r\n- Allow using saved-search while migration source search (@cuong-tran)\r\n- Change bulk-favorite icon to Heart (@cuong-tran)\r\n- Bump default user agent (@AntsyLich)\r\n- Support comma (,) delimiter when searching library (@cuong-tran)\r\n- Auto format extension repo URLs (@AntsyLich)\r\n- Some improvements to Bangumi tracker search (@MajorTanya)\r\n- Do not sync automatically when not connected to a network. (@NGB-Was-Taken)\r\n\r\n##### Fix\r\n- Fix a rare crash when invoking \"Mark previous as read\" action (@AntsyLich)\r\n- Fix long strip images not loading in some old devices (@AntsyLich)\r\n- Fix InterceptActivity crash (@jobobby04)\r\n- Fix crashes from Exh Updater (@jobobby04)\r\n- Fix app onStart sync (@jobobby04)\r\n- Fix crash on MigrationListScreen with null accessing a mutableState when it's being put in the background (@cuong-tran)\r\n- Fix Reader's dialog font size (@cuong-tran)\r\n- Fix multiple issues with the E-Hentai updater (@jobobby04)\r\n- Fix a possible crash with auto-zoom (@jobobby04)\r\n- Fix source-search clear causing disappearance of search box (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9523...r9576\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | d4810c40e54cfb0834dc1253b83c502ba0307a89114b9842f1a01f270d854979 |\r\n| arm64-v8a | 329720d8616359ee311c8bb4f1b151d8318e4afbf996c7d9202c01778ae99128 |\r\n| armeabi-v7a | cd500e73fd8397b07994a3d4de2028af35d2cc91c1c054ce55ad0321347498ca |\r\n| x86 | cc45fb1109cc08127d084fd780cba15d1d011aae6fae31a05690bc0a3ae027e4 |\r\n| x86_64 | a2da81a678d626e0a80b2fe393f987f8059e3924d67f6e1a6e145972e7373e04 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9576.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/184548882/reactions", - "total_count": 6, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 6, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 5 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/182445840", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/182445840/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/182445840/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9523", - "id": 182445840, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4K3-cQ", - "tag_name": "r9523", - "target_commitish": "main", - "name": "Komikku Preview r9523", - "draft": false, - "prerelease": false, - "created_at": "2024-10-29T10:47:21Z", - "published_at": "2024-10-31T17:21:37Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202569133", - "id": 202569133, - "node_id": "RA_kwDOL4q0GM4MEvWt", - "name": "Komikku-arm64-v8a-r9523.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36579489, - "download_count": 590, - "created_at": "2024-10-29T11:35:07Z", - "updated_at": "2024-10-29T11:35:08Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9523/Komikku-arm64-v8a-r9523.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202569129", - "id": 202569129, - "node_id": "RA_kwDOL4q0GM4MEvWp", - "name": "Komikku-armeabi-v7a-r9523.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31627439, - "download_count": 39, - "created_at": "2024-10-29T11:35:07Z", - "updated_at": "2024-10-29T11:35:08Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9523/Komikku-armeabi-v7a-r9523.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202569131", - "id": 202569131, - "node_id": "RA_kwDOL4q0GM4MEvWr", - "name": "Komikku-r9523.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 88207056, - "download_count": 67, - "created_at": "2024-10-29T11:35:07Z", - "updated_at": "2024-10-29T11:35:09Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9523/Komikku-r9523.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202569130", - "id": 202569130, - "node_id": "RA_kwDOL4q0GM4MEvWq", - "name": "Komikku-x86-r9523.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 37746807, - "download_count": 4, - "created_at": "2024-10-29T11:35:07Z", - "updated_at": "2024-10-29T11:35:08Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9523/Komikku-x86-r9523.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202569132", - "id": 202569132, - "node_id": "RA_kwDOL4q0GM4MEvWs", - "name": "Komikku-x86_64-r9523.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 39741580, - "download_count": 7, - "created_at": "2024-10-29T11:35:07Z", - "updated_at": "2024-10-29T11:35:08Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9523/Komikku-x86_64-r9523.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9523", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9523", - "body": "#### What's Changed\r\n##### Improve\r\n- add Back button on Migration screen (@cuong-tran)\r\n- Migration integrated H enable (@cuong-tran)\r\n\r\n##### Fix\r\n- fix crash if cancel migration too soon (@cuong-tran)\r\n- fix unable to migrate after manually cancel & search for entry (@cuong-tran)\r\n- Fix release update version checking & update release note template (@cuong-tran)\r\n\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9512...r9523\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 6f610b0034db53116cda391b4a03c305edb7fb92037001314264c3f519470312 |\r\n| arm64-v8a | 00d511358532646d0c8e662cf4226982b8925d3e672d18c7cac823b609abfe73 |\r\n| armeabi-v7a | 80a908037a6c2171857c11ff7c571571a602283365c146adb330c8d9b357b199 |\r\n| x86 | 517cd808d1a9905f8a8655ddea35b145e8b09eb0c8d40735531820e3171bab1f |\r\n| x86_64 | 62e8e16782ae0836375d04ed954975ada48c043c427b1d0dcd155fbc67e0e5c1 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9523.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/182445840/reactions", - "total_count": 3, - "+1": 3, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/182306952", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/182306952/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/182306952/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9512", - "id": 182306952, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4K3ciI", - "tag_name": "r9512", - "target_commitish": "main", - "name": "Komikku Preview r9512", - "draft": false, - "prerelease": false, - "created_at": "2024-10-28T14:58:04Z", - "published_at": "2024-10-28T17:25:48Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202379531", - "id": 202379531, - "node_id": "RA_kwDOL4q0GM4MEBEL", - "name": "Komikku-arm64-v8a-r9512.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36579489, - "download_count": 398, - "created_at": "2024-10-28T17:19:22Z", - "updated_at": "2024-10-28T17:19:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9512/Komikku-arm64-v8a-r9512.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202379530", - "id": 202379530, - "node_id": "RA_kwDOL4q0GM4MEBEK", - "name": "Komikku-armeabi-v7a-r9512.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31627439, - "download_count": 23, - "created_at": "2024-10-28T17:19:22Z", - "updated_at": "2024-10-28T17:19:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9512/Komikku-armeabi-v7a-r9512.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202379527", - "id": 202379527, - "node_id": "RA_kwDOL4q0GM4MEBEH", - "name": "Komikku-r9512.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 88207056, - "download_count": 30, - "created_at": "2024-10-28T17:19:22Z", - "updated_at": "2024-10-28T17:19:24Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9512/Komikku-r9512.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202379529", - "id": 202379529, - "node_id": "RA_kwDOL4q0GM4MEBEJ", - "name": "Komikku-x86-r9512.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 37746807, - "download_count": 2, - "created_at": "2024-10-28T17:19:22Z", - "updated_at": "2024-10-28T17:19:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9512/Komikku-x86-r9512.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/202379533", - "id": 202379533, - "node_id": "RA_kwDOL4q0GM4MEBEN", - "name": "Komikku-x86_64-r9512.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 39741580, - "download_count": 6, - "created_at": "2024-10-28T17:19:22Z", - "updated_at": "2024-10-28T17:19:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9512/Komikku-x86_64-r9512.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9512", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9512", - "body": "### What's Changed\r\n#### New\r\n- Error screen (#462) (@cuong-tran)\r\n- Range-selection for Migration (#466) (@cuong-tran)\r\n\r\n#### Improve\r\n- Loading screen for Upcomping/Updating screen (@cuong-tran)\r\n- allow chapter 0 dupe auto mark as read (jobobby04/tachiyomiSY#1291) (@Riztard)\r\n- rework panorama cover settings (@cuong-tran)\r\n- update all trackers based on common data when new tracker is added (@cuong-tran)\r\n- show a toast whenever progress is synced from Trackers (@cuong-tran)\r\n- Always/Ask/Nerver update trackers on mark as read (mihonapp/mihon#1374) (@Animeboynz)\r\n- Avoid blocking call to load categories in settings (@cuong-tran)\r\n- Update translation\r\n\r\n#### Fix\r\n- Fix for ExHentai (@az4521, @jobobby04)\r\n- Fix sync progress from tracker not working if chapters' order is messed up after backup restoration (@cuong-tran)\r\n- Fix app crash when removing tracked entry from tracker (@cuong-tran)\r\n- Fix settings SliderItem steps count (mihonapp/mihon#1356) (@abdurisaq)\r\n- Cleanup Slider usage (@AntsyLich)\r\n- fix title for Checking update screen to \"To be updated\" (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9484...r9512\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 478deabe5cdcfa3dd99249a2cda21a4699a7d46dc3df8b03f7343503be5e6dad |\r\n| arm64-v8a | 81dcaa4f2b74eeb17690f0dcbc5afefbc6b70e09537d07653308b40be17dec19 |\r\n| armeabi-v7a | 34c27a17247ee6654ede7227e1ffdb466da080bb226c73d978b3dfa4ea9ce4c3 |\r\n| x86 | 8c49e851bc71841e7f74a6e1f3195159d129287cc46a4263f7becb8f413e8fa6 |\r\n| x86_64 | bfd5a1c87ac17299f23154ada59d5823a998215038151f9b4c9347ad54013868 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9512.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/182306952/reactions", - "total_count": 3, - "+1": 3, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 7 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/181424822", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/181424822/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/181424822/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9484", - "id": 181424822, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4K0FK2", - "tag_name": "r9484", - "target_commitish": "main", - "name": "Komikku Preview r9484", - "draft": false, - "prerelease": false, - "created_at": "2024-10-22T03:59:22Z", - "published_at": "2024-10-23T11:29:08Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/201160357", - "id": 201160357, - "node_id": "RA_kwDOL4q0GM4L_Xal", - "name": "Komikku-arm64-v8a-r9484.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36472993, - "download_count": 541, - "created_at": "2024-10-23T11:00:05Z", - "updated_at": "2024-10-23T11:00:06Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9484/Komikku-arm64-v8a-r9484.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/201160359", - "id": 201160359, - "node_id": "RA_kwDOL4q0GM4L_Xan", - "name": "Komikku-armeabi-v7a-r9484.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31520943, - "download_count": 44, - "created_at": "2024-10-23T11:00:05Z", - "updated_at": "2024-10-23T11:00:06Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9484/Komikku-armeabi-v7a-r9484.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/201160358", - "id": 201160358, - "node_id": "RA_kwDOL4q0GM4L_Xam", - "name": "Komikku-r9484.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 88100560, - "download_count": 37, - "created_at": "2024-10-23T11:00:05Z", - "updated_at": "2024-10-23T11:00:07Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9484/Komikku-r9484.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/201160360", - "id": 201160360, - "node_id": "RA_kwDOL4q0GM4L_Xao", - "name": "Komikku-x86-r9484.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 37640311, - "download_count": 4, - "created_at": "2024-10-23T11:00:05Z", - "updated_at": "2024-10-23T11:00:06Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9484/Komikku-x86-r9484.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/201160361", - "id": 201160361, - "node_id": "RA_kwDOL4q0GM4L_Xap", - "name": "Komikku-x86_64-r9484.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 39630988, - "download_count": 9, - "created_at": "2024-10-23T11:00:05Z", - "updated_at": "2024-10-23T11:00:06Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9484/Komikku-x86_64-r9484.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9484", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9484", - "body": "## What's Changed\r\n### New\r\n* show all entries going to be checked for Smart update on Upcoming screen (@Cuong-Tran)\r\n* allow Feed to hide entries already in Library (@Cuong-Tran)\r\n* Added random library sort (@jackhamilton)\r\n* Add option to opt out of Crashlytics (@Animeboynz)\r\n\r\n### Improve\r\n* show duplicating manga cover on Duplicate dialog (@Cuong-Tran)\r\n* always enable panorama cover for Feed & Global search (@Cuong-Tran)\r\n* Add Quantity Badge to Upcoming Screen (@Animeboynz)\r\n* make global search pinned/all sticky (@Cuong-Tran)\r\n* hide Pinned chip in Global/Migrate Search if no pinned sources available (@Cuong-Tran)\r\n* Allow adding multiple tags separated by commas (@NGB-Was-Taken)\r\n* show loading indicator while bulk-selection is running (@Cuong-Tran)\r\n* bulk-selection: reverse selection (@Cuong-Tran)\r\n* auto select saved-search tab if opened from another screen (@Cuong-Tran)\r\n* Reload saved-searches when screen is navigated back to (@Cuong-Tran)\r\n* hide Filter save-button on SourceFeedScreen (@Cuong-Tran)\r\n* only load suggestions after entry finished loading info & chapters (@Cuong-Tran)\r\n* Hide sync library option when sync is disabled (@FuSan21)\r\n* Show download state and progress on reader chapter list. (@NGB-Was-Taken)\r\n* Confirmation dialog when removing privately installed extensions (@Animeboynz)\r\n\r\n### Fix\r\n* Revert to automatically sync marked read chapters to trackers (@Cuong-Tran)\r\n* fix: late loading saved-searches when jump from SourceFeedScreen or FeedScreen (@Cuong-Tran)\r\n* fix color when using custom theme with AndroidView on DownloadQueue & MigrationBottomSheetDialog (@Cuong-Tran)\r\n* fix source search box's height (@Cuong-Tran)\r\n* Fix issue with not showing source names in merged manga sometimes (@Jobobby04)\r\n* Fix EnhancedTracker not auto binding when adding manga to library (@brewkunz)\r\n* Retain remote last chapter read if it's higher than the local one for EnhancedTracker (@brewkunz)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9404...r9484\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 78de9cbcb255cb56881e4f3af9bd2436e41c57df00f52c4bfee7a2a0ac9bb8eb |\r\n| arm64-v8a | 6001ef5a34e855e74cf07ae8ed5cd83c72d4344863e0518345d62489c0468f8e |\r\n| armeabi-v7a | b2033fc8467ea14a6b39c9d10f18ef13fb0c8578d54e814fb6f87ac8eac01860 |\r\n| x86 | 9459abc0ccedeb041b490dff507610777eefad363582961626e73dd49523c74d |\r\n| x86_64 | d4d25f7dde48823d1d38336b07c3bf10d64eedf383ce4c369b91e29a359b9370 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9484.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/181424822/reactions", - "total_count": 6, - "+1": 5, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 7 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/177203551", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/177203551/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/177203551/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9404", - "id": 177203551, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4Kj-lf", - "tag_name": "r9404", - "target_commitish": "main", - "name": "Komikku Preview r9404", - "draft": false, - "prerelease": false, - "created_at": "2024-09-25T22:32:37Z", - "published_at": "2024-09-27T04:01:29Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/195240377", - "id": 195240377, - "node_id": "RA_kwDOL4q0GM4LoyG5", - "name": "Komikku-arm64-v8a-r9404.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35491741, - "download_count": 890, - "created_at": "2024-09-27T03:50:42Z", - "updated_at": "2024-09-27T03:50:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9404/Komikku-arm64-v8a-r9404.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/195240380", - "id": 195240380, - "node_id": "RA_kwDOL4q0GM4LoyG8", - "name": "Komikku-armeabi-v7a-r9404.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30543787, - "download_count": 96, - "created_at": "2024-09-27T03:50:42Z", - "updated_at": "2024-09-27T03:50:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9404/Komikku-armeabi-v7a-r9404.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/195240379", - "id": 195240379, - "node_id": "RA_kwDOL4q0GM4LoyG7", - "name": "Komikku-r9404.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 87123404, - "download_count": 125, - "created_at": "2024-09-27T03:50:42Z", - "updated_at": "2024-09-27T03:50:44Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9404/Komikku-r9404.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/195240378", - "id": 195240378, - "node_id": "RA_kwDOL4q0GM4LoyG6", - "name": "Komikku-x86-r9404.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36659059, - "download_count": 12, - "created_at": "2024-09-27T03:50:42Z", - "updated_at": "2024-09-27T03:50:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9404/Komikku-x86-r9404.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/195240381", - "id": 195240381, - "node_id": "RA_kwDOL4q0GM4LoyG9", - "name": "Komikku-x86_64-r9404.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 38653832, - "download_count": 23, - "created_at": "2024-09-27T03:50:42Z", - "updated_at": "2024-09-27T03:50:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9404/Komikku-x86_64-r9404.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9404", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9404", - "body": "## What's Changed\r\n### New\r\n- feat(ui): Panorama cover (support landscape manga cover) (@Cuong-Tran)\r\n- feat(ui): read/resume button can now dock to left side of screen (@Cuong-Tran)\r\n\r\n### Improve\r\n- Colors palette for Custom theme (@Cuong-Tran)\r\n- Improve custom theme (@Cuong-Tran)\r\n- Default disable Integrated hentai features (@Cuong-Tran)\r\n- hide batch add if integrated H & Delegated src is off (@Riztard)\r\n- add MangaDex to Batch-Add example (@Cuong-Tran)\r\n- enable hidden categories by default (@Cuong-Tran)\r\n- translation for Turkish (@Metincloup) & update others\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9378...r9404\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 0211fb704ee005131f8180588a6e5ca0011533ce7550126cd5992d5b8ec40eb2 |\r\n| arm64-v8a | 76b18d678a047846db0b4119bdf285948c0899e75ac6adfec51ef138d1694d19 |\r\n| armeabi-v7a | b1f0627f9af6492ba42aa87e99907f8a152a06bc570b662bfa7060d9659e6e64 |\r\n| x86 | 922fdb9c7663540f0d21487933a6d79939d2356dcf433b37fcc4abab1271d87e |\r\n| x86_64 | 91b04766f238fdb32294bc8aef1b0d3fd5c179beddecde7560e665a7b5c1c56b |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9404.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/177203551/reactions", - "total_count": 8, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 7, - "eyes": 0 - }, - "mentions_count": 3 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/175595666", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/175595666/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/175595666/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9378", - "id": 175595666, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4Kd2CS", - "tag_name": "r9378", - "target_commitish": "main", - "name": "Komikku Preview r9378", - "draft": false, - "prerelease": false, - "created_at": "2024-09-13T08:26:29Z", - "published_at": "2024-09-18T07:18:58Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/193324431", - "id": 193324431, - "node_id": "RA_kwDOL4q0GM4LheWP", - "name": "Komikku-arm64-v8a-r9378.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35434397, - "download_count": 395, - "created_at": "2024-09-18T07:16:42Z", - "updated_at": "2024-09-18T07:16:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9378/Komikku-arm64-v8a-r9378.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/193324432", - "id": 193324432, - "node_id": "RA_kwDOL4q0GM4LheWQ", - "name": "Komikku-armeabi-v7a-r9378.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30482347, - "download_count": 52, - "created_at": "2024-09-18T07:16:42Z", - "updated_at": "2024-09-18T07:16:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9378/Komikku-armeabi-v7a-r9378.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/193324430", - "id": 193324430, - "node_id": "RA_kwDOL4q0GM4LheWO", - "name": "Komikku-r9378.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 87061964, - "download_count": 40, - "created_at": "2024-09-18T07:16:42Z", - "updated_at": "2024-09-18T07:16:44Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9378/Komikku-r9378.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/193324429", - "id": 193324429, - "node_id": "RA_kwDOL4q0GM4LheWN", - "name": "Komikku-x86-r9378.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36601715, - "download_count": 2, - "created_at": "2024-09-18T07:16:42Z", - "updated_at": "2024-09-18T07:16:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9378/Komikku-x86-r9378.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/193324433", - "id": 193324433, - "node_id": "RA_kwDOL4q0GM4LheWR", - "name": "Komikku-x86_64-r9378.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 38596488, - "download_count": 10, - "created_at": "2024-09-18T07:16:42Z", - "updated_at": "2024-09-18T07:16:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9378/Komikku-x86_64-r9378.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9378", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9378", - "body": "## What's Changed\r\n### New\r\n- feat: Hidden categories (@cuong-tran)\r\n- feat: feed reorder screen & support sources' saved-searches (@cuong-tran)\r\n- ui: show number of entries on upcoming screen (@cuong-tran)\r\n- feat(ui): saved search tabs for browse source (@cuong-tran)\r\n- disable smart-update for individual & fix custom interval (@kana-shii)\r\n- Option to update trackers when chapter marked as read (@animeboynz)\r\n\r\n### Improve\r\n- e-hentai language flag (@cuong-tran)\r\n- Support skip-downloading-duplicate-read-chapters for merged entries (@shabnix)\r\n- Show local chapters as downloaded on merged entries. (@NGB-Was-Taken)\r\n- Re-enable fetching chapters list for entries with licensed status (@animeboynz)\r\n- Move \"Choose what to sync\" out of \"Sync now\" (@NGB-Was-Taken)\r\n- Respect `thumbnailQuality` and `tryUsingFirstVolumeCover` preferences. (MD) (@NGB-Was-Taken)\r\n- Reduce ChapterNavigator horizontal padding on small ui (@AntsyLich)\r\n- hide display mode for e-hentai (@cuong-tran)\r\n- Ignore \"intent://\" urls on webview (@bapeey)\r\n- Remove legacy broken source and history backup (@AntsyLich)\r\n\r\n### Fix\r\n- Fix Kitsu `ratingTwenty` being typed as String (@MajorTanya)\r\n- Fix Kitsu `synopsis` nullability (@MajorTanya)\r\n- fix: wrong feed adding when filter search (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9318...r9378\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 422f4865ddb8f99f85c2df58f6afa9c8fcde8c5df534e2c33052def65754ca5b |\r\n| arm64-v8a | 1a0618f968bf2eebd05012ed54024ff15d5d056b20995eb299cc96de48b7e6ca |\r\n| armeabi-v7a | 50255a1db41743fab791aa7ce3acac52fd400a339c8d0c71e5c6c95f68586f38 |\r\n| x86 | b4bafb7594514e1d66b0fb3bec608e375b78351ad0cd0f4744e5873787494095 |\r\n| x86_64 | ae02a08e7230c93ace4da09306e69a2760118514af57054f256b688b03e47829 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9378.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/175595666/reactions", - "total_count": 4, - "+1": 4, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 8 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/172910148", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/172910148/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/172910148/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9318", - "id": 172910148, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4KTmZE", - "tag_name": "r9318", - "target_commitish": "main", - "name": "Komikku Preview r9318", - "draft": false, - "prerelease": false, - "created_at": "2024-08-30T22:51:39Z", - "published_at": "2024-08-31T22:22:08Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189608858", - "id": 189608858, - "node_id": "RA_kwDOL4q0GM4LTTOa", - "name": "Komikku-arm64-v8a-r9318.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35262172, - "download_count": 414, - "created_at": "2024-08-31T22:20:10Z", - "updated_at": "2024-08-31T22:20:11Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9318/Komikku-arm64-v8a-r9318.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189608860", - "id": 189608860, - "node_id": "RA_kwDOL4q0GM4LTTOc", - "name": "Komikku-armeabi-v7a-r9318.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30293738, - "download_count": 58, - "created_at": "2024-08-31T22:20:10Z", - "updated_at": "2024-08-31T22:20:11Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9318/Komikku-armeabi-v7a-r9318.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189608861", - "id": 189608861, - "node_id": "RA_kwDOL4q0GM4LTTOd", - "name": "Komikku-r9318.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 86873355, - "download_count": 89, - "created_at": "2024-08-31T22:20:10Z", - "updated_at": "2024-08-31T22:20:12Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9318/Komikku-r9318.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189608862", - "id": 189608862, - "node_id": "RA_kwDOL4q0GM4LTTOe", - "name": "Komikku-x86-r9318.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36425394, - "download_count": 8, - "created_at": "2024-08-31T22:20:10Z", - "updated_at": "2024-08-31T22:20:11Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9318/Komikku-x86-r9318.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189608859", - "id": 189608859, - "node_id": "RA_kwDOL4q0GM4LTTOb", - "name": "Komikku-x86_64-r9318.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 38420167, - "download_count": 11, - "created_at": "2024-08-31T22:20:10Z", - "updated_at": "2024-08-31T22:20:11Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9318/Komikku-x86_64-r9318.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9318", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9318", - "body": "## What's Changed\r\n### New\r\n- Add source search, icon & flag on Feed adding dialog (#324) (@cuong-tran)\r\n\r\n### Hot Fix\r\n- fix: ext obsolete status (#327) (@cuong-tran)\r\n- fix extension won't update (#328) (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9312...r9318\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 1239b239c6de7eee90f62d6706847730453592e04e3171b4b2c4d9897e93ed68 |\r\n| arm64-v8a | 53d45c067811809908b4b5eebbc6980d9881bea627125311187f9622f45f2e8f |\r\n| armeabi-v7a | aa287cab4e7e297f2a4be8e3c946d98de3bec46a3a8efc3bb826b01c31633b3b |\r\n| x86 | 56905677ab3e61be78faf3dbc55165c1842636eb9821b3c24525b12764f329cf |\r\n| x86_64 | 45f71e4af3d61b0496395c2a053c38759ccee41a89459d358be58ebfd3d1cf74 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9318.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/172910148/reactions", - "total_count": 4, - "+1": 2, - "-1": 0, - "laugh": 0, - "hooray": 1, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/172624000", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/172624000/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/172624000/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9312", - "id": 172624000, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4KSgiA", - "tag_name": "r9312", - "target_commitish": "main", - "name": "Komikku Preview r9312", - "draft": false, - "prerelease": false, - "created_at": "2024-08-27T00:44:25Z", - "published_at": "2024-08-29T18:19:15Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189161142", - "id": 189161142, - "node_id": "RA_kwDOL4q0GM4LRl62", - "name": "Komikku-arm64-v8a-r9312.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35327708, - "download_count": 178, - "created_at": "2024-08-29T18:05:11Z", - "updated_at": "2024-08-29T18:05:12Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9312/Komikku-arm64-v8a-r9312.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189161144", - "id": 189161144, - "node_id": "RA_kwDOL4q0GM4LRl64", - "name": "Komikku-armeabi-v7a-r9312.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30359274, - "download_count": 13, - "created_at": "2024-08-29T18:05:11Z", - "updated_at": "2024-08-29T18:05:12Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9312/Komikku-armeabi-v7a-r9312.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189161145", - "id": 189161145, - "node_id": "RA_kwDOL4q0GM4LRl65", - "name": "Komikku-r9312.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 86938891, - "download_count": 15, - "created_at": "2024-08-29T18:05:11Z", - "updated_at": "2024-08-29T18:05:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9312/Komikku-r9312.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189161141", - "id": 189161141, - "node_id": "RA_kwDOL4q0GM4LRl61", - "name": "Komikku-x86-r9312.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 36490930, - "download_count": 3, - "created_at": "2024-08-29T18:05:11Z", - "updated_at": "2024-08-29T18:05:12Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9312/Komikku-x86-r9312.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/189161143", - "id": 189161143, - "node_id": "RA_kwDOL4q0GM4LRl63", - "name": "Komikku-x86_64-r9312.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 38485703, - "download_count": 3, - "created_at": "2024-08-29T18:05:11Z", - "updated_at": "2024-08-29T18:05:12Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9312/Komikku-x86_64-r9312.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9312", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9312", - "body": "## What's Changed\r\n### New\r\n- Showing source icon in library (@cuong-tran)\r\n- Use language flags (@cuong-tran)\r\n- Bulk-merging multiple library entries (@cuong-tran)\r\n- Ability to enable/disable repo (@cuong-tran)\r\n- Show repo icon for Repo (@cuong-tran)\r\n- Custom themes (@kana-shii)\r\n- Allow sync Feeds & extension-repo settings (@cuong-tran)\r\n- Add `show entry` action to download notifications (@mm12)\r\n- Add option to skip downloading duplicate read chapters (@shabnix)\r\n- Delete duplicate downloaded chapters when they are automatically marked as read (@NGB-Was-Taken)\r\n- Remove the `UNOFFICIAL` status, remove built-in Komikku repo, instead allow adding it as default (@cuong-tran)\r\n\r\n### Improve\r\n- Show same extension from multiple repos & show their repo's name (@cuong-tran)\r\n- Rename Related Titles to *Suggestions* (@cuong-tran)\r\n- Add more auto backup hours (@kana-shii)\r\n- Add option to update library each 6 hours (@kana-shii)\r\n- Back-button on pre-migration source (@cuong-tran)\r\n- Don't expand description on the manga while merging (@cuong-tran)\r\n- Hide keyboard when a Tracker SearchResultItem is clicked (@Animeboynz)\r\n- Move dropdown menu to correct position (@cuong-tran)\r\n- Add extensions list refresh menu (@cuong-tran)\r\n- Add confirmation when adding repo via URI (@Animeboynz)\r\n- Respect privacy settings in extension update notification (@Animeboynz)\r\n- Option to not backup Saved searches & Feeds (@cuong-tran)\r\n- Change Reader's open-in-browser icon to Explore (@cuong-tran)\r\n\r\n### Fix\r\n- Smart library updates now will honor the 'Skip Completed' option (@kana-shii)\r\n- Setting to hide home button while browsing *Suggestions* (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9234...r9312\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | d927918758873a46795e5b78eafaead379738b08b431a085c88448bfdf2debd9 |\r\n| arm64-v8a | 254f6825ebcba7b4564b92b8597cf86418c2371debb224deba5516f6be01aaf2 |\r\n| armeabi-v7a | f2c4f8f90a6b7a38744c5a61f78b370da9d06a3ef90c4a83ffe2b2ef02a8148c |\r\n| x86 | dd86615e5187f792e78ff73d4209c649d2107b3c035d0c4a377d6db3cdc21b93 |\r\n| x86_64 | 17da88f2e37609f460907f798edd9f9c3f166d6f7382d7092c6c37ce6175dd7c |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9312.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/172624000/reactions", - "total_count": 6, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 2, - "confused": 0, - "heart": 3, - "rocket": 0, - "eyes": 1 - }, - "mentions_count": 6 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/169834030", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/169834030/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/169834030/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9234", - "id": 169834030, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4KH3Yu", - "tag_name": "r9234", - "target_commitish": "main", - "name": "Komikku Preview r9234", - "draft": false, - "prerelease": false, - "created_at": "2024-08-06T15:51:44Z", - "published_at": "2024-08-12T18:43:45Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/185514045", - "id": 185514045, - "node_id": "RA_kwDOL4q0GM4LDrg9", - "name": "Komikku-arm64-v8a-r9234.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32919305, - "download_count": 347, - "created_at": "2024-08-12T18:33:46Z", - "updated_at": "2024-08-12T18:33:47Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9234/Komikku-arm64-v8a-r9234.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/185514047", - "id": 185514047, - "node_id": "RA_kwDOL4q0GM4LDrg_", - "name": "Komikku-armeabi-v7a-r9234.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28380949, - "download_count": 35, - "created_at": "2024-08-12T18:33:46Z", - "updated_at": "2024-08-12T18:33:47Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9234/Komikku-armeabi-v7a-r9234.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/185514044", - "id": 185514044, - "node_id": "RA_kwDOL4q0GM4LDrg8", - "name": "Komikku-r9234.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 79729752, - "download_count": 52, - "created_at": "2024-08-12T18:33:46Z", - "updated_at": "2024-08-12T18:33:48Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9234/Komikku-r9234.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/185514046", - "id": 185514046, - "node_id": "RA_kwDOL4q0GM4LDrg-", - "name": "Komikku-x86-r9234.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33922789, - "download_count": 1, - "created_at": "2024-08-12T18:33:46Z", - "updated_at": "2024-08-12T18:33:47Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9234/Komikku-x86-r9234.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/185514048", - "id": 185514048, - "node_id": "RA_kwDOL4q0GM4LDrhA", - "name": "Komikku-x86_64-r9234.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35884791, - "download_count": 7, - "created_at": "2024-08-12T18:33:46Z", - "updated_at": "2024-08-12T18:33:47Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9234/Komikku-x86_64-r9234.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9234", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9234", - "body": "## What's Changed\r\n### New\r\n- feat(migration): add option to only show entries with new chapters (@timschneeb)\r\n- feat: add source search to pre-migration screen (@cuong-tran)\r\n- Add Copy Tracker URL on icon long press (@mm12)\r\n- Add a button to select all scanlators (@AntsyLich)\r\n- Add an `open in browser` button to reader menu (@mm12)\r\n- Add Backup and Restore of Extension Repos (@Animeboynz)\r\n\r\n### Improve\r\n- feat: allow canceling search for a migrating manga without remove it (@cuong-tran)\r\n- ui: put *Suggestions* in overflow (@cuong-tran)\r\n\r\n### Fix\r\n- Update Kitsu's domain to kitsu.app (@cuong-tran)\r\n- Settings to show/hide progress-banner were not working (@cuong-tran)\r\n- Fix MAL search results not showing start dates (@MajorTanya)\r\n- Wrong initial number of migrating items (@cuong-tran)\r\n- Don't crash on ill-formed URLs (@FooIbar)\r\n- Handle Android SDK 35 API collision (@AntsyLich)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9197...r9234\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | c3b7c06eccc4b835a47fdbc6156a412310ae0133425084fc936f0a91fe2b8314 |\r\n| arm64-v8a | d0aad1828b7ce3fb062885bff05fea38784b0073c91c13da62ab93a629319a49 |\r\n| armeabi-v7a | 53be92dcfa704662520b93669ecb53fcd6c67fd654b0c709b2a1e88430ce9413 |\r\n| x86 | da3f3f2cde5b3fe938271248764d5519acec5e9dd1a4bfe77bcde340116166ae |\r\n| x86_64 | e182adca491b39945679137c8daf49360afb83112349b1ba77b8428866c52fca |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9234.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/169834030/reactions", - "total_count": 3, - "+1": 2, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 7 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/168830243", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/168830243/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/168830243/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9197", - "id": 168830243, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4KECUj", - "tag_name": "r9197", - "target_commitish": "main", - "name": "Komikku Preview r9197", - "draft": false, - "prerelease": false, - "created_at": "2024-08-06T05:51:39Z", - "published_at": "2024-08-06T06:04:46Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/184146623", - "id": 184146623, - "node_id": "RA_kwDOL4q0GM4K-dq_", - "name": "Komikku-arm64-v8a-r9197.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32861961, - "download_count": 173, - "created_at": "2024-08-06T05:59:13Z", - "updated_at": "2024-08-06T05:59:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9197/Komikku-arm64-v8a-r9197.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/184146624", - "id": 184146624, - "node_id": "RA_kwDOL4q0GM4K-drA", - "name": "Komikku-armeabi-v7a-r9197.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28319509, - "download_count": 25, - "created_at": "2024-08-06T05:59:13Z", - "updated_at": "2024-08-06T05:59:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9197/Komikku-armeabi-v7a-r9197.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/184146622", - "id": 184146622, - "node_id": "RA_kwDOL4q0GM4K-dq-", - "name": "Komikku-r9197.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 79672408, - "download_count": 29, - "created_at": "2024-08-06T05:59:13Z", - "updated_at": "2024-08-06T05:59:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9197/Komikku-r9197.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/184146625", - "id": 184146625, - "node_id": "RA_kwDOL4q0GM4K-drB", - "name": "Komikku-x86-r9197.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33865445, - "download_count": 3, - "created_at": "2024-08-06T05:59:13Z", - "updated_at": "2024-08-06T05:59:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9197/Komikku-x86-r9197.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/184146626", - "id": 184146626, - "node_id": "RA_kwDOL4q0GM4K-drC", - "name": "Komikku-x86_64-r9197.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35827447, - "download_count": 8, - "created_at": "2024-08-06T05:59:13Z", - "updated_at": "2024-08-06T05:59:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9197/Komikku-x86_64-r9197.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9197", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9197", - "body": "## What's Changed\r\n### New\r\n- feat: Allow changing feeds' order (@cuong-tran)\r\n- feat(ui): Add sources search to Migrate Source Screen (@cuong-tran)\r\n\r\n### Improve\r\n- Improve error message if restoring from JSON file (@vetleledaal)\r\n- Match extra layout space with scroll distance (@FooIbar)\r\n- Avoid adding duplicate feed/saved search (@cuong-tran)\r\n- Update translation (@cuong-tran)\r\n- Update dependencies\r\n\r\n### Fix\r\n- Fix: missing feed if saved searches already exist (@cuong-tran)\r\n- Fix: wrong feeds' order after backup restoration (@cuong-tran)\r\n- Fix: dialog's button wrong order (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9180...r9197\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | ddcd210a9a7215663cbbfc93f12fa3ab1a95f81ebfae9e473a93a9c30ba96ae3 |\r\n| arm64-v8a | 6aede1cb59c53eb49a4f47293b928fabd50eb3dc7a2ff44179f04e6cbeecbcc9 |\r\n| armeabi-v7a | 71f7d738b7eeace6ee130e0098b9487be7785b40bcd14ccab80fbd3bfd702283 |\r\n| x86 | 282e68b35ea5688511c618728dfc88f66e005ce19b4a7404b29fdc984acf5665 |\r\n| x86_64 | 1df8860f069fcc857eda006d766cc5b8e4db9cbf6391318cf237d65e013bb1a9 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9197.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/168830243/reactions", - "total_count": 4, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 1, - "confused": 0, - "heart": 3, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 3 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/167830744", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/167830744/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/167830744/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9180", - "id": 167830744, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4KAOTY", - "tag_name": "r9180", - "target_commitish": "main", - "name": "Komikku Preview r9180", - "draft": false, - "prerelease": false, - "created_at": "2024-07-30T08:49:26Z", - "published_at": "2024-07-30T11:43:21Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/182740605", - "id": 182740605, - "node_id": "RA_kwDOL4q0GM4K5GZ9", - "name": "Komikku-arm64-v8a-r9180.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32825097, - "download_count": 178, - "created_at": "2024-07-30T11:40:39Z", - "updated_at": "2024-07-30T11:40:40Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9180/Komikku-arm64-v8a-r9180.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/182740606", - "id": 182740606, - "node_id": "RA_kwDOL4q0GM4K5GZ-", - "name": "Komikku-armeabi-v7a-r9180.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28286741, - "download_count": 16, - "created_at": "2024-07-30T11:40:39Z", - "updated_at": "2024-07-30T11:40:40Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9180/Komikku-armeabi-v7a-r9180.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/182740604", - "id": 182740604, - "node_id": "RA_kwDOL4q0GM4K5GZ8", - "name": "Komikku-r9180.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 79635544, - "download_count": 14, - "created_at": "2024-07-30T11:40:39Z", - "updated_at": "2024-07-30T11:40:40Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9180/Komikku-r9180.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/182740607", - "id": 182740607, - "node_id": "RA_kwDOL4q0GM4K5GZ_", - "name": "Komikku-x86-r9180.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33828581, - "download_count": 2, - "created_at": "2024-07-30T11:40:39Z", - "updated_at": "2024-07-30T11:40:40Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9180/Komikku-x86-r9180.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/182740608", - "id": 182740608, - "node_id": "RA_kwDOL4q0GM4K5GaA", - "name": "Komikku-x86_64-r9180.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35790583, - "download_count": 4, - "created_at": "2024-07-30T11:40:39Z", - "updated_at": "2024-07-30T11:40:40Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9180/Komikku-x86_64-r9180.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9180", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9180", - "body": "## What's Changed\r\n### New\r\n- Adds Option to Copy Panel to Clipboard (@Animeboynz)\r\n- feat: Add onboarding permissions request for external storage (@cuong-tran)\r\n- feat: request for writing storage permission when saving pictures (Android P & below) (@cuong-tran)\r\n\r\n### Improve\r\n- Format Category String on Subtitle Display (@Animeboynz)\r\n- Bump compose/kotlin version (@AntsyLich)\r\n- Update strings & translate from Crowdin (@cuong-tran)\r\n- Update dependencies\r\n\r\n### Fix\r\n- fix: migrate/copy manga untick delete downloaded had no effect, always delete (@cuong-tran)\r\n- fix: copy icon (migration whole list) was always migrating instead of copy (@cuong-tran)\r\n- Fix library is backed up when disabled and make categories backup/restore independent (@AntsyLich)\r\n- Fix issue with creating and restoring backup (@AntsyLich)\r\n- fix: canceling job didn't hide status banner (@cuong-tran)\r\n- update version in issue template (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9149...r9180\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | c0beee48dd4b42db7ba9814afafcd6be41e12f1f595708b5b504f1ce57577acd |\r\n| arm64-v8a | 0e94726149db4d0434fd7a35f18d4fa09dae193a46e9c2c11def20d112ae4dec |\r\n| armeabi-v7a | deb466e535828cdfa9892af9decbfb72276e7b16462e0a4eba6c86196794141e |\r\n| x86 | 692bba6eb6f6fe2aa4d4996cb10531ef941a6b8778ae7ab598d3f0661b947a2e |\r\n| x86_64 | 4aca35d3be8377dca6fa01d99827c58c0655c6b4e8d5225ba5c40fbacfbfb696 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9180.apk`\r\n", - "mentions_count": 3 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/166551448", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/166551448/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/166551448/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9149", - "id": 166551448, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4J7V-Y", - "tag_name": "r9149", - "target_commitish": "main", - "name": "Komikku Preview r9149", - "draft": false, - "prerelease": false, - "created_at": "2024-07-18T00:09:31Z", - "published_at": "2024-07-22T16:31:28Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/181126487", - "id": 181126487, - "node_id": "RA_kwDOL4q0GM4Ky8VX", - "name": "Komikku-arm64-v8a-r9149.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32829193, - "download_count": 155, - "created_at": "2024-07-22T16:24:29Z", - "updated_at": "2024-07-22T16:24:31Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9149/Komikku-arm64-v8a-r9149.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/181126488", - "id": 181126488, - "node_id": "RA_kwDOL4q0GM4Ky8VY", - "name": "Komikku-armeabi-v7a-r9149.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28290837, - "download_count": 29, - "created_at": "2024-07-22T16:24:29Z", - "updated_at": "2024-07-22T16:24:30Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9149/Komikku-armeabi-v7a-r9149.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/181126489", - "id": 181126489, - "node_id": "RA_kwDOL4q0GM4Ky8VZ", - "name": "Komikku-r9149.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 79639640, - "download_count": 16, - "created_at": "2024-07-22T16:24:29Z", - "updated_at": "2024-07-22T16:24:31Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9149/Komikku-r9149.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/181126490", - "id": 181126490, - "node_id": "RA_kwDOL4q0GM4Ky8Va", - "name": "Komikku-x86-r9149.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33832677, - "download_count": 3, - "created_at": "2024-07-22T16:24:29Z", - "updated_at": "2024-07-22T16:24:30Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9149/Komikku-x86-r9149.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/181126491", - "id": 181126491, - "node_id": "RA_kwDOL4q0GM4Ky8Vb", - "name": "Komikku-x86_64-r9149.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35794679, - "download_count": 5, - "created_at": "2024-07-22T16:24:29Z", - "updated_at": "2024-07-22T16:24:30Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9149/Komikku-x86_64-r9149.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9149", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9149", - "body": "## What's Changed\r\n### New\r\n- feat: jump to entry from download queue item (@cuong-tran)\r\n- feat: update default popular user-agent (@cuong-tran)\r\n- feat: update E-Hentai to support libraryColored, bulk-selection overlay (@cuong-tran)\r\n\r\n### Improve\r\n- performance: Rework cover's loading animation (@cuong-tran)\r\n- performance: Load cover color with IO scope instead of UI (@cuong-tran)\r\n- show entries' background color by default on all list/grid (@cuong-tran)\r\n\r\n### Fix\r\n- Revert chapter's filter icon (@cuong-tran)\r\n- Fix background color of selected entries (@cuong-tran)\r\n- Update Github's release to matching vx.xx.xx and rxxxx format (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9124...r9149\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | e1b0a483277f37884b3ca13a2a2bf5bc024f1a3a8d0b531516fc70a3a261e24c |\r\n| arm64-v8a | be2d917726565c6aa0ee50fba22096def57564544e225d7ebf252efe992d63f4 |\r\n| armeabi-v7a | b2745e4e1a348fc677a4ccb4cff0f1ffd2fe5d7e650c566cf8d0b4b4f877a91c |\r\n| x86 | 4daabda2dc5a5be846b7ae72c23a08e79062dfb1028baa1a8be6229de9a95b49 |\r\n| x86_64 | 7e9487aea5a682f98701b7a6c6a0f5979475310e8a2e5ee15a128ce59c12bcf4 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9149.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/166551448/reactions", - "total_count": 4, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 4, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/164569272", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/164569272/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/164569272/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9124", - "id": 164569272, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JzyC4", - "tag_name": "r9124", - "target_commitish": "main", - "name": "Komikku Preview r9124", - "draft": false, - "prerelease": false, - "created_at": "2024-07-09T08:55:44Z", - "published_at": "2024-07-09T09:27:42Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178521177", - "id": 178521177, - "node_id": "RA_kwDOL4q0GM4KpARZ", - "name": "Komikku-arm64-v8a-r9124.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32852893, - "download_count": 138, - "created_at": "2024-07-09T09:07:54Z", - "updated_at": "2024-07-09T09:07:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9124/Komikku-arm64-v8a-r9124.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178521176", - "id": 178521176, - "node_id": "RA_kwDOL4q0GM4KpARY", - "name": "Komikku-armeabi-v7a-r9124.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28310441, - "download_count": 10, - "created_at": "2024-07-09T09:07:54Z", - "updated_at": "2024-07-09T09:07:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9124/Komikku-armeabi-v7a-r9124.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178521174", - "id": 178521174, - "node_id": "RA_kwDOL4q0GM4KpARW", - "name": "Komikku-r9124.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 79663340, - "download_count": 13, - "created_at": "2024-07-09T09:07:54Z", - "updated_at": "2024-07-09T09:07:57Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9124/Komikku-r9124.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178521175", - "id": 178521175, - "node_id": "RA_kwDOL4q0GM4KpARX", - "name": "Komikku-x86-r9124.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33852281, - "download_count": 0, - "created_at": "2024-07-09T09:07:54Z", - "updated_at": "2024-07-09T09:07:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9124/Komikku-x86-r9124.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178521178", - "id": 178521178, - "node_id": "RA_kwDOL4q0GM4KpARa", - "name": "Komikku-x86_64-r9124.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35814283, - "download_count": 2, - "created_at": "2024-07-09T09:07:54Z", - "updated_at": "2024-07-09T09:07:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9124/Komikku-x86_64-r9124.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9124", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9124", - "body": "## What's Changed\r\n### New\r\n- Add progress-banner for sync/restore/update (@cuong-tran)\r\n- Long-click search drop-down menu for entry's author/artist/source (@cuong-tran)\r\n\r\n### Fix\r\n- Fix login prompts despite being logged in to trackers in Manga screen (@AntsyLich)\r\n- Fix some issues when reading/saving images (@Foolbar)\r\n- Fix MdList isLoggedInFlow (@cuong-tran)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9115...r9124\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 81a59fc5a914e9e96767af0562e37e60c5d4b02073f15cda847c060b7e0e3657 |\r\n| arm64-v8a | cef051b8bf4cb3f9d5ac386b6dc51a1dd3bcba0c878975da0756cd65effd3319 |\r\n| armeabi-v7a | cb3dc698db16ccd95dac55a732d4783b664c103fe4a0875f4e5133ce8268189a |\r\n| x86 | 562968d9339770d4293d6ac12c32e6996e3edaaec6c9e2161e3300ac0b6814ce |\r\n| x86_64 | ed4c74413b0b5676a2aeae812e3611c8872bbc09807a4aaaa7cc005e3573e49d |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9124.apk`\r\n", - "mentions_count": 3 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/164304314", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/164304314/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/164304314/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9115", - "id": 164304314, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JyxW6", - "tag_name": "r9115", - "target_commitish": "main", - "name": "Komikku Preview r9115", - "draft": false, - "prerelease": false, - "created_at": "2024-07-05T18:33:36Z", - "published_at": "2024-07-07T17:23:16Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178202757", - "id": 178202757, - "node_id": "RA_kwDOL4q0GM4KnyiF", - "name": "Komikku-arm64-v8a-r9115.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32848797, - "download_count": 24, - "created_at": "2024-07-07T17:16:20Z", - "updated_at": "2024-07-07T17:16:20Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9115/Komikku-arm64-v8a-r9115.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178202761", - "id": 178202761, - "node_id": "RA_kwDOL4q0GM4KnyiJ", - "name": "Komikku-armeabi-v7a-r9115.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28310441, - "download_count": 5, - "created_at": "2024-07-07T17:16:20Z", - "updated_at": "2024-07-07T17:16:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9115/Komikku-armeabi-v7a-r9115.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178202758", - "id": 178202758, - "node_id": "RA_kwDOL4q0GM4KnyiG", - "name": "Komikku-r9115.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 79659244, - "download_count": 13, - "created_at": "2024-07-07T17:16:20Z", - "updated_at": "2024-07-07T17:16:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9115/Komikku-r9115.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178202760", - "id": 178202760, - "node_id": "RA_kwDOL4q0GM4KnyiI", - "name": "Komikku-x86-r9115.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33852281, - "download_count": 1, - "created_at": "2024-07-07T17:16:20Z", - "updated_at": "2024-07-07T17:16:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9115/Komikku-x86-r9115.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/178202759", - "id": 178202759, - "node_id": "RA_kwDOL4q0GM4KnyiH", - "name": "Komikku-x86_64-r9115.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35814283, - "download_count": 2, - "created_at": "2024-07-07T17:16:20Z", - "updated_at": "2024-07-07T17:16:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9115/Komikku-x86_64-r9115.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9115", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9115", - "body": "## What's Changed\r\n### New\r\n- feat(ui): Add restoring & syncing banner (@cuong-tran)\r\n- feat: Add support for backing up and restoring global popular/latest feeds (@cuong-tran)\r\n- feat: Add support for backing up and storing source's feeds along with saved searches (@cuong-tran)\r\n- feat: search entry's title in library (@cuong-tran)\r\n\r\n### Improve\r\n- chore: improve google drive sync. (@kaiserbh)\r\n- Make global search \"Has result\" sticky (@AntsyLich)\r\n- Added configuration options to e-ink page flashes (@sirlag)\r\n- feat: Add back navigation to clear source search query (@cuong-tran)\r\n- improve: don't show arrow if *Suggestions* are from Recommends (@cuong-tran)\r\n- Smart Update Dialog Tweak (@Animeboynz)\r\n- Update LewdMangaChecker (@gelionexists)\r\n- Observe tracker login state instead of fetching once (@AntsyLich)\r\n- Update dependencies: moko-resources, lifecycle, firebase, sqlcipher, material-motion-compose, google-api-drive\r\n\r\n### Fix\r\n- Correct tako variable colours (@CrepeTF)\r\n- Fix some MDLang issues (@jobobby04)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/r9078...r9115\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 4e41f9ad0561588e3075d86eea6e71e4de548ebb113127f76b6649cdb01bfd14 |\r\n| arm64-v8a | 2670aa2299aa269c1d7d4c6cc61673c20a369d3a2b11244d2a8e6265f734957c |\r\n| armeabi-v7a | a2e1124abd6177dccde2bc0f1b59e0c189af1e1687da8eb757b798801a646f4c |\r\n| x86 | add4eb02a07b3899b3b9cf192488ed55bfd3c393c46f594a9bb71f563a5a6b9e |\r\n| x86_64 | 6b86778b63c0ad7ca219be57660e1564edf79d1b81e61b2cc6febd1c81f95ec8 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-r9115.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/164304314/reactions", - "total_count": 3, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 2 - }, - "mentions_count": 8 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/163497791", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/163497791/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/163497791/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9078", - "id": 163497791, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4Jvsc_", - "tag_name": "r9078", - "target_commitish": "main", - "name": "Komikku Preview r9078", - "draft": false, - "prerelease": false, - "created_at": "2024-06-20T00:31:06Z", - "published_at": "2024-07-02T07:13:55Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177153191", - "id": 177153191, - "node_id": "RA_kwDOL4q0GM4KjySn", - "name": "Komikku-arm64-v8a-r9078.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30566027, - "download_count": 66, - "created_at": "2024-07-02T07:08:40Z", - "updated_at": "2024-07-02T07:08:41Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9078/Komikku-arm64-v8a-r9078.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177153196", - "id": 177153196, - "node_id": "RA_kwDOL4q0GM4KjySs", - "name": "Komikku-armeabi-v7a-r9078.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26449559, - "download_count": 11, - "created_at": "2024-07-02T07:08:40Z", - "updated_at": "2024-07-02T07:08:41Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9078/Komikku-armeabi-v7a-r9078.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177153190", - "id": 177153190, - "node_id": "RA_kwDOL4q0GM4KjySm", - "name": "Komikku-r9078.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70478810, - "download_count": 9, - "created_at": "2024-07-02T07:08:40Z", - "updated_at": "2024-07-02T07:08:41Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9078/Komikku-r9078.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177153194", - "id": 177153194, - "node_id": "RA_kwDOL4q0GM4KjySq", - "name": "Komikku-x86-r9078.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31667815, - "download_count": 4, - "created_at": "2024-07-02T07:08:40Z", - "updated_at": "2024-07-02T07:08:41Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9078/Komikku-x86-r9078.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177153197", - "id": 177153197, - "node_id": "RA_kwDOL4q0GM4KjySt", - "name": "Komikku-x86_64-r9078.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32740985, - "download_count": 6, - "created_at": "2024-07-02T07:08:40Z", - "updated_at": "2024-07-02T07:08:41Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9078/Komikku-x86_64-r9078.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9078", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9078", - "body": "### Fix\r\n- really fixed duplicate issue with *Suggestions* row (@cuong-tran)\r\n- fix GDrive error message (@cuong-tran)\r\n\r\n### Detail:\r\nhttps://github.com/komikku-app/komikku/compare/79568eb37b...45e9d19a75\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 0f35183ad38526faee8c11c6b05c16965c84d1d4ca075089004d5ff9ce82bdff |\r\n| arm64-v8a | f030133efeb63ebd84598762ff795011774b8b0c32ea2ef067f0034986980e00 |\r\n| armeabi-v7a | fb3c1acc7ef5896de2a89ac4361d8d0d7729e422cb758645fdc0d256005d6135 |\r\n| x86 | 5321fef8182ebaa20df59f70cb74c02e130b4861e00308ce05efd70328042b5e |\r\n| x86_64 | b967f7c44875ec776bb29daa6697dc60261880c60b122589b2ad40b12243f2a9 |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r9078.apk\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/163497791/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/163417218", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/163417218/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/163417218/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9075", - "id": 163417218, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JvYyC", - "tag_name": "r9075", - "target_commitish": "main", - "name": "Komikku Preview r9075", - "draft": false, - "prerelease": false, - "created_at": "2024-06-20T00:31:06Z", - "published_at": "2024-07-01T19:42:31Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177057896", - "id": 177057896, - "node_id": "RA_kwDOL4q0GM4KjbBo", - "name": "Komikku-arm64-v8a-r9075.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30566027, - "download_count": 22, - "created_at": "2024-07-01T19:37:27Z", - "updated_at": "2024-07-01T19:37:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9075/Komikku-arm64-v8a-r9075.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177057897", - "id": 177057897, - "node_id": "RA_kwDOL4q0GM4KjbBp", - "name": "Komikku-armeabi-v7a-r9075.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26449559, - "download_count": 3, - "created_at": "2024-07-01T19:37:27Z", - "updated_at": "2024-07-01T19:37:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9075/Komikku-armeabi-v7a-r9075.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177057899", - "id": 177057899, - "node_id": "RA_kwDOL4q0GM4KjbBr", - "name": "Komikku-r9075.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70478810, - "download_count": 3, - "created_at": "2024-07-01T19:37:27Z", - "updated_at": "2024-07-01T19:37:29Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9075/Komikku-r9075.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177057898", - "id": 177057898, - "node_id": "RA_kwDOL4q0GM4KjbBq", - "name": "Komikku-x86-r9075.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31667815, - "download_count": 1, - "created_at": "2024-07-01T19:37:27Z", - "updated_at": "2024-07-01T19:37:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9075/Komikku-x86-r9075.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/177057900", - "id": 177057900, - "node_id": "RA_kwDOL4q0GM4KjbBs", - "name": "Komikku-x86_64-r9075.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32740985, - "download_count": 1, - "created_at": "2024-07-01T19:37:27Z", - "updated_at": "2024-07-01T19:37:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9075/Komikku-x86_64-r9075.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9075", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9075", - "body": "### New\r\n- More themes\r\n\r\n### Improve\r\n- Reader's color\r\n- GDrive message\r\n- Theme's improve\r\n\r\n### Fix\r\n- Crashing issue with *Suggestions* row\r\n\r\n#### Detail\r\nhttps://github.com/komikku-app/komikku/compare/9ab91394e4...79568eb37b\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | f2106f026b6ec76becb3c2712d2f358df7df2dfcf1ea9e34915f299952cfadd8 |\r\n| arm64-v8a | 585fefaf76f76fdd44354995f5c4373182834acf1408ae810dffb1e35a93296b |\r\n| armeabi-v7a | b5c17771d0a0350f406dc9638dc5e069a84b83215398646dc201c15ea6d21db9 |\r\n| x86 | 6e32494cb31f87960cc18c79d587412a5dffdcda0789e489f079cc6009b2b38d |\r\n| x86_64 | 052c2c50d8e9bc49564b99234c6833e35df0df919418ae854e88fb40e36fd0cf |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r9075.apk\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/163417218/reactions", - "total_count": 1, - "+1": 1, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - } - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/162272250", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/162272250/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/162272250/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9066", - "id": 162272250, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JrBP6", - "tag_name": "r9066", - "target_commitish": "main", - "name": "Komikku Preview r9066", - "draft": false, - "prerelease": false, - "created_at": "2024-06-20T00:31:06Z", - "published_at": "2024-06-25T12:01:19Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/175834750", - "id": 175834750, - "node_id": "RA_kwDOL4q0GM4KewZ-", - "name": "Komikku-arm64-v8a-r9066.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30525067, - "download_count": 66, - "created_at": "2024-06-25T11:41:46Z", - "updated_at": "2024-06-25T11:41:47Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9066/Komikku-arm64-v8a-r9066.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/175834748", - "id": 175834748, - "node_id": "RA_kwDOL4q0GM4KewZ8", - "name": "Komikku-armeabi-v7a-r9066.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26408599, - "download_count": 9, - "created_at": "2024-06-25T11:41:46Z", - "updated_at": "2024-06-25T11:41:47Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9066/Komikku-armeabi-v7a-r9066.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/175834751", - "id": 175834751, - "node_id": "RA_kwDOL4q0GM4KewZ_", - "name": "Komikku-r9066.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70437850, - "download_count": 7, - "created_at": "2024-06-25T11:41:46Z", - "updated_at": "2024-06-25T11:41:48Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9066/Komikku-r9066.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/175834749", - "id": 175834749, - "node_id": "RA_kwDOL4q0GM4KewZ9", - "name": "Komikku-x86-r9066.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31622759, - "download_count": 1, - "created_at": "2024-06-25T11:41:46Z", - "updated_at": "2024-06-25T11:41:47Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9066/Komikku-x86-r9066.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/175834747", - "id": 175834747, - "node_id": "RA_kwDOL4q0GM4KewZ7", - "name": "Komikku-x86_64-r9066.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32700025, - "download_count": 1, - "created_at": "2024-06-25T11:41:46Z", - "updated_at": "2024-06-25T11:41:47Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9066/Komikku-x86_64-r9066.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9066", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9066", - "body": "### New\r\n- Home icon in manga view (@cuong-tran)\r\n- Showing changelog in preview build (@cuong-tran)\r\n\r\n### Improve\r\n- Full color for Reader & Cover (@cuong-tran)\r\n- Better background for full cover view (@cuong-tran)\r\n- Better cover_error & cover_loading size (@cuong-tran)\r\n- Better Continue-reading button size (@AntsyLich)\r\n- navigation flow when click on manga's source (@cuong-tran)\r\n- Sticky header & language for sources filter (@cuong-tran)\r\n- Metadata view (@cuong-tran)\r\n- Scrollbar for *Suggestions* screen (@cuong-tran)\r\n- Translations update from Hosted Weblate (mihonapp/mihon#904) (@weblate)\r\n- Add log & improve key generation to better debug crashing issues (@cuong-tran)\r\n- other UI improvements (@cuong-tran)\r\n\r\n### Fix\r\n- Crashing issues with *Suggestions* screens (@cuong-tran)\r\n- Fix unexpected skips in strong skipping mode (mihonapp/mihon#940) (@FooIbar)\r\n\r\n#### Details\r\nhttps://github.com/komikku-app/komikku/compare/9b4b1e3e1a...9ab91394e4\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 92b999b15afa83435508fdd11a2482dc22c3390291256dc1e4dc671dca616a2b |\r\n| arm64-v8a | e94be79dfd2690a155c77cf705db96957070b6c66a986c334912180d71c68145 |\r\n| armeabi-v7a | cfc51a465aa4c7bb34d983cbf4868eca99c458b12306042b19f90ec0c047a91c |\r\n| x86 | d8c8bda0f46865097310fade384a054295bc6ff99d1f6e7364cca526d1d4ddfe |\r\n| x86_64 | b5fb550e46039c2f7271f5de555c778231410e6fdb109d0fd4ba5c04f548cedc |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r9066.apk\r\n", - "mentions_count": 4 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/161508003", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/161508003/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/161508003/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r9036", - "id": 161508003, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JoGqj", - "tag_name": "r9036", - "target_commitish": "main", - "name": "Komikku Preview r9036", - "draft": false, - "prerelease": false, - "created_at": "2024-06-20T00:31:06Z", - "published_at": "2024-06-20T15:37:58Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/174939115", - "id": 174939115, - "node_id": "RA_kwDOL4q0GM4KbVvr", - "name": "Komikku-arm64-v8a-r9036.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30473662, - "download_count": 57, - "created_at": "2024-06-20T15:21:26Z", - "updated_at": "2024-06-20T15:21:26Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9036/Komikku-arm64-v8a-r9036.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/174939116", - "id": 174939116, - "node_id": "RA_kwDOL4q0GM4KbVvs", - "name": "Komikku-armeabi-v7a-r9036.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26357194, - "download_count": 7, - "created_at": "2024-06-20T15:21:26Z", - "updated_at": "2024-06-20T15:21:26Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9036/Komikku-armeabi-v7a-r9036.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/174939114", - "id": 174939114, - "node_id": "RA_kwDOL4q0GM4KbVvq", - "name": "Komikku-r9036.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70386445, - "download_count": 7, - "created_at": "2024-06-20T15:21:25Z", - "updated_at": "2024-06-20T15:21:27Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9036/Komikku-r9036.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/174939119", - "id": 174939119, - "node_id": "RA_kwDOL4q0GM4KbVvv", - "name": "Komikku-x86-r9036.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31571354, - "download_count": 1, - "created_at": "2024-06-20T15:21:26Z", - "updated_at": "2024-06-20T15:21:26Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9036/Komikku-x86-r9036.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/174939118", - "id": 174939118, - "node_id": "RA_kwDOL4q0GM4KbVvu", - "name": "Komikku-x86_64-r9036.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32648620, - "download_count": 2, - "created_at": "2024-06-20T15:21:26Z", - "updated_at": "2024-06-20T15:21:26Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r9036/Komikku-x86_64-r9036.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r9036", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r9036", - "body": "### New\r\n- Theme based on cover for Reader (@cuong-tran)\r\n\r\n### Improve\r\n- update theme color when changing cover in reader & improve performance (@cuong-tran)\r\n- update splash color (@cuong-tran)\r\n- update translation (@cuong-tran)\r\n- Update TW strings.xml (#101) (@NeKoOuO)\r\n- enable help translate menu (@cuong-tran)\r\n\r\n### Fix\r\n- Fix manual edit on Tracker's chapter (must hit Done on keyboard) (@cuong-tran)\r\n- remove duplicate chapter's filter icon (@cuong-tran)\r\n- Update R8 to fix `NoSuchMethodError` crash (mihonapp/mihon#914) (@FooIbar)\r\n- Fix PaletteScreen crashing on app suspends (@cuong-tran)\r\n- Fix *Suggestions* screen crash (@cuong-tran)\r\n- better Display Mode selection for *Suggestions* screen (and other SY screen) (@cuong-tran)\r\n- Change Recommendation button style & enable default showing it (@cuong-tran)\r\n- navigator back on ExtensionsScreen (@cuong-tran)\r\n- Hide Colors Palette on Preview build (@cuong-tran)\r\n\r\n#### Details:\r\nhttps://github.com/komikku-app/komikku/compare/8959741c2d...9b4b1e3e1a\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 6e9e5f4cfc2fba4a08a2714762c824bfc8f36b239c869e176fef6a5e3000c36f |\r\n| arm64-v8a | 6b123b8f9cee7c63cc376f2059a5269507808e6d2ae9efe84c0e3803573afd31 |\r\n| armeabi-v7a | 712abf4ffbd1a56a99b71059525eae395b9ea54e8996a500f8dc0e8a63699179 |\r\n| x86 | f1af5bbe6e9b040ddc2da6eee04247ad70c554a18503984db123218fedd9aaa6 |\r\n| x86_64 | c1703afd81c06aac302ee7b68699ccbc7c2be3c4d178f1fcb0fce2ff73a0aac3 |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r9036.apk\r\n", - "mentions_count": 3 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/160533876", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/160533876/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/160533876/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r8998", - "id": 160533876, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JkY10", - "tag_name": "r8998", - "target_commitish": "main", - "name": "Komikku Preview r8998", - "draft": false, - "prerelease": false, - "created_at": "2024-05-21T08:19:16Z", - "published_at": "2024-06-14T16:39:34Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/173821263", - "id": 173821263, - "node_id": "RA_kwDOL4q0GM4KXE1P", - "name": "Komikku-arm64-v8a-r8998.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30539084, - "download_count": 51, - "created_at": "2024-06-14T16:29:35Z", - "updated_at": "2024-06-14T16:29:35Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8998/Komikku-arm64-v8a-r8998.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/173821266", - "id": 173821266, - "node_id": "RA_kwDOL4q0GM4KXE1S", - "name": "Komikku-armeabi-v7a-r8998.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26426712, - "download_count": 46, - "created_at": "2024-06-14T16:29:35Z", - "updated_at": "2024-06-14T16:29:35Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8998/Komikku-armeabi-v7a-r8998.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/173821264", - "id": 173821264, - "node_id": "RA_kwDOL4q0GM4KXE1Q", - "name": "Komikku-r8998.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70451867, - "download_count": 8, - "created_at": "2024-06-14T16:29:35Z", - "updated_at": "2024-06-14T16:29:36Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8998/Komikku-r8998.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/173821265", - "id": 173821265, - "node_id": "RA_kwDOL4q0GM4KXE1R", - "name": "Komikku-x86-r8998.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31640872, - "download_count": 1, - "created_at": "2024-06-14T16:29:35Z", - "updated_at": "2024-06-14T16:29:36Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8998/Komikku-x86-r8998.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/173821267", - "id": 173821267, - "node_id": "RA_kwDOL4q0GM4KXE1T", - "name": "Komikku-x86_64-r8998.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32718138, - "download_count": 1, - "created_at": "2024-06-14T16:29:35Z", - "updated_at": "2024-06-14T16:29:36Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8998/Komikku-x86_64-r8998.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r8998", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r8998", - "body": "### New\r\n- New app icon, thanks @sshJovian & @NeKoOuO (@cuong-tran)\r\n- Make the app Android 8+ (@AntsyLich)\r\n- Add NSFW filter & source search into Merge screen (Find in another source) (@cuong-tran)\r\n- Option to not show *Suggestions* by default but use a button to open that screen (@cuong-tran)\r\n\r\n### Improve\r\n- Improve Theme cover based performance & color; support Pure-dark-mode (#81) (@cuong-tran)\r\n- Hide *Suggestions* if not found any result (@cuong-tran)\r\n- Default to put ShowRecommendation in the overflow menu (@cuong-tran)\r\n- Remove some legacy folder/file name lookup for download (@AntsyLich)\r\n- Translation update & more, thanks @NeKoOuO\r\n\r\n### Fix\r\n- Revert \"Bump compose version\" which causes laggy with scroll (@cuong-tran)\r\n- Bangumi tracker for Komikku, thanks @NeKoOuO (@cuong-tran)\r\n- Fix sources' NSFW filter was being reverted (@cuong-tran)\r\n- Fix chapter's date wrong color randomly (MangaChapterListItem: Don't use alpha modifier) (@AntsyLich)\r\n- Check category order before restoring from backup (@AntsyLich)\r\n- Fix chapter number parsing when number is after unwanted tag (@AntsyLich)\r\n\r\n#### Details:\r\nhttps://github.com/komikku-app/komikku/compare/a66fdfb8a0...8959741c2d\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 5804e98eb3e5d61c1411bbba89ce62dc8c0004afc394e544720e828719027aa9 |\r\n| arm64-v8a | 76d8cda1a48b41327ba4e2b8118c6fb66cedefb08f5d13e5d40e177c4e8aec30 |\r\n| armeabi-v7a | f8b44b1afc221fa237cfbe082020fd4b17dd9dcc365f77ee6a7cdb64043b9def |\r\n| x86 | d99b6cfbb625ea0e952de15d441473b9582c2acd4e09819c4b2791dc04123ff4 |\r\n| x86_64 | 748993aa0b480cfc5ecdda6160629d7326c4cda269cb342ed3fa19e96999f0c5 |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r8998.apk\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/160533876/reactions", - "total_count": 4, - "+1": 3, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 4 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/158877593", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/158877593/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/158877593/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r8957", - "id": 158877593, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JeEeZ", - "tag_name": "r8957", - "target_commitish": "main", - "name": "Komikku Preview r8957", - "draft": false, - "prerelease": false, - "created_at": "2024-05-21T08:19:16Z", - "published_at": "2024-06-04T20:46:31Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/171915870", - "id": 171915870, - "node_id": "RA_kwDOL4q0GM4KPzpe", - "name": "Komikku-arm64-v8a-r8957.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32187415, - "download_count": 39, - "created_at": "2024-06-04T20:35:49Z", - "updated_at": "2024-06-04T20:35:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8957/Komikku-arm64-v8a-r8957.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/171915872", - "id": 171915872, - "node_id": "RA_kwDOL4q0GM4KPzpg", - "name": "Komikku-armeabi-v7a-r8957.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28070947, - "download_count": 15, - "created_at": "2024-06-04T20:35:49Z", - "updated_at": "2024-06-04T20:35:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8957/Komikku-armeabi-v7a-r8957.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/171915871", - "id": 171915871, - "node_id": "RA_kwDOL4q0GM4KPzpf", - "name": "Komikku-r8957.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 72100198, - "download_count": 7, - "created_at": "2024-06-04T20:35:49Z", - "updated_at": "2024-06-04T20:35:52Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8957/Komikku-r8957.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/171915873", - "id": 171915873, - "node_id": "RA_kwDOL4q0GM4KPzph", - "name": "Komikku-x86-r8957.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33285107, - "download_count": 1, - "created_at": "2024-06-04T20:35:49Z", - "updated_at": "2024-06-04T20:35:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8957/Komikku-x86-r8957.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/171915874", - "id": 171915874, - "node_id": "RA_kwDOL4q0GM4KPzpi", - "name": "Komikku-x86_64-r8957.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34362373, - "download_count": 3, - "created_at": "2024-06-04T20:35:49Z", - "updated_at": "2024-06-04T20:35:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8957/Komikku-x86_64-r8957.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r8957", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r8957", - "body": "### New\r\n- Feature: details page's theme based on cover (#41) (@cuong-tran)\r\n- Cover's styling: color tint & loading animation (#42) (@cuong-tran)\r\n- Add Namicomi support for external chapters on MD (jobobby04/TachiyomiSY#1188) (@timschneeb)\r\n\r\n### Improve\r\n- warning to private installer (@cuong-tran)\r\n\r\n### Fix\r\n- Fix Genre tag search while browsing *Suggestions* or from *Feed* Screen (@cuong-tran)\r\n- Fix WorkManager cancellation issues (@jobobby04)\r\n- fix: storage permission request for non-conforming devices (mihonapp/mihon#726) (@mainrs)\r\n- Update dependencies (renovate/dependabot)\r\n\r\nDetails:\r\nhttps://github.com/komikku-app/komikku/compare/acfaab6102...a66fdfb8a0\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 70d2e4ddd9400c78a6bcec049a789e51b1aefe0c044ad332626d0615ba82dc3d |\r\n| arm64-v8a | 6ce5dfee5179c44d9a551486e753e05ab2b08c72eb819fa029697e3ce5a3c042 |\r\n| armeabi-v7a | 13191bc335d7c3558bb37c464be63c1502b399043753f3c004f87886ded4963c |\r\n| x86 | 8e9472c5f1ebc23bbfc0a3b2e09fb8aa566d4c91c3ec60c6bfc80dabc7f64450 |\r\n| x86_64 | 1a2ce0521cd59aa112fc8d9fc8bde7b047296cea369a7aea7fb70962cee0e166 |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r8957.apk\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/158877593/reactions", - "total_count": 2, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 2, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 4 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/158158969", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/158158969/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/158158969/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r8931", - "id": 158158969, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JbVB5", - "tag_name": "r8931", - "target_commitish": "main", - "name": "Komikku Preview r8931", - "draft": false, - "prerelease": false, - "created_at": "2024-05-21T08:19:16Z", - "published_at": "2024-05-30T11:55:46Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/170932171", - "id": 170932171, - "node_id": "RA_kwDOL4q0GM4KMDfL", - "name": "Komikku-arm64-v8a-r8931.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32120869, - "download_count": 24, - "created_at": "2024-05-30T11:53:13Z", - "updated_at": "2024-05-30T11:53:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8931/Komikku-arm64-v8a-r8931.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/170932168", - "id": 170932168, - "node_id": "RA_kwDOL4q0GM4KMDfI", - "name": "Komikku-armeabi-v7a-r8931.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28008497, - "download_count": 22, - "created_at": "2024-05-30T11:53:13Z", - "updated_at": "2024-05-30T11:53:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8931/Komikku-armeabi-v7a-r8931.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/170932167", - "id": 170932167, - "node_id": "RA_kwDOL4q0GM4KMDfH", - "name": "Komikku-r8931.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 72033652, - "download_count": 2, - "created_at": "2024-05-30T11:53:13Z", - "updated_at": "2024-05-30T11:53:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8931/Komikku-r8931.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/170932169", - "id": 170932169, - "node_id": "RA_kwDOL4q0GM4KMDfJ", - "name": "Komikku-x86-r8931.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33222657, - "download_count": 1, - "created_at": "2024-05-30T11:53:13Z", - "updated_at": "2024-05-30T11:53:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8931/Komikku-x86-r8931.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/170932172", - "id": 170932172, - "node_id": "RA_kwDOL4q0GM4KMDfM", - "name": "Komikku-x86_64-r8931.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34299923, - "download_count": 1, - "created_at": "2024-05-30T11:53:13Z", - "updated_at": "2024-05-30T11:53:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8931/Komikku-x86_64-r8931.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r8931", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r8931", - "body": "### Improve\r\n- Won't show *Suggestions* row if nothing found (@cuong-tran)\r\n\r\n### Fix\r\n- only sync back read chapters from Trackers if chapter list is incremental (@cuong-tran)\r\n- Won't sync when click Tracker if Auto-sync is disabled\r\n\r\n### Others\r\n- Add Timber logging (@cuong-tran)\r\n\r\nhttps://github.com/komikku-app/komikku/compare/296c2946a2...acfaab6102\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | b25b16e38b318dfc5c9faaaa3bafeea3970ebb2a3d785657ec8e634a44e47d26 |\r\n| arm64-v8a | dea9c2995e854da3d1bf1a5599dcafcf4c91e3205d128f4d7acb1a4a0fd7087a |\r\n| armeabi-v7a | b3023a6253b92f6a38a625213bf3eec63ba5d379b0307d1178421530c0786d04 |\r\n| x86 | 18e1610c7ac17aeaf77cae7f2fe0d40d865bea293e62f12b36b84e847d4f450e |\r\n| x86_64 | b7201f397d7912987731249c0ff6a2c0c2d1335b23586c476c3245ef06114b53 |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r8931.apk\r\n", - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/157191934", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/157191934/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/157191934/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r8928", - "id": 157191934, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JXo7-", - "tag_name": "r8928", - "target_commitish": "main", - "name": "Komikku Preview r8928", - "draft": false, - "prerelease": false, - "created_at": "2024-05-21T08:19:16Z", - "published_at": "2024-05-23T19:06:29Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/169696785", - "id": 169696785, - "node_id": "RA_kwDOL4q0GM4KHV4R", - "name": "Komikku-arm64-v8a-r8928.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32120869, - "download_count": 16, - "created_at": "2024-05-23T19:00:42Z", - "updated_at": "2024-05-23T19:00:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8928/Komikku-arm64-v8a-r8928.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/169696783", - "id": 169696783, - "node_id": "RA_kwDOL4q0GM4KHV4P", - "name": "Komikku-armeabi-v7a-r8928.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28008497, - "download_count": 8, - "created_at": "2024-05-23T19:00:42Z", - "updated_at": "2024-05-23T19:00:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8928/Komikku-armeabi-v7a-r8928.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/169696784", - "id": 169696784, - "node_id": "RA_kwDOL4q0GM4KHV4Q", - "name": "Komikku-r8928.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 72033652, - "download_count": 2, - "created_at": "2024-05-23T19:00:42Z", - "updated_at": "2024-05-23T19:00:45Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8928/Komikku-r8928.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/169696786", - "id": 169696786, - "node_id": "RA_kwDOL4q0GM4KHV4S", - "name": "Komikku-x86-r8928.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33222657, - "download_count": 1, - "created_at": "2024-05-23T19:00:42Z", - "updated_at": "2024-05-23T19:00:44Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8928/Komikku-x86-r8928.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/169696782", - "id": 169696782, - "node_id": "RA_kwDOL4q0GM4KHV4O", - "name": "Komikku-x86_64-r8928.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34299923, - "download_count": 1, - "created_at": "2024-05-23T19:00:42Z", - "updated_at": "2024-05-23T19:00:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8928/Komikku-x86_64-r8928.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r8928", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r8928", - "body": "### New\r\n- Auto sync read chapters from Trackers & mark read to update (#28) (@cuong-tran)\r\n\r\n### Improve\r\n- Improve *Suggestions* (#29) (@cuong-tran)\r\n\r\n### Changes\r\n- Update discord (@cuong-tran)\r\n\r\n### Hot fix\r\n- Fix auto-sync read from Trackers switch (@cuong-tran)\r\n- Avoid set chapter 1 as Read if Tracker is in Wish list/Plan to read/Unread (@cuong-tran)\r\n\r\nhttps://github.com/komikku-app/komikku/compare/6bd8f399d8...296c2946a2\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | ea87a17c15e1ba1b5738be643b3d8ddd922620b3d643b088193d214094e3d817 |\r\n| arm64-v8a | 9ed14af198c702a9ed33f60427131357ba99b3c0e6fc905dd2255a677124e9ff |\r\n| armeabi-v7a | 7ef4b55c1f118ebbcffddbdd5cff05e48b9629d021f653214206ae675104b0c7 |\r\n| x86 | 83547f8fa2492293d6e71b3c84da64dc30a89196f26716bfbbd2d990c20cbd94 |\r\n| x86_64 | 1c61ab8b220274be5304aa93e22dfd40a27e3085e65966d0cbc846a4787aa861 |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r8928.apk\r\n", - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/156492099", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/156492099/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/156492099/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r8923", - "id": 156492099, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JU-FD", - "tag_name": "r8923", - "target_commitish": "main", - "name": "Komikku Preview r8923", - "draft": false, - "prerelease": false, - "created_at": "2024-05-19T18:07:07Z", - "published_at": "2024-05-20T11:46:57Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168975936", - "id": 168975936, - "node_id": "RA_kwDOL4q0GM4KEl5A", - "name": "Komikku-arm64-v8a-r8923.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32120869, - "download_count": 13, - "created_at": "2024-05-20T10:54:20Z", - "updated_at": "2024-05-20T10:54:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8923/Komikku-arm64-v8a-r8923.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168975940", - "id": 168975940, - "node_id": "RA_kwDOL4q0GM4KEl5E", - "name": "Komikku-armeabi-v7a-r8923.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28004401, - "download_count": 2, - "created_at": "2024-05-20T10:54:20Z", - "updated_at": "2024-05-20T10:54:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8923/Komikku-armeabi-v7a-r8923.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168975937", - "id": 168975937, - "node_id": "RA_kwDOL4q0GM4KEl5B", - "name": "Komikku-r8923.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 72033652, - "download_count": 1, - "created_at": "2024-05-20T10:54:20Z", - "updated_at": "2024-05-20T10:54:22Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8923/Komikku-r8923.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168975938", - "id": 168975938, - "node_id": "RA_kwDOL4q0GM4KEl5C", - "name": "Komikku-x86-r8923.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33222657, - "download_count": 2, - "created_at": "2024-05-20T10:54:20Z", - "updated_at": "2024-05-20T10:54:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8923/Komikku-x86-r8923.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168975939", - "id": 168975939, - "node_id": "RA_kwDOL4q0GM4KEl5D", - "name": "Komikku-x86_64-r8923.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34299923, - "download_count": 2, - "created_at": "2024-05-20T10:54:20Z", - "updated_at": "2024-05-20T10:54:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8923/Komikku-x86_64-r8923.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r8923", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r8923", - "body": "### New:\r\n- A dedicated screen for *Suggestions*, fetching directly from sources (@cuong-tran)\r\n- \"What's New\" & \"Preview peeking\" directly from Github's release notes (@cuong-tran)\r\n\r\n### Improve:\r\n- More & faster *Suggestions* (@cuong-tran)\r\n- Fix fetching *Suggestions* from extensions was not concurrently (@cuong-tran)\r\n\r\n### Others changes\r\n- Update dependencies and cleanup\r\n- Update compose bom and fix renovate config for it (#674) (@FooIbar)\r\n- Use m3 ripple and clean up interactionSource usage (#675) (@FooIbar)\r\n- Use Okio instead of `java.io` for image processing (#691) (@FooIbar)\r\n- Add MyAnimeList issue autoclose (#703) (@MajorTanya)\r\n- Use Coil pipeline instead of SSIV for image decode (#692) (@FooIbar)\r\n- Log app crash exceptions in dumped crash logs (#742) (@FooIbar)\r\n- Fix some extension related issue and cleanups (@AntsyLich)\r\n- Trust extension by repo (#570) (@AntsyLich)\r\n- Address firebase ktx module deprecation (@AntsyLich)\r\n- Massively improve findFile performance (#728) (@raxod502)\r\n- Fix Local Manga details edit (@jobobby04)\r\n- Include lewd filter in filter highlight (@jobobby04)\r\n- Add getImageUrl override to EHentai (@jobobby04)\r\n- Get new page url on image fetch failure for EHentai (@jobobby04)\r\n- [RU] Translations (#1161) (@Dexroneum)\r\n- Downgrade crashlytics plugin (@jobobby04)\r\n- Change keyboard type in extension repo dialog (#764) (@xbjfk)\r\n- Possibly fix extension obsolete bug (@jobobby04)\r\n- Fix search bar style (@AntsyLich)\r\n- Fix tap control area shifting after zooming out (#767) (@FooIbar)\r\n- Use new SurfaceContainer color roles (@AntsyLich)\r\n- update r8 rules for `MultipartBody.Builder` in extensions (#783) (@AwkwardPeak7)\r\n- Update themes to follow new compose update changes (#766) (@CrepeTF)\r\n- Fix MigratorTest after update io.mockk to v1.13.11 (@cuong-tran)\r\n\r\nhttps://github.com/komikku-app/komikku/compare/28fb304229...dec4410072\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | c59922a57deb3c611fcc6795fb16324cee72ba997a4ad400707cb1c2ff95f3a6 |\r\n| arm64-v8a | 99ea3dbde29a29b35dc1cb63c1c3fe5ddb0f315b60bb4cd2d6960945423dd22c |\r\n| armeabi-v7a | c0d0c618ec164fc1905829f8873e468019a57d3353e5a24266e99fcf67004d47 |\r\n| x86 | 78f368480c08a6b6e597c522162e489b5cf751ea89da776188e84eb1a7307c00 |\r\n| x86_64 | cc9fc8eb9dab204d3231a5cd6e024620682ab5b1d350f07f22c955a06027ed90 |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r8923.apk\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/156492099/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 10 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/156420299", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/156420299/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/156420299/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r8902", - "id": 156420299, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JUsjL", - "tag_name": "r8902", - "target_commitish": "main", - "name": "Komikku Preview r8902", - "draft": false, - "prerelease": false, - "created_at": "2024-05-19T15:52:20Z", - "published_at": "2024-05-19T17:27:00Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168841091", - "id": 168841091, - "node_id": "RA_kwDOL4q0GM4KEE-D", - "name": "Komikku-arm64-v8a-r8902.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32079932, - "download_count": 7, - "created_at": "2024-05-19T15:50:32Z", - "updated_at": "2024-05-19T15:50:33Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8902/Komikku-arm64-v8a-r8902.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168841092", - "id": 168841092, - "node_id": "RA_kwDOL4q0GM4KEE-E", - "name": "Komikku-armeabi-v7a-r8902.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 27967560, - "download_count": 19, - "created_at": "2024-05-19T15:50:32Z", - "updated_at": "2024-05-19T15:50:33Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8902/Komikku-armeabi-v7a-r8902.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168841090", - "id": 168841090, - "node_id": "RA_kwDOL4q0GM4KEE-C", - "name": "Komikku-r8902.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 71992715, - "download_count": 3, - "created_at": "2024-05-19T15:50:32Z", - "updated_at": "2024-05-19T15:50:34Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8902/Komikku-r8902.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168841094", - "id": 168841094, - "node_id": "RA_kwDOL4q0GM4KEE-G", - "name": "Komikku-x86-r8902.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33181720, - "download_count": 2, - "created_at": "2024-05-19T15:50:32Z", - "updated_at": "2024-05-19T15:50:33Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8902/Komikku-x86-r8902.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/168841093", - "id": 168841093, - "node_id": "RA_kwDOL4q0GM4KEE-F", - "name": "Komikku-x86_64-r8902.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34258986, - "download_count": 2, - "created_at": "2024-05-19T15:50:32Z", - "updated_at": "2024-05-19T15:50:33Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8902/Komikku-x86_64-r8902.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r8902", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r8902", - "body": "### New:\r\n- A dedicated screen for *Suggestions*, fetching directly from sources (@cuong-tran)\r\n- \"What's New\" & \"Preview peeking\" directly from Github's release notes (@cuong-tran)\r\n\r\n### Improve:\r\n- More & faster *Suggestions* (@cuong-tran)\r\n\r\n### Others changes\r\n- Update dependencies and cleanup\r\n- Update compose bom and fix renovate config for it (#674) (@FooIbar)\r\n- Use m3 ripple and clean up interactionSource usage (#675) (@FooIbar)\r\n- Use Okio instead of `java.io` for image processing (#691) (@FooIbar)\r\n- Add MyAnimeList issue autoclose (#703) (@MajorTanya)\r\n- Use Coil pipeline instead of SSIV for image decode (#692) (@FooIbar)\r\n- Log app crash exceptions in dumped crash logs (#742) (@FooIbar)\r\n- Fix some extension related issue and cleanups (@AntsyLich)\r\n- Trust extension by repo (#570) (@AntsyLich)\r\n- Address firebase ktx module deprecation (@AntsyLich)\r\n- Massively improve findFile performance (#728) (@raxod502)\r\n- Fix Local Manga details edit (@jobobby04)\r\n- Include lewd filter in filter highlight (@jobobby04)\r\n- Add getImageUrl override to EHentai (@jobobby04)\r\n- Get new page url on image fetch failure for EHentai (@jobobby04)\r\n- [RU] Translations (#1161) (@Dexroneum)\r\n- Downgrade crashlytics plugin (@jobobby04)\r\n- Change keyboard type in extension repo dialog (#764) (@xbjfk)\r\n- Possibly fix extension obsolete bug (@jobobby04)\r\n- Fix search bar style (@AntsyLich)\r\n- Fix tap control area shifting after zooming out (#767) (@FooIbar)\r\n- Use new SurfaceContainer color roles (@AntsyLich)\r\n- update r8 rules for `MultipartBody.Builder` in extensions (#783) (@AwkwardPeak7)\r\n- Update themes to follow new compose update changes (#766) (@CrepeTF)\r\n\r\nhttps://github.com/komikku-app/komikku/compare/48fb4a2e60...28fb304229\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 210ea2fc7efd9f07ad6052c95943566fdc75c41ef36d28cb942acec9055034a7 |\r\n| arm64-v8a | 622d2dbbfb1fd97586f1f07b0f011fd3ca3c4e2dea910fa9da4ffb5ace280d3b |\r\n| armeabi-v7a | d06ac5846c7ffe2600dbcf35161a6af99a5b580698f46110d8197a4050c0e562 |\r\n| x86 | ff263d80b1a592945cd1e249c87e03cfddb6af581dfb786f512efc2fe34f73a9 |\r\n| x86_64 | 65b007ab2b806306b75d89f20f3a276685ca1501c2dcf1eccbc1e7a086bdf067 |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r8902.apk\r\n", - "mentions_count": 10 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/155065395", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/155065395/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/155065395/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r8853", - "id": 155065395, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JPhwz", - "tag_name": "r8853", - "target_commitish": "main", - "name": "Komikku Preview r8853", - "draft": false, - "prerelease": false, - "created_at": "2024-05-10T03:38:58Z", - "published_at": "2024-05-10T03:59:43Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/167081370", - "id": 167081370, - "node_id": "RA_kwDOL4q0GM4J9XWa", - "name": "Komikku-arm64-v8a-r8853.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32112723, - "download_count": 14, - "created_at": "2024-05-10T03:51:26Z", - "updated_at": "2024-05-10T03:51:27Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8853/Komikku-arm64-v8a-r8853.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/167081371", - "id": 167081371, - "node_id": "RA_kwDOL4q0GM4J9XWb", - "name": "Komikku-armeabi-v7a-r8853.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28000351, - "download_count": 5, - "created_at": "2024-05-10T03:51:26Z", - "updated_at": "2024-05-10T03:51:27Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8853/Komikku-armeabi-v7a-r8853.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/167081369", - "id": 167081369, - "node_id": "RA_kwDOL4q0GM4J9XWZ", - "name": "Komikku-r8853.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 72025506, - "download_count": 3, - "created_at": "2024-05-10T03:51:25Z", - "updated_at": "2024-05-10T03:51:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8853/Komikku-r8853.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/167081372", - "id": 167081372, - "node_id": "RA_kwDOL4q0GM4J9XWc", - "name": "Komikku-x86-r8853.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33214511, - "download_count": 2, - "created_at": "2024-05-10T03:51:26Z", - "updated_at": "2024-05-10T03:51:27Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8853/Komikku-x86-r8853.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/167081373", - "id": 167081373, - "node_id": "RA_kwDOL4q0GM4J9XWd", - "name": "Komikku-x86_64-r8853.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34291777, - "download_count": 2, - "created_at": "2024-05-10T03:51:26Z", - "updated_at": "2024-05-10T03:51:27Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8853/Komikku-x86_64-r8853.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r8853", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r8853", - "body": "### Commits\r\n\r\nhttps://github.com/komikku-app/komikku/compare/23d862d17...48fb4a2e6\r\n\r\n- update README: fix badge (@cuong-tran)\r\n- workflow: fix fetch-depth (@cuong-tran)\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 2f42103835112d7978b04dc760dd82e54e07d720b590e5963780088e8a0a2c2f |\r\n| arm64-v8a | 6d57ead34f154b7381fd6b09fe8ae649f7bf8d76e1bd084867f68d0e1a19cbd7 |\r\n| armeabi-v7a | d5333158baa6fe72677a387a47d51cacd3c2774c7ac1c1e5c7e64f326e0b5145 |\r\n| x86 | ec26b5db7060f3bd8cb66a8b9103f92d41538d75769fff3d6a44674cc4e8973c |\r\n| x86_64 | ea0205a54eec8f654dd56d41d65607fc156dc14e42a590dfa0f4c668b2e6e88d |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r8853.apk\r\n", - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/154975556", - "assets_url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/154975556/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku-preview/releases/154975556/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku-preview/releases/tag/r8851", - "id": 154975556, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOL4q0GM4JPL1E", - "tag_name": "r8851", - "target_commitish": "main", - "name": "Komikku Preview r8851", - "draft": false, - "prerelease": false, - "created_at": "2024-05-09T16:51:45Z", - "published_at": "2024-05-09T16:53:32Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/166979823", - "id": 166979823, - "node_id": "RA_kwDOL4q0GM4J8-jv", - "name": "Komikku-arm64-v8a-r8851.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32112723, - "download_count": 10, - "created_at": "2024-05-09T16:31:12Z", - "updated_at": "2024-05-09T16:31:13Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8851/Komikku-arm64-v8a-r8851.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/166979826", - "id": 166979826, - "node_id": "RA_kwDOL4q0GM4J8-jy", - "name": "Komikku-armeabi-v7a-r8851.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28000351, - "download_count": 2, - "created_at": "2024-05-09T16:31:12Z", - "updated_at": "2024-05-09T16:31:13Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8851/Komikku-armeabi-v7a-r8851.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/166979824", - "id": 166979824, - "node_id": "RA_kwDOL4q0GM4J8-jw", - "name": "Komikku-r8851.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 72025506, - "download_count": 3, - "created_at": "2024-05-09T16:31:12Z", - "updated_at": "2024-05-09T16:31:14Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8851/Komikku-r8851.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/166979825", - "id": 166979825, - "node_id": "RA_kwDOL4q0GM4J8-jx", - "name": "Komikku-x86-r8851.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33214511, - "download_count": 2, - "created_at": "2024-05-09T16:31:12Z", - "updated_at": "2024-05-09T16:31:13Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8851/Komikku-x86-r8851.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku-preview/releases/assets/166979827", - "id": 166979827, - "node_id": "RA_kwDOL4q0GM4J8-jz", - "name": "Komikku-x86_64-r8851.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34291777, - "download_count": 1, - "created_at": "2024-05-09T16:31:12Z", - "updated_at": "2024-05-09T16:31:13Z", - "browser_download_url": "https://github.com/komikku-app/komikku-preview/releases/download/r8851/Komikku-x86_64-r8851.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku-preview/tarball/r8851", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku-preview/zipball/r8851", - "body": "### Changes\r\n\r\n- Show *Suggestions* for all sources\r\n- Bulk selection multiple entries to favorite/category\r\n- Search for source in Browse screen\r\n- Quick NSFW sources filter in both Extensions/Browse screen\r\n- Feeds screen support all sources\r\n- More Feed's entries\r\n- Click manga's source name will jump to source browsing\r\n- Show extensions/sources NSFW & languages tag\r\n- Jump to extensions' settings from Source screen\r\n- Built-in official extensions repo\r\n- Migrate to Komikku's own Tracking clients\r\n- Configurable interval to refresh entries from downloaded storage\r\n- Updater switched to method similar to Mihon's\r\n- Revert back support to show extensions' changelog & readme\r\n- Based on TachiyomiSY stable 1.10.5(Mar 2,2024)\r\n- Based on Mihon stable 0.16.4(from 0.16.3)\r\n- Minor fix for mark duplicate chapters as read\r\n- Include the delayed tracker update fix\r\n\r\n### Commits\r\n\r\nhttps://github.com/komikku-app/komikku/compare/8c651a1d0...23d862d17\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 93a08659851085565e675d7cc0344d3bb327b61fc30e1a3a888230027f018a15 |\r\n| arm64-v8a | 2dfd65a2d6f189b6b42e925d0692bcb3495fe4fa12f66a61c725a7735e2f07af |\r\n| armeabi-v7a | 0c92d8cb0bec3dd63e453af0f5e6b2b41c569c7b41b3a10fedc0dd011e31f1c1 |\r\n| x86 | 57485c3b356610f9269c53db852182d58d0213ed5fe481bd4e1ab8c6dafd9095 |\r\n| x86_64 | f06ec42c6353a2d179e9fe2f4cea8dec3e5cb8e6708088d40981d4f50a158d4e |\r\n\r\n## If you are unsure which apk to download then go with Komikku-r8851.apk\r\n" - } -] \ No newline at end of file diff --git a/app/src/debug/res/raw/release_latest.json b/app/src/debug/res/raw/release_latest.json deleted file mode 100644 index bbf85ba60..000000000 --- a/app/src/debug/res/raw/release_latest.json +++ /dev/null @@ -1,229 +0,0 @@ -{ - "url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/182433147/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/v1.12.1", - "id": 182433147, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4K37V7", - "tag_name": "v1.12.1", - "target_commitish": "master", - "name": "Komikku v1.12.1", - "draft": false, - "prerelease": false, - "created_at": "2024-10-29T10:10:09Z", - "published_at": "2024-10-29T10:39:18Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558367", - "id": 202558367, - "node_id": "RA_kwDOLExXBM4MEsuf", - "name": "Komikku-arm64-v8a-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35874711, - "download_count": 10085, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-arm64-v8a-v1.12.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558371", - "id": 202558371, - "node_id": "RA_kwDOLExXBM4MEsuj", - "name": "Komikku-armeabi-v7a-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30922661, - "download_count": 846, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-armeabi-v7a-v1.12.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558369", - "id": 202558369, - "node_id": "RA_kwDOLExXBM4MEsuh", - "name": "Komikku-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 87502278, - "download_count": 1475, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:16Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-v1.12.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558372", - "id": 202558372, - "node_id": "RA_kwDOLExXBM4MEsuk", - "name": "Komikku-x86-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 37037933, - "download_count": 40, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-x86-v1.12.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558373", - "id": 202558373, - "node_id": "RA_kwDOLExXBM4MEsul", - "name": "Komikku-x86_64-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 39032706, - "download_count": 91, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-x86_64-v1.12.1.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/v1.12.1", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/v1.12.1", - "body": "### What's Changed\r\n\r\n#### New\r\n\r\n##### UI\r\n\r\n- **Error screen** for Library update (@cuong-tran)\r\n- **Custom color theme** (@kana-shii) with Colors palette (@cuong-tran)\r\n- **Panorama cover** showing wide cover in full (@cuong-tran)\r\n- **Language flags** (@cuong-tran)\r\n- **Repo icon** for Repo (@cuong-tran)\r\n- show all entries going to be checked for **Smart update** (@cuong-tran)\r\n- show **duplicating manga cover** on Duplicate dialog (@cuong-tran)\r\n\r\n##### Action\r\n\r\n- **Hidden categories** to hide yours *things* from nosy people (@cuong-tran)\r\n- **Random library sort** for your inspiration(@jackhamilton)\r\n- **Chips for Saved search** in source browse (@cuong-tran)\r\n- **Docking Read/Resume button** (@cuong-tran)\r\n- **Merge multiple** library entries together at same time (@cuong-tran)\r\n- **Range-selection for Migration** (@cuong-tran)\r\n- **Hide library entries in Feed** (@cuong-tran)\r\n- Add source search, icon & flag on **Feed adding dialog** (@cuong-tran)\r\n- Easy **re-ordering Feed & Saved search** (@cuong-tran)\r\n- Ability to **enable/disable repo** (@cuong-tran)\r\n- Show **extensions from multiple repos** (@cuong-tran)\r\n- Default disable **integrated H** features (fresh install) (@cuong-tran)\r\n- Add option to opt out of ~~Analytics and~~ Crashlytics (@Animeboynz)\r\n\r\n#### Improve\r\n\r\n- Show **quantity badge** on Upcoming screen (@cuong-tran)\r\n- Add option to **skip downloading duplicate read chapters** (@shabnix)\r\n- Allow **sync Feeds & extension's settings** (@cuong-tran)\r\n- Option to **not backup Saved searches & Feeds** (@cuong-tran)\r\n- Option to **Always/Ask/Never update trackers** when chapter marked as read (@Animeboynz)\r\n- Show a toast whenever progress is synced from Trackers (@cuong-tran)\r\n- update all trackers progress when new tracker is added (@cuong-tran)\r\n- Allow disable smart-update for individual & fix custom interval update (@kana-shii)\r\n- Show download state and progress on reader chapter list (@NGB-Was-Taken)\r\n- Show local chapters as downloaded on merged entries. (@NGB-Was-Taken)\r\n- Allow adding multiple tags separated by commas (@NGB-Was-Taken)\r\n- make global search pinned/all sticky (@cuong-tran)\r\n- hide Pinned chip in Global/Migrate Search if no pinned sources available (@cuong-tran)\r\n- hide Filter save-button on SourceFeedScreen (@cuong-tran)\r\n- show loading indicator while bulk-favorite is running (@cuong-tran)\r\n- bulk-favorite: reverse selection (@cuong-tran)\r\n- Add extensions list refresh menu (@cuong-tran)\r\n- Respect privacy settings in extension update notification (@Animeboynz)\r\n- Add \"show entry\" action to download notifications (@mm12)\r\n- Avoid blocking call causing lag when open Settings (@cuong-tran)\r\n- allow chapter 0 dupe auto mark as read (@Riztard)\r\n- Re-enable fetching chapters list for entries with licensed status (@Animeboynz)\r\n- hide batch-add if integrated H & Delegated src is off (@Riztard)\r\n- add MangaDex to batch-add example (@cuong-tran)\r\n- Remove more unnecessary permissions from Firebase dependency (@AntsyLich)\r\n- rename `Related Titles` to `Suggestions` (@cuong-tran)\r\n- only load suggestions after entry finished loading info & chapters (@cuong-tran)\r\n- Add confirmation when adding repo via URI (@Animeboynz)\r\n- Confirmation dialog when removing privately installed extensions (@Animeboynz)\r\n- Hide sync library option when sync is disabled (@FuSan21)\r\n- Hide keyboard when a Tracker SearchResultItem is clicked (@Animeboynz)\r\n- Back button on smart-search source (@cuong-tran)\r\n- Remove legacy broken source and history backup (@AntsyLich)\r\n- Move \"Choose what to sync\" out of \"Sync now\" (@NGB-Was-Taken)\r\n- Enable 'Split Tall Images' by default (@Smol-Ame)\r\n- Ignore \"intent://\" urls on webview (@bapeey)\r\n- Hide display mode for e-hentai (@cuong-tran)\r\n- Reduce ChapterNavigator horizontal padding on small ui (@AntsyLich)\r\n- Respect the `altTitlesInDesc` preference (MangaDex) (@NGB-Was-Taken)\r\n- Respect `thumbnailQuality` and `tryUsingFirstVolumeCover` preferences (@NGB-Was-Taken)\r\n\r\n#### Fix\r\n\r\n- Remove built-in Komikku repo (fresh install) (@cuong-tran)\r\n- Fix for ExHentai (@jobobby04)\r\n- Fix dropdown menu position (@cuong-tran)\r\n- Fix late loading saved-searches/filters when jump from other screens (@cuong-tran)\r\n- Don't show Suggestions for merged entries (@cuong-tran)\r\n- Don't expand description on the manga found by smart search being used for merging (@cuong-tran)\r\n- Fix sync progress from tracker not working if chapters' order is messed up after backup restoration (@cuong-tran)\r\n- Fix app crash when removing tracked entry from tracker (@cuong-tran)\r\n- Safe-guard some edge-cases where chapters are duplicated causing a crash on a merged entry (@cuong-tran)\r\n- Retain remote last chapter read if it's higher than the local one for EnhancedTracker (@brewkunz)\r\n- Fix crashlytics (@cuong-tran)\r\n- Fix Kitsu `ratingTwenty` being typed as String (@MajorTanya)\r\n- Fix Kitsu `synopsis` nullability (@MajorTanya)\r\n- Fix AniList `ALSearchItem.status` nullibility (@Secozzi)\r\n- Fix EnhancedTracker not auto binding when adding manga to library (@brewkunz)\r\n- Fix issue with not showing source names in merged manga sometimes (@jobobby04)\r\n- Fix source search box's height (@cuong-tran)\r\n- Fix settings SliderItem steps count (@abdurisaq)\r\n\r\n##### Hotfix for v1.12.0\r\n\r\n- Fix release update version checking\r\n- Migration integrated H enable\r\n- add Back button on Migration screen\r\n- fix crash if cancel migration too soon\r\n- fix unable to migrate after manually cancel & search for entry\r\n\r\n#### Based on\r\n\r\n- Mihon stable 0.17.0 (Oct 26, 2024)\r\n- TachiyomiSY stable 1.11.0 (Oct 28, 2024)\r\n\r\n*Full Changelog*: https://github.com/komikku-app/komikku/compare/v1.11.2...v1.12.1\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 979d69cc357729161d5846aab6500aff8d78f89a32176f7a55228eaa693c1a0e |\r\n| arm64-v8a | f802acdf36b0ff7a3cb0a158bd1fbac6a229669fe545fd5bab8142cd92ecda0b |\r\n| armeabi-v7a | fb0a72e7dbfed270f8a0d3495307f44e0d53110f3e7f6abad911a0bae2f7939d |\r\n| x86 | c2629e414f319af8de9ef6c7cf700463c28fbcea7a006a1558c8e0ada3cb064a |\r\n| x86_64 | 2f95110d1f89efdfe6551f01e8a1b064d697458953084e3df78b39011622c8f1 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-v1.12.1.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147/reactions", - "total_count": 19, - "+1": 9, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 7, - "eyes": 3 - }, - "mentions_count": 17 -} \ No newline at end of file diff --git a/app/src/debug/res/raw/releases.json b/app/src/debug/res/raw/releases.json deleted file mode 100644 index 9d78ada58..000000000 --- a/app/src/debug/res/raw/releases.json +++ /dev/null @@ -1,4265 +0,0 @@ -[ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/182433147/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/v1.12.1", - "id": 182433147, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4K37V7", - "tag_name": "v1.12.1", - "target_commitish": "master", - "name": "Komikku v1.12.1", - "draft": false, - "prerelease": false, - "created_at": "2024-10-29T10:10:09Z", - "published_at": "2024-10-29T10:39:18Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558367", - "id": 202558367, - "node_id": "RA_kwDOLExXBM4MEsuf", - "name": "Komikku-arm64-v8a-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35874711, - "download_count": 10087, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-arm64-v8a-v1.12.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558371", - "id": 202558371, - "node_id": "RA_kwDOLExXBM4MEsuj", - "name": "Komikku-armeabi-v7a-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30922661, - "download_count": 846, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-armeabi-v7a-v1.12.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558369", - "id": 202558369, - "node_id": "RA_kwDOLExXBM4MEsuh", - "name": "Komikku-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 87502278, - "download_count": 1477, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:16Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-v1.12.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558372", - "id": 202558372, - "node_id": "RA_kwDOLExXBM4MEsuk", - "name": "Komikku-x86-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 37037933, - "download_count": 40, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-x86-v1.12.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558373", - "id": 202558373, - "node_id": "RA_kwDOLExXBM4MEsul", - "name": "Komikku-x86_64-v1.12.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 39032706, - "download_count": 91, - "created_at": "2024-10-29T10:24:14Z", - "updated_at": "2024-10-29T10:24:15Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-x86_64-v1.12.1.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/v1.12.1", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/v1.12.1", - "body": "### What's Changed\r\n\r\n#### New\r\n\r\n##### UI\r\n\r\n- **Error screen** for Library update (@cuong-tran)\r\n- **Custom color theme** (@kana-shii) with Colors palette (@cuong-tran)\r\n- **Panorama cover** showing wide cover in full (@cuong-tran)\r\n- **Language flags** (@cuong-tran)\r\n- **Repo icon** for Repo (@cuong-tran)\r\n- show all entries going to be checked for **Smart update** (@cuong-tran)\r\n- show **duplicating manga cover** on Duplicate dialog (@cuong-tran)\r\n\r\n##### Action\r\n\r\n- **Hidden categories** to hide yours *things* from nosy people (@cuong-tran)\r\n- **Random library sort** for your inspiration(@jackhamilton)\r\n- **Chips for Saved search** in source browse (@cuong-tran)\r\n- **Docking Read/Resume button** (@cuong-tran)\r\n- **Merge multiple** library entries together at same time (@cuong-tran)\r\n- **Range-selection for Migration** (@cuong-tran)\r\n- **Hide library entries in Feed** (@cuong-tran)\r\n- Add source search, icon & flag on **Feed adding dialog** (@cuong-tran)\r\n- Easy **re-ordering Feed & Saved search** (@cuong-tran)\r\n- Ability to **enable/disable repo** (@cuong-tran)\r\n- Show **extensions from multiple repos** (@cuong-tran)\r\n- Default disable **integrated H** features (fresh install) (@cuong-tran)\r\n- Add option to opt out of ~~Analytics and~~ Crashlytics (@Animeboynz)\r\n\r\n#### Improve\r\n\r\n- Show **quantity badge** on Upcoming screen (@cuong-tran)\r\n- Add option to **skip downloading duplicate read chapters** (@shabnix)\r\n- Allow **sync Feeds & extension's settings** (@cuong-tran)\r\n- Option to **not backup Saved searches & Feeds** (@cuong-tran)\r\n- Option to **Always/Ask/Never update trackers** when chapter marked as read (@Animeboynz)\r\n- Show a toast whenever progress is synced from Trackers (@cuong-tran)\r\n- update all trackers progress when new tracker is added (@cuong-tran)\r\n- Allow disable smart-update for individual & fix custom interval update (@kana-shii)\r\n- Show download state and progress on reader chapter list (@NGB-Was-Taken)\r\n- Show local chapters as downloaded on merged entries. (@NGB-Was-Taken)\r\n- Allow adding multiple tags separated by commas (@NGB-Was-Taken)\r\n- make global search pinned/all sticky (@cuong-tran)\r\n- hide Pinned chip in Global/Migrate Search if no pinned sources available (@cuong-tran)\r\n- hide Filter save-button on SourceFeedScreen (@cuong-tran)\r\n- show loading indicator while bulk-favorite is running (@cuong-tran)\r\n- bulk-favorite: reverse selection (@cuong-tran)\r\n- Add extensions list refresh menu (@cuong-tran)\r\n- Respect privacy settings in extension update notification (@Animeboynz)\r\n- Add \"show entry\" action to download notifications (@mm12)\r\n- Avoid blocking call causing lag when open Settings (@cuong-tran)\r\n- allow chapter 0 dupe auto mark as read (@Riztard)\r\n- Re-enable fetching chapters list for entries with licensed status (@Animeboynz)\r\n- hide batch-add if integrated H & Delegated src is off (@Riztard)\r\n- add MangaDex to batch-add example (@cuong-tran)\r\n- Remove more unnecessary permissions from Firebase dependency (@AntsyLich)\r\n- rename `Related Titles` to `Suggestions` (@cuong-tran)\r\n- only load suggestions after entry finished loading info & chapters (@cuong-tran)\r\n- Add confirmation when adding repo via URI (@Animeboynz)\r\n- Confirmation dialog when removing privately installed extensions (@Animeboynz)\r\n- Hide sync library option when sync is disabled (@FuSan21)\r\n- Hide keyboard when a Tracker SearchResultItem is clicked (@Animeboynz)\r\n- Back button on smart-search source (@cuong-tran)\r\n- Remove legacy broken source and history backup (@AntsyLich)\r\n- Move \"Choose what to sync\" out of \"Sync now\" (@NGB-Was-Taken)\r\n- Enable 'Split Tall Images' by default (@Smol-Ame)\r\n- Ignore \"intent://\" urls on webview (@bapeey)\r\n- Hide display mode for e-hentai (@cuong-tran)\r\n- Reduce ChapterNavigator horizontal padding on small ui (@AntsyLich)\r\n- Respect the `altTitlesInDesc` preference (MangaDex) (@NGB-Was-Taken)\r\n- Respect `thumbnailQuality` and `tryUsingFirstVolumeCover` preferences (@NGB-Was-Taken)\r\n\r\n#### Fix\r\n\r\n- Remove built-in Komikku repo (fresh install) (@cuong-tran)\r\n- Fix for ExHentai (@jobobby04)\r\n- Fix dropdown menu position (@cuong-tran)\r\n- Fix late loading saved-searches/filters when jump from other screens (@cuong-tran)\r\n- Don't show Suggestions for merged entries (@cuong-tran)\r\n- Don't expand description on the manga found by smart search being used for merging (@cuong-tran)\r\n- Fix sync progress from tracker not working if chapters' order is messed up after backup restoration (@cuong-tran)\r\n- Fix app crash when removing tracked entry from tracker (@cuong-tran)\r\n- Safe-guard some edge-cases where chapters are duplicated causing a crash on a merged entry (@cuong-tran)\r\n- Retain remote last chapter read if it's higher than the local one for EnhancedTracker (@brewkunz)\r\n- Fix crashlytics (@cuong-tran)\r\n- Fix Kitsu `ratingTwenty` being typed as String (@MajorTanya)\r\n- Fix Kitsu `synopsis` nullability (@MajorTanya)\r\n- Fix AniList `ALSearchItem.status` nullibility (@Secozzi)\r\n- Fix EnhancedTracker not auto binding when adding manga to library (@brewkunz)\r\n- Fix issue with not showing source names in merged manga sometimes (@jobobby04)\r\n- Fix source search box's height (@cuong-tran)\r\n- Fix settings SliderItem steps count (@abdurisaq)\r\n\r\n##### Hotfix for v1.12.0\r\n\r\n- Fix release update version checking\r\n- Migration integrated H enable\r\n- add Back button on Migration screen\r\n- fix crash if cancel migration too soon\r\n- fix unable to migrate after manually cancel & search for entry\r\n\r\n#### Based on\r\n\r\n- Mihon stable 0.17.0 (Oct 26, 2024)\r\n- TachiyomiSY stable 1.11.0 (Oct 28, 2024)\r\n\r\n*Full Changelog*: https://github.com/komikku-app/komikku/compare/v1.11.2...v1.12.1\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 979d69cc357729161d5846aab6500aff8d78f89a32176f7a55228eaa693c1a0e |\r\n| arm64-v8a | f802acdf36b0ff7a3cb0a158bd1fbac6a229669fe545fd5bab8142cd92ecda0b |\r\n| armeabi-v7a | fb0a72e7dbfed270f8a0d3495307f44e0d53110f3e7f6abad911a0bae2f7939d |\r\n| x86 | c2629e414f319af8de9ef6c7cf700463c28fbcea7a006a1558c8e0ada3cb064a |\r\n| x86_64 | 2f95110d1f89efdfe6551f01e8a1b064d697458953084e3df78b39011622c8f1 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-v1.12.1.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147/reactions", - "total_count": 19, - "+1": 9, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 7, - "eyes": 3 - }, - "mentions_count": 17 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/169400408", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/169400408/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/169400408/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/v1.11.2", - "id": 169400408, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4KGNhY", - "tag_name": "v1.11.2", - "target_commitish": "master", - "name": "Komikku v1.11.2", - "draft": false, - "prerelease": false, - "created_at": "2024-08-08T19:36:08Z", - "published_at": "2024-08-08T19:50:35Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788115", - "id": 184788115, - "node_id": "RA_kwDOLExXBM4LA6ST", - "name": "Komikku-arm64-v8a-v1.11.2.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32861961, - "download_count": 19064, - "created_at": "2024-08-08T19:49:41Z", - "updated_at": "2024-08-08T19:49:42Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-arm64-v8a-v1.11.2.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788112", - "id": 184788112, - "node_id": "RA_kwDOLExXBM4LA6SQ", - "name": "Komikku-armeabi-v7a-v1.11.2.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 28319509, - "download_count": 1771, - "created_at": "2024-08-08T19:49:41Z", - "updated_at": "2024-08-08T19:49:42Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-armeabi-v7a-v1.11.2.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788114", - "id": 184788114, - "node_id": "RA_kwDOLExXBM4LA6SS", - "name": "Komikku-v1.11.2.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 79672408, - "download_count": 3235, - "created_at": "2024-08-08T19:49:41Z", - "updated_at": "2024-08-08T19:49:43Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-v1.11.2.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788113", - "id": 184788113, - "node_id": "RA_kwDOLExXBM4LA6SR", - "name": "Komikku-x86-v1.11.2.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33865445, - "download_count": 117, - "created_at": "2024-08-08T19:49:41Z", - "updated_at": "2024-08-08T19:49:42Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-x86-v1.11.2.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788116", - "id": 184788116, - "node_id": "RA_kwDOLExXBM4LA6SU", - "name": "Komikku-x86_64-v1.11.2.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 35827447, - "download_count": 171, - "created_at": "2024-08-08T19:49:41Z", - "updated_at": "2024-08-08T19:49:42Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-x86_64-v1.11.2.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/v1.11.2", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/v1.11.2", - "body": "## What's Changed\r\n### New\r\n- Support for backing up and restoring Feeds (@cuong-tran)\r\n- Allow changing feeds' order (@cuong-tran)\r\n- Show progress-banner for sync/restore/update (@cuong-tran)\r\n- Jump to entry from download queue item (@cuong-tran)\r\n- Long-click search drop-down menu for entry's title/author/artist/source (@cuong-tran)\r\n- Support sources search in Migrate Source Screen (@cuong-tran)\r\n- Adds Reader Option to Copy Panel to Clipboard (@Animeboynz)\r\n- Added configuration options to e-ink page flashes (@sirlag)\r\n\r\n### Improve\r\n- (performance) Rework cover's loading animation (@cuong-tran)\r\n- Update default popular user-agent, better support Cloudflare (@cuong-tran)\r\n- Onboarding permissions request for external storage (@cuong-tran)\r\n- Request for storage permission when saving pictures (Android P & below) (@cuong-tran)\r\n- Improve google drive sync. (@kaiserbh)\r\n- Background color for favorite entries (@cuong-tran)\r\n- Update E-Hentai to support libraryColored, bulk-selection overlay (@cuong-tran)\r\n- Make global search \"Has result\" sticky (@AntsyLich)\r\n- Format Category String on Subtitle Display (@Animeboynz)\r\n- Press back to clear source search query (@cuong-tran)\r\n- Smart Update Dialog Tweak (@Animeboynz)\r\n- Update LewdMangaChecker (@gelionexists)\r\n\r\n### Fix\r\n- (performance) Laggy after browsing library for a while (@cuong-tran)\r\n- Migrate/copy manga with `Delete downloaded` unticked had no effect, always delete (@cuong-tran)\r\n- Copy icon (migration whole list) was always migrating instead of copy (@cuong-tran)\r\n- Dialog's button wrong order (@cuong-tran)\r\n- Fix library is backed up when disabled and make categories backup/restore independent (@AntsyLich)\r\n- Fix issue with creating and restoring backup (@AntsyLich)\r\n- Revert chapter's filter icon (@cuong-tran)\r\n- Fix some issues when reading/saving images (@foolbar)\r\n- Correct tako variable colours (@CrepeTF)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/v1.11.1...v1.11.2\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | ade5a8b3945130010532681bda9a5a72bf41f6e06b6f817ea629c4658c4a3e23 |\r\n| arm64-v8a | 71d4d4f23945cf03b84ec06dc93c294a7babdf6c236f3656eafda6a430608e55 |\r\n| armeabi-v7a | 0e3e7d29c5f7a17c795803610ecc6db22aea91d1ae00d6e6003efccd1d16714d |\r\n| x86 | dbdd76437c4a137dc64ba1fd971ecdf3a6d82bd6abcca4ccb590d0285222d23e |\r\n| x86_64 | 950bbf02f513c9fc79e1ee469f802aad8f6ce09b8d66c875cccf8c761193b2e4 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-v1.11.2.apk`\r\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/169400408/reactions", - "total_count": 14, - "+1": 6, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 4, - "rocket": 4, - "eyes": 0 - }, - "mentions_count": 8 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/163981746", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/163981746/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/163981746/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/v1.11.1", - "id": 163981746, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4Jximy", - "tag_name": "v1.11.1", - "target_commitish": "master", - "name": "Komikku v1.11.1", - "draft": false, - "prerelease": false, - "created_at": "2024-07-04T10:04:36Z", - "published_at": "2024-07-04T15:34:47Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654069", - "id": 177654069, - "node_id": "RA_kwDOLExXBM4Klsk1", - "name": "Komikku-arm64-v8a-v1.11.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30566027, - "download_count": 1415, - "created_at": "2024-07-04T10:30:48Z", - "updated_at": "2024-07-04T10:30:49Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-arm64-v8a-v1.11.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654070", - "id": 177654070, - "node_id": "RA_kwDOLExXBM4Klsk2", - "name": "Komikku-armeabi-v7a-v1.11.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26449559, - "download_count": 165, - "created_at": "2024-07-04T10:30:48Z", - "updated_at": "2024-07-04T10:30:49Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-armeabi-v7a-v1.11.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654067", - "id": 177654067, - "node_id": "RA_kwDOLExXBM4Klskz", - "name": "Komikku-v1.11.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70478810, - "download_count": 800, - "created_at": "2024-07-04T10:30:48Z", - "updated_at": "2024-07-04T10:30:50Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-v1.11.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654068", - "id": 177654068, - "node_id": "RA_kwDOLExXBM4Klsk0", - "name": "Komikku-x86-v1.11.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31667815, - "download_count": 32, - "created_at": "2024-07-04T10:30:48Z", - "updated_at": "2024-07-04T10:30:49Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-x86-v1.11.1.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654071", - "id": 177654071, - "node_id": "RA_kwDOLExXBM4Klsk3", - "name": "Komikku-x86_64-v1.11.1.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32740985, - "download_count": 48, - "created_at": "2024-07-04T10:30:48Z", - "updated_at": "2024-07-04T10:30:49Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-x86_64-v1.11.1.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/v1.11.1", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/v1.11.1", - "body": "## What's Changed\r\n### Welcome to Komikku's Discord\r\n\r\n### New\r\n- New App icon\r\n- More App themes\r\n- Theme based on entry's cover color\r\n- More *Suggestions* with a dedicated screen\r\n- Auto 2-way sync read chapters from Trackers & swipe read to update\r\n- Add NSFW filter & source search into Merge screen\r\n- A peek into Preview-build's 'What's New' in About screen\r\n- Support only Android 8+\r\n\r\n### Improve\r\n- Improved Faster loading of *Suggestions*\r\n- Better background for full cover view\r\n- Better cover-error & cover-loading\r\n- Sticky header & language for sources filter\r\n- Update translation\r\n- Update dependencies\r\n\r\n### Fix\r\n- Allow manual edit on Tracker's chapter (must hit Done on keyboard)\r\n- Fix Genre tag search while browsing *Suggestions* or from *Feed* Screen\r\n- Fix Bangumi tracker\r\n- Fix GDrive sync error messages\r\n- Fix sometimes it's loading forever if app sleeps for too long (in Source's feed & browse screens)\r\n\r\n#### Based on TachiyomiSY v1.10.6 & Mihon 0.16.5\r\n- New: Trust all extensions by repo\r\n- New: Add Namicomi support for external chapters on MD\r\n- Improved: Massively improve findFile performance\r\n- Fix: storage permission request for non-conforming devices\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/v1.10.5...v1.11.1\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 142ffbe5862bb64f209d003f077b69e5713582a8c36179f113ecb888a815cfdf |\r\n| arm64-v8a | a90979a0300b3aabb8d8c06bc42b73a61d1c29caa0a90d20b2daa1cbb402e917 |\r\n| armeabi-v7a | 23e6a866d43deda91bf5c71fbbf397eed0ea78ad3cdd291cf2fc188cabb01f62 |\r\n| x86 | bcecc7ef91ae1c4401a459f60d51e5c77e932147dbd1628264cceaf2ad9ae74f |\r\n| x86_64 | 028f1fec5169358f8ca68672e5fafbc059ea3159b42866c8dd48fe6daa9451c2 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-v1.11.1.apk`", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/163981746/reactions", - "total_count": 13, - "+1": 5, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 6, - "rocket": 2, - "eyes": 0 - } - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/153587647", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/153587647/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/153587647/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-25", - "id": 153587647, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4JJ4-_", - "tag_name": "pre-release-25", - "target_commitish": "master", - "name": "Komikku Preview Build 25", - "draft": false, - "prerelease": false, - "created_at": "2024-04-30T21:09:29Z", - "published_at": "2024-05-01T02:35:30Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212988", - "id": 165212988, - "node_id": "RA_kwDOLExXBM4J2PM8", - "name": "Komikku-arm64-v8a-pre-25.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32038995, - "download_count": 291, - "created_at": "2024-04-30T21:19:21Z", - "updated_at": "2024-04-30T21:19:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-arm64-v8a-pre-25.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212991", - "id": 165212991, - "node_id": "RA_kwDOLExXBM4J2PM_", - "name": "Komikku-armeabi-v7a-pre-25.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 27922527, - "download_count": 22, - "created_at": "2024-04-30T21:19:22Z", - "updated_at": "2024-04-30T21:19:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-armeabi-v7a-pre-25.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212990", - "id": 165212990, - "node_id": "RA_kwDOLExXBM4J2PM-", - "name": "Komikku-pre-25.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 71951778, - "download_count": 29, - "created_at": "2024-04-30T21:19:22Z", - "updated_at": "2024-04-30T21:19:24Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-pre-25.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212989", - "id": 165212989, - "node_id": "RA_kwDOLExXBM4J2PM9", - "name": "Komikku-x86-pre-25.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33140783, - "download_count": 3, - "created_at": "2024-04-30T21:19:21Z", - "updated_at": "2024-04-30T21:19:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-x86-pre-25.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212992", - "id": 165212992, - "node_id": "RA_kwDOLExXBM4J2PNA", - "name": "Komikku-x86_64-pre-25.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34218049, - "download_count": 3, - "created_at": "2024-04-30T21:19:22Z", - "updated_at": "2024-04-30T21:19:24Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-x86_64-pre-25.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-25", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-25", - "body": "### *Suggestions*\r\nAllow extensions to use both webste *Suggestions* & App's *Suggestions* by search\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | b0b5e43223fea62f618e5e392361b81f1315ffe548ab870636b0dd14f5d4aea0 |\r\n| arm64-v8a | 4a578d022c253cc28839c6ccc3b11b4b50cae0759fa471e21ef4959fa7742e25 |\r\n| armeabi-v7a | edc908d23bf8807b265b9c349df703059bf509ce75af4485f43bf2c0809e7650 |\r\n| x86 | 381186454818cd69ed514aa5218db3dafc748050e484b698ad1a5031da89d3be |\r\n| x86_64 | 537e1a5d511e8594ec9630a9d54d676d955b8025c60c3b521e8408f0b2ac636f |\r\n" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/153163685", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/153163685/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/153163685/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-24-force", - "id": 153163685, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4JIRel", - "tag_name": "pre-release-24-force", - "target_commitish": "master", - "name": "Komikku Preview Build 24", - "draft": false, - "prerelease": false, - "created_at": "2024-04-29T19:34:08Z", - "published_at": "2024-04-29T02:33:25Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164789090", - "id": 164789090, - "node_id": "RA_kwDOLExXBM4J0nti", - "name": "Komikku-arm64-v8a-pre-24.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32038995, - "download_count": 98, - "created_at": "2024-04-28T21:18:04Z", - "updated_at": "2024-04-28T21:18:06Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-24-force/Komikku-arm64-v8a-pre-24.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164789087", - "id": 164789087, - "node_id": "RA_kwDOLExXBM4J0ntf", - "name": "Komikku-armeabi-v7a-pre-24.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 27922527, - "download_count": 20, - "created_at": "2024-04-28T21:18:04Z", - "updated_at": "2024-04-28T21:18:05Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-24-force/Komikku-armeabi-v7a-pre-24.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164789086", - "id": 164789086, - "node_id": "RA_kwDOLExXBM4J0nte", - "name": "Komikku-pre-24.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 71951778, - "download_count": 10, - "created_at": "2024-04-28T21:18:04Z", - "updated_at": "2024-04-28T21:18:07Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-24-force/Komikku-pre-24.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164789088", - "id": 164789088, - "node_id": "RA_kwDOLExXBM4J0ntg", - "name": "Komikku-x86-pre-24.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33140783, - "download_count": 2, - "created_at": "2024-04-28T21:18:04Z", - "updated_at": "2024-04-28T21:18:05Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-24-force/Komikku-x86-pre-24.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164789089", - "id": 164789089, - "node_id": "RA_kwDOLExXBM4J0nth", - "name": "Komikku-x86_64-pre-24.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34218049, - "download_count": 2, - "created_at": "2024-04-28T21:18:04Z", - "updated_at": "2024-04-28T21:18:05Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-24-force/Komikku-x86_64-pre-24.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-24-force", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-24-force", - "body": "## *Suggestions*\r\n* Support showing *Suggestions* for all sources\r\n* Improve searching for *Suggestions*\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | cc31aac65f4ee5a01cdaaa083b6dac069c421399fb6da9f2e43abb1a7bb5303f |\r\n| arm64-v8a | 9c639787eb0654b2be587e90cde3bc3aa201712b5c4797f0dd899b570afe89a2 |\r\n| armeabi-v7a | 10357d70165e92f6710a49cb49ca7a7dd4e08b1ea8981cf7b6872d172978ceb0 |\r\n| x86 | 3fc66438b49ba98ef982bc23fb8463367b46c98b3e3a63d556782ca0116f982a |\r\n| x86_64 | f76c01f2a325d717bd8bd9a927a0f918e635f60d1bb210834de72758f2dfae8a |\r\n" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/152985319", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/152985319/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/152985319/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-21", - "id": 152985319, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4JHl7n", - "tag_name": "pre-release-21", - "target_commitish": "master", - "name": "Komikku Preview Build 21", - "draft": false, - "prerelease": false, - "created_at": "2024-04-26T12:07:46Z", - "published_at": "2024-04-26T12:35:17Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164391244", - "id": 164391244, - "node_id": "RA_kwDOLExXBM4JzGlM", - "name": "Komikku-arm64-v8a-pre-21.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32043091, - "download_count": 148, - "created_at": "2024-04-26T12:35:18Z", - "updated_at": "2024-04-26T12:35:19Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-21/Komikku-arm64-v8a-pre-21.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164391247", - "id": 164391247, - "node_id": "RA_kwDOLExXBM4JzGlP", - "name": "Komikku-armeabi-v7a-pre-21.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 27926623, - "download_count": 11, - "created_at": "2024-04-26T12:35:18Z", - "updated_at": "2024-04-26T12:35:19Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-21/Komikku-armeabi-v7a-pre-21.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164391245", - "id": 164391245, - "node_id": "RA_kwDOLExXBM4JzGlN", - "name": "Komikku-pre-21.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 71955874, - "download_count": 18, - "created_at": "2024-04-26T12:35:18Z", - "updated_at": "2024-04-26T12:35:20Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-21/Komikku-pre-21.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164391246", - "id": 164391246, - "node_id": "RA_kwDOLExXBM4JzGlO", - "name": "Komikku-x86-pre-21.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33140783, - "download_count": 3, - "created_at": "2024-04-26T12:35:18Z", - "updated_at": "2024-04-26T12:35:19Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-21/Komikku-x86-pre-21.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164391248", - "id": 164391248, - "node_id": "RA_kwDOLExXBM4JzGlQ", - "name": "Komikku-x86_64-pre-21.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34218049, - "download_count": 3, - "created_at": "2024-04-26T12:35:18Z", - "updated_at": "2024-04-26T12:35:19Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-21/Komikku-x86_64-pre-21.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-21", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-21", - "body": "- Showing *Suggestions* (enable in Settings/Browse)\r\n- Ability to select all titles from Feed/Browse/Latest/Search to add to Favorite\r\n- Adjust cache refresh's interval (previously fixed to 1 hour)\r\n\r\n- Sync with TachiyomiSY:\r\n - Update image-decoder (#466) (@az4521)\r\n - Fix multiple issues regarding sources loading too late (@jobobby04)\r\n - Fix dual page split for local source (#485) (@FooIbar)\r\n - Fix shizuku being buggy for multi user setups (#494) (@Redjard)\r\n - Fix cross device syncing logic. (#450) (@kaiserbh)\r\n - Translations update from Hosted Weblate (#445) (@weblate)\r\n - feat: add cross device sync (#1005) (@kaiserbh)\r\n - Add option to reset custom manga info (#1118) (@LetrixZ)\r\n - Fix webtoon last visible item position calculation (#562) (@FooIbar)\r\n - Rework Duplicate Dialog and Allow Migration (#492) (@sirlag)\r\n - Update WebView to support lower minSDK (@jobobby04)\r\n - New Feature: Introduce Upcoming page to Mihon (#420) (@sirlag)\r\n - Moves upcoming requirement from existence to current day or later. (#606) (@sirlag)\r\n - Fix build time zone in about screen (@AntsyLich)\r\n - Update Simplified Chinese Translation (#1126) (@Howard20181)\r\n - [RU] Translations (#1129) (@Dexroneum)\r\n - Safer password handling (#1146) (@Shamicen)\r\n - feat: syncing etag and overall improvement. (#1155) (@kaiserbh)\r\n - fix: check order before restore from backup (#1156) (@Cologler)\r\n - ...\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 096d774c0e5ee636dda6314346747aef8d210388eb0800eb231095c75267af4b |\r\n| arm64-v8a | 31eb1869cf2c5a4da52606f28c58d07a35700646123417e63ee680d22b2f0ef8 |\r\n| armeabi-v7a | fc870ee9e7dcb366b5768e5056dac99cb71510204691cd655e9540f5e5534692 |\r\n| x86 | 3428bba0cf6791672f77f69e56df3624a4469c9524d56552cc87c3aeb6a98952 |\r\n| x86_64 | c08828a3e4ed0076c5326de11bc896c5cb870657a32563ab85e79356ca2b9069 |\r\n", - "mentions_count": 13 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/148983559", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/148983559/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/148983559/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-20", - "id": 148983559, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4I4U8H", - "tag_name": "pre-release-20", - "target_commitish": "master", - "name": "Komikku Preview Build 20", - "draft": false, - "prerelease": false, - "created_at": "2024-03-29T06:50:09Z", - "published_at": "2024-03-29T07:00:18Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159238888", - "id": 159238888, - "node_id": "RA_kwDOLExXBM4Jfcro", - "name": "Komikku-arm64-v8a-pre-20.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31846627, - "download_count": 515, - "created_at": "2024-03-29T07:00:18Z", - "updated_at": "2024-03-29T07:00:20Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-20/Komikku-arm64-v8a-pre-20.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159238886", - "id": 159238886, - "node_id": "RA_kwDOLExXBM4Jfcrm", - "name": "Komikku-armeabi-v7a-pre-20.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 27734261, - "download_count": 42, - "created_at": "2024-03-29T07:00:18Z", - "updated_at": "2024-03-29T07:00:20Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-20/Komikku-armeabi-v7a-pre-20.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159238889", - "id": 159238889, - "node_id": "RA_kwDOLExXBM4Jfcrp", - "name": "Komikku-pre-20.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 72022217, - "download_count": 72, - "created_at": "2024-03-29T07:00:18Z", - "updated_at": "2024-03-29T07:00:22Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-20/Komikku-pre-20.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159238887", - "id": 159238887, - "node_id": "RA_kwDOLExXBM4Jfcrn", - "name": "Komikku-x86-pre-20.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33112237, - "download_count": 3, - "created_at": "2024-03-29T07:00:18Z", - "updated_at": "2024-03-29T07:00:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-20/Komikku-x86-pre-20.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159238891", - "id": 159238891, - "node_id": "RA_kwDOLExXBM4Jfcrr", - "name": "Komikku-x86_64-pre-20.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34369736, - "download_count": 5, - "created_at": "2024-03-29T07:00:18Z", - "updated_at": "2024-03-29T07:00:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-20/Komikku-x86_64-pre-20.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-20", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-20", - "body": "### Commits\n\nhttps://github.com/komikku-app/komikku/compare/21ce8100c...cdd3a7f6f\n\n- Update github workflow to include client_secrets.json in Preview build (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 8d9681606cb46fe6c9c3781bcbf59f29d2946ada4a60e244460d4179a6b63ea4 |\n| arm64-v8a | 135d592a03408caf9ca6d2f53e3494ecab72f509ab6d2145b4cd87c7d1b95ee1 |\n| armeabi-v7a | 886e01690582ce8e0efff61b176c1e0b515ce7f142597ce1e051aa05be539ccd |\n| x86 | b80402253e6f88a66bb0aa4de7176dbea13ff726f1817a83ba60487cc0d029c7 |\n| x86_64 | 501d08a77a9bcc2c35f831a2245f5281cf5d0e79994c27419b7e022ce7247787 |\n", - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/148977439", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/148977439/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/148977439/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-19", - "id": 148977439, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4I4Tcf", - "tag_name": "pre-release-19", - "target_commitish": "master", - "name": "Komikku Preview Build 19", - "draft": false, - "prerelease": false, - "created_at": "2024-03-29T05:10:09Z", - "published_at": "2024-03-29T05:22:49Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159229032", - "id": 159229032, - "node_id": "RA_kwDOLExXBM4JfaRo", - "name": "Komikku-arm64-v8a-pre-19.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31846555, - "download_count": 17, - "created_at": "2024-03-29T05:22:49Z", - "updated_at": "2024-03-29T05:22:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-19/Komikku-arm64-v8a-pre-19.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159229034", - "id": 159229034, - "node_id": "RA_kwDOLExXBM4JfaRq", - "name": "Komikku-armeabi-v7a-pre-19.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 27734189, - "download_count": 3, - "created_at": "2024-03-29T05:22:49Z", - "updated_at": "2024-03-29T05:22:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-19/Komikku-armeabi-v7a-pre-19.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159229033", - "id": 159229033, - "node_id": "RA_kwDOLExXBM4JfaRp", - "name": "Komikku-pre-19.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 72026241, - "download_count": 4, - "created_at": "2024-03-29T05:22:49Z", - "updated_at": "2024-03-29T05:22:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-19/Komikku-pre-19.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159229035", - "id": 159229035, - "node_id": "RA_kwDOLExXBM4JfaRr", - "name": "Komikku-x86-pre-19.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33112165, - "download_count": 2, - "created_at": "2024-03-29T05:22:49Z", - "updated_at": "2024-03-29T05:22:52Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-19/Komikku-x86-pre-19.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/159229036", - "id": 159229036, - "node_id": "RA_kwDOLExXBM4JfaRs", - "name": "Komikku-x86_64-pre-19.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 34369664, - "download_count": 2, - "created_at": "2024-03-29T05:22:49Z", - "updated_at": "2024-03-29T05:22:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-19/Komikku-x86_64-pre-19.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-19", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-19", - "body": "### Commits\n\nhttps://github.com/komikku-app/komikku/compare/f1ed6c012...21ce8100c\n\n- Fix multiple issues regarding sources loading too late (@jobobby04)\n- Update image-decoder (#466) (@az4521)\n- Fix dual page split for local source (#485) (@FooIbar)\n- Fix shizuku being buggy for multi user setups (#494) (@Redjard)\n- feat: db changes to accommodate new cross device syncing logic. (#450) (@kaiserbh)\n- Translations update from Hosted Weblate (#445) (@weblate)\n- Update dependency io.nlopez.compose.rules:detekt to v0.3.12 (#500) (@renovate[bot])\n- Bump default user agent (@AntsyLich)\n- Fix crash in track date selection dialog (@AntsyLich)\n- Use github run_number to create tag (@jobobby04)\n- Change preferences containing passwords to appStateKeys (#1083) (@Shamicen)\n- Update README.md (#1113) (@NeKoOuO)\n- feat: add cross device sync (#1005) (@kaiserbh)\n- implement mihonapp/mihon#326 (#1104) (@Shamicen)\n- Move strings to SY strings (@jobobby04)\n- Update Detekt baseline (@jobobby04)\n- Cleanup sync code (@jobobby04)\n- Remove Client Secrets (@jobobby04)\n- Write client_secrets.json on build (@jobobby04)\n- Add preview prefix (@jobobby04)\n- Update zh-rTW (#1117) (@NeKoOuO)\n- Oops (@jobobby04)\n- [skip ci] Add instructions for supporting Cloud Sync Google Drive Impl (@jobobby04)\n- fix: The trigger for library update wasn't working properly. (#1119) (@kaiserbh)\n- Add option to reset custom manga info (#1118) (@LetrixZ)\n- History url is not globally unique (@jobobby04)\n- Update baseline (@jobobby04)\n- Minor doc fix (@jobobby04)\n- Update firebase (@jobobby04)\n- Minor fix for history url (@jobobby04)\n- Add files via upload (#1120) (@NeKoOuO)\n- Revert \"Minor fix for history url\" (@jobobby04)\n- Re-Add Animated Image Decoders to Coil (@jobobby04)\n- Revert \"Re-Add Animated Image Decoders to Coil\" (@jobobby04)\n- Actually fix animated images (@jobobby04)\n- Update detekt's baseline & run detekt for future build (#1106) (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 5c981f73c4249854f9e7d2a4c9ebc61faf21e0b2f4f2fee5e4f5890205870d6f |\n| arm64-v8a | a2c7875e8881e951d1f5973ef03857194b8222a62f3fc75b0acef84d2ff50fc8 |\n| armeabi-v7a | 089f3506c84edcffa3a432bc1ac7b5ebf34691c7a81f66ea1f066a62921c8d82 |\n| x86 | f008db06198b6b1d4decebc0e5d3e7d13ced52d185da55112dc02403cde75716 |\n| x86_64 | 55bc4d98c90dd4d27deb32c1112e88d3a1ecda9768e5f3a7228aea8fa1d87e89 |\n", - "mentions_count": 12 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/147002262", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/147002262/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/147002262/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-18", - "id": 147002262, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4IwxOW", - "tag_name": "pre-release-18", - "target_commitish": "master", - "name": "Komikku Preview Build 18", - "draft": false, - "prerelease": false, - "created_at": "2024-03-18T09:52:17Z", - "published_at": "2024-03-18T10:02:17Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/157260320", - "id": 157260320, - "node_id": "RA_kwDOLExXBM4JX5og", - "name": "Komikku-arm64-v8a-pre-18.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30837447, - "download_count": 334, - "created_at": "2024-03-18T10:02:17Z", - "updated_at": "2024-03-18T10:02:18Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-18/Komikku-arm64-v8a-pre-18.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/157260319", - "id": 157260319, - "node_id": "RA_kwDOLExXBM4JX5of", - "name": "Komikku-armeabi-v7a-pre-18.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26720985, - "download_count": 38, - "created_at": "2024-03-18T10:02:17Z", - "updated_at": "2024-03-18T10:02:18Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-18/Komikku-armeabi-v7a-pre-18.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/157260317", - "id": 157260317, - "node_id": "RA_kwDOLExXBM4JX5od", - "name": "Komikku-pre-18.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 71013037, - "download_count": 89, - "created_at": "2024-03-18T10:02:17Z", - "updated_at": "2024-03-18T10:02:19Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-18/Komikku-pre-18.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/157260318", - "id": 157260318, - "node_id": "RA_kwDOLExXBM4JX5oe", - "name": "Komikku-x86-pre-18.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32098961, - "download_count": 2, - "created_at": "2024-03-18T10:02:17Z", - "updated_at": "2024-03-18T10:02:18Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-18/Komikku-x86-pre-18.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/157260322", - "id": 157260322, - "node_id": "RA_kwDOLExXBM4JX5oi", - "name": "Komikku-x86_64-pre-18.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33356460, - "download_count": 5, - "created_at": "2024-03-18T10:02:17Z", - "updated_at": "2024-03-18T10:02:18Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-18/Komikku-x86_64-pre-18.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-18", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-18", - "body": "### Commits\n\nhttps://github.com/komikku-app/komikku/compare/b0c872d4d...f1ed6c012\n\n- Bulk-selection: Fix warning in BrowseSource (@cuong-tran)\n- Revert \"Remove custom extension readme/changelog URLs\" (@cuong-tran)\n- Update CrashLog to include Unofficial ext’s info (@cuong-tran)\n- download’s cache renew interval configurable (@cuong-tran)\n- Update image-decoder (#466) (@az4521)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 42305c9b4af9e8db844968f55f8f186673f59e2a5b89b4277ecdbd09674e31d4 |\n| arm64-v8a | f61b5ffd6722b196baa883de86439d7eeb92d9c7384b4fceeef5da3bc1052df1 |\n| armeabi-v7a | 215e07567d6956d8764f7466ba972d292440291fe1a023fc7c24650587c7fafc |\n| x86 | 6eadbe95efae3da5c9e3c83fe7f4722cfbd689b9ac38d62c12ee884386931e30 |\n| x86_64 | 82d9ad734c9a7ae044ccdc249ff1eac32d555747085760c8601b0de552d6e1cd |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/147002262/reactions", - "total_count": 1, - "+1": 1, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 2 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/145708724", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/145708724/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/145708724/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-16", - "id": 145708724, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4Ir1a0", - "tag_name": "pre-release-16", - "target_commitish": "master", - "name": "Komikku Preview Build 16", - "draft": false, - "prerelease": false, - "created_at": "2024-03-10T10:20:11Z", - "published_at": "2024-03-10T10:30:19Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/155897040", - "id": 155897040, - "node_id": "RA_kwDOLExXBM4JSszQ", - "name": "Komikku-arm64-v8a-pre-16.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30833351, - "download_count": 89, - "created_at": "2024-03-10T10:30:20Z", - "updated_at": "2024-03-10T10:30:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-16/Komikku-arm64-v8a-pre-16.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/155897037", - "id": 155897037, - "node_id": "RA_kwDOLExXBM4JSszN", - "name": "Komikku-armeabi-v7a-pre-16.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26716889, - "download_count": 14, - "created_at": "2024-03-10T10:30:20Z", - "updated_at": "2024-03-10T10:30:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-16/Komikku-armeabi-v7a-pre-16.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/155897039", - "id": 155897039, - "node_id": "RA_kwDOLExXBM4JSszP", - "name": "Komikku-pre-16.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 71008941, - "download_count": 28, - "created_at": "2024-03-10T10:30:20Z", - "updated_at": "2024-03-10T10:30:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-16/Komikku-pre-16.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/155897038", - "id": 155897038, - "node_id": "RA_kwDOLExXBM4JSszO", - "name": "Komikku-x86-pre-16.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32094865, - "download_count": 2, - "created_at": "2024-03-10T10:30:20Z", - "updated_at": "2024-03-10T10:30:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-16/Komikku-x86-pre-16.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/155897041", - "id": 155897041, - "node_id": "RA_kwDOLExXBM4JSszR", - "name": "Komikku-x86_64-pre-16.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33352364, - "download_count": 3, - "created_at": "2024-03-10T10:30:20Z", - "updated_at": "2024-03-10T10:30:21Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-16/Komikku-x86_64-pre-16.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-16", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-16", - "body": "### Commits\n\nhttps://github.com/komikku-app/komikku/compare/7bca814a8...b0c872d4d\n\n- Bulk-selection favorite (@cuong-tran)\n- update README (@cuong-tran)\n- detekt: cleanup code (@cuong-tran)\n- keep the selection if edit categories list when changing entry/entries categories in Library (@cuong-tran)\n- update README image (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 9365f2c598c864494a0a2686db0dfb1113764b5eab4c4acfd7d480136a55af5e |\n| arm64-v8a | 021964c85601f95ff43cbe6c16f879e101473882614a0754ad3a0a47406d6365 |\n| armeabi-v7a | 327d756cddd8e013e7b43127d69f74dcff6e292a84156a6ca571facae05beec4 |\n| x86 | 35fd34208d194dd46b123444c6f5d8fea40855c3fd9310d1839a49fa3e599217 |\n| x86_64 | 2b6f37288550fe9dc8f9faf969589705c1875bd8e635d1b050770df5551194f0 |\n", - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/144582920", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/144582920/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/144582920/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-15", - "id": 144582920, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4InikI", - "tag_name": "pre-release-15", - "target_commitish": "master", - "name": "Komikku Preview Build 15", - "draft": false, - "prerelease": false, - "created_at": "2024-03-04T04:01:37Z", - "published_at": "2024-03-04T06:19:57Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/154765778", - "id": 154765778, - "node_id": "RA_kwDOLExXBM4JOYnS", - "name": "Komikku-arm64-v8a-pre-15.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30796487, - "download_count": 24, - "created_at": "2024-03-04T06:19:57Z", - "updated_at": "2024-03-04T06:19:58Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-15/Komikku-arm64-v8a-pre-15.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/154765776", - "id": 154765776, - "node_id": "RA_kwDOLExXBM4JOYnQ", - "name": "Komikku-armeabi-v7a-pre-15.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26684121, - "download_count": 9, - "created_at": "2024-03-04T06:19:57Z", - "updated_at": "2024-03-04T06:19:58Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-15/Komikku-armeabi-v7a-pre-15.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/154765775", - "id": 154765775, - "node_id": "RA_kwDOLExXBM4JOYnP", - "name": "Komikku-pre-15.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70972077, - "download_count": 7, - "created_at": "2024-03-04T06:19:57Z", - "updated_at": "2024-03-04T06:19:59Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-15/Komikku-pre-15.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/154765777", - "id": 154765777, - "node_id": "RA_kwDOLExXBM4JOYnR", - "name": "Komikku-x86-pre-15.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32062097, - "download_count": 3, - "created_at": "2024-03-04T06:19:57Z", - "updated_at": "2024-03-04T06:19:58Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-15/Komikku-x86-pre-15.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/154765779", - "id": 154765779, - "node_id": "RA_kwDOLExXBM4JOYnT", - "name": "Komikku-x86_64-pre-15.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33319596, - "download_count": 2, - "created_at": "2024-03-04T06:19:57Z", - "updated_at": "2024-03-04T06:19:58Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-15/Komikku-x86_64-pre-15.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-15", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-15", - "body": "### Commits\n\nhttps://github.com/komikku-app/komikku/compare/3ee4f35aa5...56673f25b1\n\n\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 991cf7d5434bd4c0344aa50edf160144eb89fc828d02681a4caa3eb07f2f1899 |\n| arm64-v8a | e2249dd2b85fee571f71ea7b9f77a0bf45589fee16d6ff7b48e7d24d6dea080c |\n| armeabi-v7a | f1b207031bb4d486acf5d734f2f2854f685f4d0818e742f183f949b8da19fa9b |\n| x86 | 35c91abfa89088ff4cef0f397ce92ad823df275503ca643e3c2f25fceabfa8c3 |\n| x86_64 | f2910f2550f3c0064abcd8c52714451c398d7eaf0a9241a80f97c2bd864cdac9 |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/144582920/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 1, - "eyes": 0 - } - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/143217492", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/143217492/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/143217492/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-14", - "id": 143217492, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4IiVNU", - "tag_name": "pre-release-14", - "target_commitish": "master", - "name": "Komikku Preview Build 14", - "draft": false, - "prerelease": false, - "created_at": "2024-02-22T16:07:56Z", - "published_at": "2024-02-22T16:19:52Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/153014594", - "id": 153014594, - "node_id": "RA_kwDOLExXBM4JHtFC", - "name": "Komikku-arm64-v8a-pre-14.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30770203, - "download_count": 28, - "created_at": "2024-02-22T16:19:53Z", - "updated_at": "2024-02-22T16:19:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-14/Komikku-arm64-v8a-pre-14.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/153014591", - "id": 153014591, - "node_id": "RA_kwDOLExXBM4JHtE_", - "name": "Komikku-armeabi-v7a-pre-14.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26743853, - "download_count": 5, - "created_at": "2024-02-22T16:19:53Z", - "updated_at": "2024-02-22T16:19:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-14/Komikku-armeabi-v7a-pre-14.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/153014593", - "id": 153014593, - "node_id": "RA_kwDOLExXBM4JHtFB", - "name": "Komikku-pre-14.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70650881, - "download_count": 7, - "created_at": "2024-02-22T16:19:53Z", - "updated_at": "2024-02-22T16:19:56Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-14/Komikku-pre-14.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/153014595", - "id": 153014595, - "node_id": "RA_kwDOLExXBM4JHtFD", - "name": "Komikku-x86-pre-14.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 32076773, - "download_count": 2, - "created_at": "2024-02-22T16:19:53Z", - "updated_at": "2024-02-22T16:19:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-14/Komikku-x86-pre-14.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/153014596", - "id": 153014596, - "node_id": "RA_kwDOLExXBM4JHtFE", - "name": "Komikku-x86_64-pre-14.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33371136, - "download_count": 2, - "created_at": "2024-02-22T16:19:53Z", - "updated_at": "2024-02-22T16:19:55Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-14/Komikku-x86_64-pre-14.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-14", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-14", - "body": "### Commits\n\nhttps://github.com/cuongtran/komikku/compare/7874363e0...3c5bc801c\n\n- ExtensionsScreen: display extension lang even for not-installed ones (@cuong-tran)\n- Add extension’s setting to source’s long click (@cuong-tran)\n- transfer repo to komikku-app (@cuong-tran)\n- refactor: db changes for syncing. (#113) (@kaiserbh)\n- Fix \"Flash on page change\" gives black screen on page change (@AntsyLich)\n- Backup and Restore Excluded scanlators (#166) (@jobobby04)\n- Fix faulty MangaUpdates score in db (@AntsyLich)\n- Remove usage of `.not()` where possible (@AntsyLich)\n- Fix issues when updating extensions (@AntsyLich)\n- Translations (#189) (@AntsyLich)\n- update useragent (@cuong-tran)\n- Swap over to Mihon.app (@jobobby04)\n- Adding Type-safe project accessors (#194) (@theolm)\n- Fix #126: Inconsistent button height with some languages in \"Data and storage\" (#202) (@theolm)\n- Fix refreshing from enhanced tracker (#219) (@Secozzi)\n- Translations update from Hosted Weblate (#225) (@weblate)\n- Fix MangaDex’s followStatus & type of TrackStatus’s property (@cuong-tran)\n- [skip ci] Translations update from Hosted Weblate (#190) (@weblate)\n- Hide display cutout setting if fullscreen is off (#241) (@Soitora)\n- Fixing bottom sheet UI bug in non-tablet devices (#182) (@theolm)\n- Change extension update error file name (#253) (@cuong-tran)\n- Adding Detekt in the project (#216) (@theolm)\n- Fix #197 - Scroll crashing (#272) (@theolm)\n- Upgrade `combose-bom` to latest (@AntsyLich)\n- Add click-to-copy extension debug info (#271) (@MajorTanya)\n- Address build warning in `:i18n` (@AntsyLich)\n- Move `:core` to `:core:common` (@AntsyLich)\n- Fix new extension install not registering in app. (#275) (@AwkwardPeak7)\n- Lint (@AntsyLich)\n- Translations update from Hosted Weblate (#269) (@weblate)\n- [skip ci] Increase size of the message indicating which apk to download (@AntsyLich)\n- Don't throw `MALTokenExpired` whenever we fail to refresh MAL token (@AntsyLich)\n- Remove old `ISSUE_TEMPLATE.md` (@AntsyLich)\n- add toggle to auto mark read dupe chapter (#1078) (@Riztard)\n- Fix blank box if empty (#1069) (@Riztard)\n- Add custom Thumbnail Url. Support backup & restore (#1059) (@Riztard)\n- Add Hide Feed tab toggle (#1058) (@Riztard)\n- update zh-rTW strings.xml (#1038) (@ouovouo)\n- Fix compile (@jobobby04)\n- Should fix password protect downloads (@jobobby04)\n- 1.10.3 (@jobobby04)\n- Update workflow dependencies (#310) (@pabalaba)\n- Fix crashes related to MangaCover (@jobobby04)\n- using komikku-app/extensions/repo (@cuong-tran)\n- Fix build script (@cuong-tran)\n- 1.10.4 (@jobobby04)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 4e22d0904b90640cd6d3fd3f62a05adc851512798766bc29212cf7c8fa3b08a7 |\n| arm64-v8a | b93d047b109801d8e112f66690ad5cf774f54ef7977349a21364a36157d45823 |\n| armeabi-v7a | 480e7a68ac1c6c0592d285c157c6639d6d444a72afb45fa6905f5869bc1f2b42 |\n| x86 | 8158a95f15db95065fb4c63388732c765c21c940d6d201af2734c23cd515f962 |\n| x86_64 | 03d9f6c8b593ed12fff4f20bb17a231c408a19f534c510b6881afa4f89e5807a |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/143217492/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 1, - "eyes": 0 - }, - "mentions_count": 13 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/140717692", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/140717692/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/140717692/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-12", - "id": 140717692, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4IYy58", - "tag_name": "pre-release-12", - "target_commitish": "master", - "name": "Komikku Preview Build 12", - "draft": false, - "prerelease": false, - "created_at": "2024-02-08T23:58:16Z", - "published_at": "2024-02-09T00:07:20Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150613717", - "id": 150613717, - "node_id": "RA_kwDOLExXBM4I-i7V", - "name": "Komikku-arm64-v8a-pre-12.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30639041, - "download_count": 13, - "created_at": "2024-02-09T00:07:21Z", - "updated_at": "2024-02-09T00:07:22Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-12/Komikku-arm64-v8a-pre-12.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150613720", - "id": 150613720, - "node_id": "RA_kwDOLExXBM4I-i7Y", - "name": "Komikku-armeabi-v7a-pre-12.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26612689, - "download_count": 3, - "created_at": "2024-02-09T00:07:21Z", - "updated_at": "2024-02-09T00:07:22Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-12/Komikku-armeabi-v7a-pre-12.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150613719", - "id": 150613719, - "node_id": "RA_kwDOLExXBM4I-i7X", - "name": "Komikku-pre-12.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70486694, - "download_count": 2, - "created_at": "2024-02-09T00:07:21Z", - "updated_at": "2024-02-09T00:07:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-12/Komikku-pre-12.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150613718", - "id": 150613718, - "node_id": "RA_kwDOLExXBM4I-i7W", - "name": "Komikku-x86-pre-12.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31945617, - "download_count": 2, - "created_at": "2024-02-09T00:07:21Z", - "updated_at": "2024-02-09T00:07:22Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-12/Komikku-x86-pre-12.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150613721", - "id": 150613721, - "node_id": "RA_kwDOLExXBM4I-i7Z", - "name": "Komikku-x86_64-pre-12.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33239977, - "download_count": 2, - "created_at": "2024-02-09T00:07:21Z", - "updated_at": "2024-02-09T00:07:22Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-12/Komikku-x86_64-pre-12.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-12", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-12", - "body": "### Commits\n\nhttps://github.com/cuongtran/komikku/compare/d353c83db...7874363e0\n\n- Fix Shikimori tracking (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 669151acea6c783cfed879e2c64b408a65019cac32e88c6c7bd8fb3f99c94936 |\n| arm64-v8a | c891993b1ccb5229cc1a9069df061710e184b53d6692340cc3a404b31f8a324f |\n| armeabi-v7a | c1861448db12b704dd8b0da491cbcf6f49663d217957afb71b2932b574ee4e01 |\n| x86 | 21e850e46de00578b1d12a75f1eb2115a80bfcfacbc41a5e4a5d57aaacdfff5e |\n| x86_64 | e9601284ae8b7722b64f8847e17cfde8890b7c5092b4bc82ae94479968b4f2b9 |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/140717692/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/140716350", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/140716350/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/140716350/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-11", - "id": 140716350, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4IYyk-", - "tag_name": "pre-release-11", - "target_commitish": "master", - "name": "Komikku Preview Build 11", - "draft": false, - "prerelease": false, - "created_at": "2024-02-08T23:35:34Z", - "published_at": "2024-02-08T23:44:59Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150611088", - "id": 150611088, - "node_id": "RA_kwDOLExXBM4I-iSQ", - "name": "Komikku-arm64-v8a-pre-11.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30639041, - "download_count": 5, - "created_at": "2024-02-08T23:44:59Z", - "updated_at": "2024-02-08T23:45:00Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-11/Komikku-arm64-v8a-pre-11.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150611090", - "id": 150611090, - "node_id": "RA_kwDOLExXBM4I-iSS", - "name": "Komikku-armeabi-v7a-pre-11.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26616785, - "download_count": 2, - "created_at": "2024-02-08T23:44:59Z", - "updated_at": "2024-02-08T23:45:01Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-11/Komikku-armeabi-v7a-pre-11.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150611089", - "id": 150611089, - "node_id": "RA_kwDOLExXBM4I-iSR", - "name": "Komikku-pre-11.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70486694, - "download_count": 2, - "created_at": "2024-02-08T23:44:59Z", - "updated_at": "2024-02-08T23:45:02Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-11/Komikku-pre-11.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150611091", - "id": 150611091, - "node_id": "RA_kwDOLExXBM4I-iST", - "name": "Komikku-x86-pre-11.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31945617, - "download_count": 2, - "created_at": "2024-02-08T23:44:59Z", - "updated_at": "2024-02-08T23:45:01Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-11/Komikku-x86-pre-11.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150611092", - "id": 150611092, - "node_id": "RA_kwDOLExXBM4I-iSU", - "name": "Komikku-x86_64-pre-11.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33239977, - "download_count": 2, - "created_at": "2024-02-08T23:44:59Z", - "updated_at": "2024-02-08T23:45:01Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-11/Komikku-x86_64-pre-11.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-11", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-11", - "body": "### Commits\n\nhttps://github.com/cuongtran/komikku/compare/a3e47a105...d353c83db\n\n- Make tracker use Komikku’s client (@cuong-tran)\n- Remove usage of `.not()` where possible (@AntsyLich)\n- Use own client for trackers + custom user agents (@AntsyLich)\n- Lint (@AntsyLich)\n- Update types of legacy tracker model to match to domain one (#245) (@AntsyLich)\n- Refactor MAL code to not spam refresh token when it fails (@AntsyLich)\n- Lint (@AntsyLich)\n- Update types of legacy tracker model to match to domain one (#245) (@cuong-tran)\n- Support both Komikku & Mihon tracking (@cuong-tran)\n- Shikimori: using Komikku key (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | a0d4a75cdb9d2287f7cf3b583606f8870d2c8ea5a6edfddeb6b3bb29f6eb542a |\n| arm64-v8a | 47a87bacbd7ffb79f527272e7de95513317f7438c789e60cab353929fa1f56a2 |\n| armeabi-v7a | 95ef5a21982058b41eb1880578c315a8a215b74773881b43399ed18f35d22842 |\n| x86 | 2cec8c3743b7d6f9162d106b71999c83049d71c78343cd7d91568f8f01c34b3b |\n| x86_64 | f8af5ff723c515ceafdc9a87d7b36a4d67f8e4ec72f00ce064e7945a4ff5b88f |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/140716350/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 1, - "eyes": 0 - }, - "mentions_count": 2 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/140316857", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/140316857/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/140316857/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-10", - "id": 140316857, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4IXRC5", - "tag_name": "pre-release-10", - "target_commitish": "master", - "name": "Komikku Preview Build 10", - "draft": false, - "prerelease": false, - "created_at": "2024-02-07T12:42:26Z", - "published_at": "2024-02-07T12:51:49Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150308951", - "id": 150308951, - "node_id": "RA_kwDOLExXBM4I9YhX", - "name": "Komikku-arm64-v8a-pre-10.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30634887, - "download_count": 5, - "created_at": "2024-02-07T12:51:49Z", - "updated_at": "2024-02-07T12:51:52Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-10/Komikku-arm64-v8a-pre-10.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150308950", - "id": 150308950, - "node_id": "RA_kwDOLExXBM4I9YhW", - "name": "Komikku-armeabi-v7a-pre-10.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26608535, - "download_count": 2, - "created_at": "2024-02-07T12:51:49Z", - "updated_at": "2024-02-07T12:51:50Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-10/Komikku-armeabi-v7a-pre-10.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150308949", - "id": 150308949, - "node_id": "RA_kwDOLExXBM4I9YhV", - "name": "Komikku-pre-10.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70482540, - "download_count": 3, - "created_at": "2024-02-07T12:51:49Z", - "updated_at": "2024-02-07T12:51:52Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-10/Komikku-pre-10.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150308952", - "id": 150308952, - "node_id": "RA_kwDOLExXBM4I9YhY", - "name": "Komikku-x86-pre-10.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31941463, - "download_count": 2, - "created_at": "2024-02-07T12:51:49Z", - "updated_at": "2024-02-07T12:51:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-10/Komikku-x86-pre-10.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/150308953", - "id": 150308953, - "node_id": "RA_kwDOLExXBM4I9YhZ", - "name": "Komikku-x86_64-pre-10.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33235823, - "download_count": 2, - "created_at": "2024-02-07T12:51:49Z", - "updated_at": "2024-02-07T12:51:51Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-10/Komikku-x86_64-pre-10.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-10", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-10", - "body": "### Commits\n\nhttps://github.com/cuongtran/komikku/compare/20e3b1284...a3e47a105\n\n- allow search source using both source's name & extensions's name (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 9704324a46ea841d4e7f41741341a5252096d6026da73b7d4a4c45200a00bf86 |\n| arm64-v8a | 674354ff8dc506ebbf57f7daa280c4ade8f6fb6d8d0f6519633cd9d851d85bff |\n| armeabi-v7a | 8a931b7a7f7a314dc1567549d501242428c609f85f5d7bbb0e5c0bec94148396 |\n| x86 | 74c0fef9267ace8c8181a6525d5c96eab2c44308eba18ee9d3f2f3f5fec1d3d3 |\n| x86_64 | 98b0a7073512b0998eeaaf24c5899f2200c3700bcc7291efac8312373f631b2c |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/140316857/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 1, - "eyes": 0 - }, - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/139995906", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/139995906/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/139995906/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-9", - "id": 139995906, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4IWCsC", - "tag_name": "pre-release-9", - "target_commitish": "master", - "name": "Komikku Preview Build 9", - "draft": false, - "prerelease": false, - "created_at": "2024-02-05T21:34:34Z", - "published_at": "2024-02-05T21:43:09Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149988414", - "id": 149988414, - "node_id": "RA_kwDOLExXBM4I8KQ-", - "name": "Komikku-arm64-v8a-pre-9.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30634887, - "download_count": 4, - "created_at": "2024-02-05T21:43:10Z", - "updated_at": "2024-02-05T21:43:11Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-9/Komikku-arm64-v8a-pre-9.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149988416", - "id": 149988416, - "node_id": "RA_kwDOLExXBM4I8KRA", - "name": "Komikku-armeabi-v7a-pre-9.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26612631, - "download_count": 2, - "created_at": "2024-02-05T21:43:10Z", - "updated_at": "2024-02-05T21:43:11Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-9/Komikku-armeabi-v7a-pre-9.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149988412", - "id": 149988412, - "node_id": "RA_kwDOLExXBM4I8KQ8", - "name": "Komikku-pre-9.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70482540, - "download_count": 4, - "created_at": "2024-02-05T21:43:10Z", - "updated_at": "2024-02-05T21:43:12Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-9/Komikku-pre-9.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149988413", - "id": 149988413, - "node_id": "RA_kwDOLExXBM4I8KQ9", - "name": "Komikku-x86-pre-9.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31941463, - "download_count": 2, - "created_at": "2024-02-05T21:43:10Z", - "updated_at": "2024-02-05T21:43:11Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-9/Komikku-x86-pre-9.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149988417", - "id": 149988417, - "node_id": "RA_kwDOLExXBM4I8KRB", - "name": "Komikku-x86_64-pre-9.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33235823, - "download_count": 2, - "created_at": "2024-02-05T21:43:10Z", - "updated_at": "2024-02-05T21:43:11Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-9/Komikku-x86_64-pre-9.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-9", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-9", - "body": "### Commits\n\nhttps://github.com/cuongtran/komikku/compare/97efbd2ef...20e3b1284\n\n- Language tag with current locale in Extension Filter (@cuong-tran)\n- Replace MyAnimeList key with Komikku (@cuong-tran)\n- Show source’s extension name in Source browse & Global search (@cuong-tran)\n- initialize FirebaseApp (@cuong-tran)\n- Merge branch 'develop' (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | a6c7a42b0b70dc5ded790b1f22e077966ed8e2b580202507c07aefc378d9ab2e |\n| arm64-v8a | 2bea2fe41ab17de0a102da182a290e304929bee1f73f7c6be57e0b67b7902db3 |\n| armeabi-v7a | 02f0f0b33dc4423a1758933ce5a4bad8aea91af4a3d5022c84477edd1d6fbd25 |\n| x86 | fefd77a43c3fcee7bae13f6903c987f18d6338647d758c9ce03af3c20c7827b7 |\n| x86_64 | b184d17f4936754806c54dc2d19d05206bc6d936920847181c75bbd63c50fa4d |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/139995906/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 1, - "eyes": 0 - }, - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/139893814", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/139893814/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/139893814/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-8", - "id": 139893814, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4IVpw2", - "tag_name": "pre-release-8", - "target_commitish": "master", - "name": "Komikku Preview Build 8", - "draft": false, - "prerelease": false, - "created_at": "2024-02-05T11:32:26Z", - "published_at": "2024-02-05T11:41:26Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149901606", - "id": 149901606, - "node_id": "RA_kwDOLExXBM4I71Em", - "name": "Komikku-arm64-v8a-pre-8.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30634887, - "download_count": 6, - "created_at": "2024-02-05T11:41:27Z", - "updated_at": "2024-02-05T11:41:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-8/Komikku-arm64-v8a-pre-8.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149901603", - "id": 149901603, - "node_id": "RA_kwDOLExXBM4I71Ej", - "name": "Komikku-armeabi-v7a-pre-8.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26608535, - "download_count": 2, - "created_at": "2024-02-05T11:41:26Z", - "updated_at": "2024-02-05T11:41:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-8/Komikku-armeabi-v7a-pre-8.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149901605", - "id": 149901605, - "node_id": "RA_kwDOLExXBM4I71El", - "name": "Komikku-pre-8.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70482540, - "download_count": 2, - "created_at": "2024-02-05T11:41:27Z", - "updated_at": "2024-02-05T11:41:29Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-8/Komikku-pre-8.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149901602", - "id": 149901602, - "node_id": "RA_kwDOLExXBM4I71Ei", - "name": "Komikku-x86-pre-8.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31941463, - "download_count": 2, - "created_at": "2024-02-05T11:41:26Z", - "updated_at": "2024-02-05T11:41:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-8/Komikku-x86-pre-8.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149901604", - "id": 149901604, - "node_id": "RA_kwDOLExXBM4I71Ek", - "name": "Komikku-x86_64-pre-8.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33235823, - "download_count": 2, - "created_at": "2024-02-05T11:41:27Z", - "updated_at": "2024-02-05T11:41:29Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-8/Komikku-x86_64-pre-8.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-8", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-8", - "body": "### Commits\n\nhttps://github.com/cuongtran/komikku/compare/1fc760478...97efbd2ef\n\n- Update source repo URL (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | 58e3cda260c48897734c9dbb2a4e591f4623295167c369756036d79d8b8c3988 |\n| arm64-v8a | c735781e627dbba68814680245301b403640173bfd5abb963d22ba58ab07541a |\n| armeabi-v7a | a91077d78c0fd797851b51cce1975ee93336d5c7055b94408038dbdb892016d1 |\n| x86 | d811caa8221c438bceec85525a769a340ce111e31efc4d4fb39a5880ffa952ad |\n| x86_64 | c35194ae8ddfa5f6785f4d371e446e727f71c5d9cbdf6b910e18c2496ea0e035 |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/139893814/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 1, - "eyes": 0 - }, - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/139807368", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/139807368/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/139807368/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-7", - "id": 139807368, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4IVUqI", - "tag_name": "pre-release-7", - "target_commitish": "master", - "name": "Komikku Preview Build 7", - "draft": false, - "prerelease": false, - "created_at": "2024-02-04T10:34:40Z", - "published_at": "2024-02-04T10:58:26Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149734950", - "id": 149734950, - "node_id": "RA_kwDOLExXBM4I7MYm", - "name": "Komikku-arm64-v8a-pre-7.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30634887, - "download_count": 5, - "created_at": "2024-02-04T10:58:26Z", - "updated_at": "2024-02-04T10:58:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-7/Komikku-arm64-v8a-pre-7.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149734951", - "id": 149734951, - "node_id": "RA_kwDOLExXBM4I7MYn", - "name": "Komikku-armeabi-v7a-pre-7.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26612631, - "download_count": 2, - "created_at": "2024-02-04T10:58:26Z", - "updated_at": "2024-02-04T10:58:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-7/Komikku-armeabi-v7a-pre-7.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149734949", - "id": 149734949, - "node_id": "RA_kwDOLExXBM4I7MYl", - "name": "Komikku-pre-7.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70482540, - "download_count": 2, - "created_at": "2024-02-04T10:58:26Z", - "updated_at": "2024-02-04T10:58:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-7/Komikku-pre-7.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149734952", - "id": 149734952, - "node_id": "RA_kwDOLExXBM4I7MYo", - "name": "Komikku-x86-pre-7.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31941463, - "download_count": 2, - "created_at": "2024-02-04T10:58:26Z", - "updated_at": "2024-02-04T10:58:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-7/Komikku-x86-pre-7.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/149734953", - "id": 149734953, - "node_id": "RA_kwDOLExXBM4I7MYp", - "name": "Komikku-x86_64-pre-7.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33235823, - "download_count": 2, - "created_at": "2024-02-04T10:58:26Z", - "updated_at": "2024-02-04T10:58:28Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-7/Komikku-x86_64-pre-7.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-7", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-7", - "body": "### Commits\n\nhttps://github.com/cuongtran/komikku/compare/77e40033d...1fc760478\n\n- Update github workflow badge (@cuong-tran)\n- Update README (@cuong-tran)\n- Move SourceSettingsButton to Presentation domain (@cuong-tran)\n- Move source’s package settings button to SourceFeedScreen (@cuong-tran)\n- Increase limitation of Feed from 10 to 20 (@cuong-tran)\n- Feed: [Fix] Not trying to add Feed if not select anything on dialog box (@cuong-tran)\n- Feed: will get Popular if source doesn’t support Latest (@cuong-tran)\n- Merge branch 'feature/feed-screen' into develop (@cuong-tran)\n- Filter to show NSFW sources/extensions only in Browse tab (@cuong-tran)\n- Add github script to build develop branch (@cuong-tran)\n- update README (@cuong-tran)\n- Move string resource (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | e3ae0e4c587e5102450482985ce8f138822ac79141f297317990d2c399d107d7 |\n| arm64-v8a | f67522380fe0919436e9b686cb76051cfe5b1a3bce277bc2eb2dd2583cb0dbcb |\n| armeabi-v7a | 7e78da3db51c6a207c18ac3f64a8c6095568d89503940084f69e44e048d2aa65 |\n| x86 | d73afedbe78d0fc7a316b925fc8b4347f222001d8758ef4b39ea17d2a6c09347 |\n| x86_64 | f317445f590f80dd0c35289e2886e1b44e73bd85d8bb0a5ba3cf47e14b0288e3 |\n", - "mentions_count": 1 - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/138986985", - "assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/138986985/assets", - "upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/138986985/assets{?name,label}", - "html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-5", - "id": 138986985, - "author": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "node_id": "RE_kwDOLExXBM4ISMXp", - "tag_name": "pre-release-5", - "target_commitish": "master", - "name": "Komikku Preview Build 5", - "draft": false, - "prerelease": false, - "created_at": "2024-01-29T17:51:49Z", - "published_at": "2024-01-29T18:03:21Z", - "assets": [ - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/148544706", - "id": 148544706, - "node_id": "RA_kwDOLExXBM4I2pzC", - "name": "Komikku-arm64-v8a-pre-5.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 30630791, - "download_count": 17, - "created_at": "2024-01-29T18:03:21Z", - "updated_at": "2024-01-29T18:03:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-5/Komikku-arm64-v8a-pre-5.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/148544708", - "id": 148544708, - "node_id": "RA_kwDOLExXBM4I2pzE", - "name": "Komikku-armeabi-v7a-pre-5.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 26604439, - "download_count": 4, - "created_at": "2024-01-29T18:03:22Z", - "updated_at": "2024-01-29T18:03:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-5/Komikku-armeabi-v7a-pre-5.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/148544709", - "id": 148544709, - "node_id": "RA_kwDOLExXBM4I2pzF", - "name": "Komikku-pre-5.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 70478444, - "download_count": 4, - "created_at": "2024-01-29T18:03:22Z", - "updated_at": "2024-01-29T18:03:24Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-5/Komikku-pre-5.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/148544707", - "id": 148544707, - "node_id": "RA_kwDOLExXBM4I2pzD", - "name": "Komikku-x86-pre-5.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 31937367, - "download_count": 2, - "created_at": "2024-01-29T18:03:21Z", - "updated_at": "2024-01-29T18:03:23Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-5/Komikku-x86-pre-5.apk" - }, - { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/148544710", - "id": 148544710, - "node_id": "RA_kwDOLExXBM4I2pzG", - "name": "Komikku-x86_64-pre-5.apk", - "label": "", - "uploader": { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false - }, - "content_type": "application/vnd.android.package-archive", - "state": "uploaded", - "size": 33231727, - "download_count": 3, - "created_at": "2024-01-29T18:03:22Z", - "updated_at": "2024-01-29T18:03:24Z", - "browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-5/Komikku-x86_64-pre-5.apk" - } - ], - "tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-5", - "zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-5", - "body": "### Commits\n\nhttps://github.com/cuongtran/komikku/compare/31e5bddb5...77e40033d\n\n- Fix score issue with MangaUpdates (@AntsyLich)\n- Update README & CONTRIBUTE to new repo & remove FUNDING (@cuong-tran)\n- Update ISSUE_TEMPLATE to new repo (@cuong-tran)\n- update Github workflow scripts (@cuong-tran)\n- Change app name & ID, update gitignore (@cuong-tran)\n- Replace new name in strings (@cuong-tran)\n- replace new ID for S-Pen (@cuong-tran)\n- Change update repo (@cuong-tran)\n- New icon (@cuong-tran)\n- Better vector icon (@cuong-tran)\n- Remove files executable permission (@cuong-tran)\n- Show Untrusted extensions above Trusted extensions (@cuong-tran)\n- Add OFFICIAL source & mine signature (@cuong-tran)\n- using FastScrollLazyColumn for SourcesScreen scrollbar (@cuong-tran)\n- SourcesSearch with animated search box (@cuong-tran)\n- Add icon to jump directly to ExtensionDetailsScreen from SourcesScreen (@cuong-tran)\n- Avoid showing ExtensionDetailsScreen for E-Hentai & ExHentai which is built-in & not actually installed extensions (@cuong-tran)\n- Show NSFW mark on SourcesScreen list (@cuong-tran)\n- update README & ISSUE_TEMPLTE (@cuong-tran)\n- Upgrade AGP to 8.2.2 (@cuong-tran)\n- build_preview: set version and always publish release (@cuong-tran)\n- spotlight for splash screen in dark mode (@cuong-tran)\n\n---\n\n### Checksums\n\n| Variant | SHA-256 |\n| ------- | ------- |\n| Universal | ad50c1719ccde4d969e279911f27a2e61460f0146748f6976ad8420a8da54dd0 |\n| arm64-v8a | c7197c76cec75ecfeea5f7830851cc7a553c38a21c38908bf78dba9a1ac7ac57 |\n| armeabi-v7a | 26716c50a0f615924f813719e3367dfd69a6c8211840af752e96d8bcf49cd109 |\n| x86 | 870cb01c74e4829ff77eb60ce5353692ea94357c4e375cba7db3573d964b629e |\n| x86_64 | 6bdfaf483532fcb5c9c45ad908f0af42637b9db87f14846055558c0252a4ae2e |\n", - "reactions": { - "url": "https://api.github.com/repos/komikku-app/komikku/releases/138986985/reactions", - "total_count": 1, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - }, - "mentions_count": 2 - } -] \ No newline at end of file diff --git a/app/src/main/java/eu/kanade/presentation/more/settings/screen/about/AboutScreen.kt b/app/src/main/java/eu/kanade/presentation/more/settings/screen/about/AboutScreen.kt index 2a68f98c5..cf32759b9 100644 --- a/app/src/main/java/eu/kanade/presentation/more/settings/screen/about/AboutScreen.kt +++ b/app/src/main/java/eu/kanade/presentation/more/settings/screen/about/AboutScreen.kt @@ -37,8 +37,10 @@ import eu.kanade.tachiyomi.util.CrashLogUtil import eu.kanade.tachiyomi.util.lang.toDateTimestampString import eu.kanade.tachiyomi.util.system.copyToClipboard import eu.kanade.tachiyomi.util.system.isDebugBuildType +import eu.kanade.tachiyomi.util.system.isPreviewBuildType import eu.kanade.tachiyomi.util.system.isReleaseBuildType import eu.kanade.tachiyomi.util.system.toast +import eu.kanade.tachiyomi.util.system.updaterEnabled import kotlinx.coroutines.launch import logcat.LogPriority import tachiyomi.core.common.util.lang.withIOContext @@ -108,7 +110,7 @@ object AboutScreen : Screen() { ) } - if (BuildConfig.INCLUDE_UPDATER) { + if (updaterEnabled) { item { TextPreferenceWidget( title = stringResource(MR.strings.check_for_updates), @@ -368,7 +370,7 @@ object AboutScreen : Screen() { fun getVersionName(withBuildDate: Boolean): String { return when { - BuildConfig.DEBUG -> { + isDebugBuildType -> { "Debug ${BuildConfig.COMMIT_SHA}".let { if (withBuildDate) { "$it (${getFormattedBuildTime()})" @@ -377,7 +379,7 @@ object AboutScreen : Screen() { } } } - BuildConfig.PREVIEW -> { + isPreviewBuildType -> { "Beta r${BuildConfig.COMMIT_COUNT}".let { if (withBuildDate) { "$it (${BuildConfig.COMMIT_SHA}, ${getFormattedBuildTime()})" diff --git a/app/src/main/java/eu/kanade/presentation/webview/EhLoginWebViewScreen.kt b/app/src/main/java/eu/kanade/presentation/webview/EhLoginWebViewScreen.kt index 5c94ee8ec..344a2fe6a 100644 --- a/app/src/main/java/eu/kanade/presentation/webview/EhLoginWebViewScreen.kt +++ b/app/src/main/java/eu/kanade/presentation/webview/EhLoginWebViewScreen.kt @@ -37,7 +37,7 @@ import com.kevinnzou.web.WebView import com.kevinnzou.web.rememberWebViewNavigator import com.kevinnzou.web.rememberWebViewState import eu.kanade.presentation.components.AppBar -import eu.kanade.tachiyomi.BuildConfig +import eu.kanade.tachiyomi.util.system.isDebugBuildType import eu.kanade.tachiyomi.util.system.setDefaultSettings import tachiyomi.i18n.MR import tachiyomi.i18n.sy.SYMR @@ -125,7 +125,7 @@ fun EhLoginWebViewScreen( webView.setDefaultSettings() // Debug mode (chrome://inspect/#devices) - if (BuildConfig.DEBUG && + if (isDebugBuildType && 0 != webView.context.applicationInfo.flags and ApplicationInfo.FLAG_DEBUGGABLE ) { WebView.setWebContentsDebuggingEnabled(true) diff --git a/app/src/main/java/eu/kanade/presentation/webview/WebViewScreenContent.kt b/app/src/main/java/eu/kanade/presentation/webview/WebViewScreenContent.kt index 765607737..742e2ec22 100644 --- a/app/src/main/java/eu/kanade/presentation/webview/WebViewScreenContent.kt +++ b/app/src/main/java/eu/kanade/presentation/webview/WebViewScreenContent.kt @@ -38,10 +38,10 @@ import com.kevinnzou.web.rememberWebViewState import eu.kanade.presentation.components.AppBar import eu.kanade.presentation.components.AppBarActions import eu.kanade.presentation.components.WarningBanner -import eu.kanade.tachiyomi.BuildConfig import eu.kanade.tachiyomi.network.NetworkHelper import eu.kanade.tachiyomi.util.system.WebViewUtil import eu.kanade.tachiyomi.util.system.getHtml +import eu.kanade.tachiyomi.util.system.isDebugBuildType import eu.kanade.tachiyomi.util.system.setDefaultSettings import kotlinx.collections.immutable.persistentListOf import kotlinx.coroutines.launch @@ -258,7 +258,7 @@ fun WebViewScreenContent( webView.setDefaultSettings() // Debug mode (chrome://inspect/#devices) - if (BuildConfig.DEBUG && + if (isDebugBuildType && 0 != webView.context.applicationInfo.flags and ApplicationInfo.FLAG_DEBUGGABLE ) { WebView.setWebContentsDebuggingEnabled(true) diff --git a/app/src/main/java/eu/kanade/tachiyomi/App.kt b/app/src/main/java/eu/kanade/tachiyomi/App.kt index b8b397afb..22bb4cf2a 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/App.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/App.kt @@ -62,8 +62,10 @@ import eu.kanade.tachiyomi.util.CrashLogUtil import eu.kanade.tachiyomi.util.system.DeviceUtil import eu.kanade.tachiyomi.util.system.GLUtil import eu.kanade.tachiyomi.util.system.WebViewUtil +import eu.kanade.tachiyomi.util.system.analyticsIncluded import eu.kanade.tachiyomi.util.system.animatorDurationScale import eu.kanade.tachiyomi.util.system.cancelNotification +import eu.kanade.tachiyomi.util.system.isDebugBuildType import eu.kanade.tachiyomi.util.system.notify import exh.log.CrashlyticsPrinter import exh.log.EHLogLevel @@ -110,7 +112,7 @@ class App : Application(), DefaultLifecycleObserver, SingletonImageLoader.Factor FirebaseConfig.init(applicationContext) // KMK --> - if (BuildConfig.DEBUG) Timber.plant(Timber.DebugTree()) + if (isDebugBuildType) Timber.plant(Timber.DebugTree()) // KMK <-- GlobalExceptionHandler.initialize(applicationContext, CrashActivity::class.java) @@ -313,7 +315,7 @@ class App : Application(), DefaultLifecycleObserver, SingletonImageLoader.Factor val logLevel = when { EHLogLevel.shouldLog(EHLogLevel.EXTREME) -> LogLevel.ALL - EHLogLevel.shouldLog(EHLogLevel.EXTRA) || BuildConfig.DEBUG -> LogLevel.DEBUG + EHLogLevel.shouldLog(EHLogLevel.EXTRA) || isDebugBuildType -> LogLevel.DEBUG else -> LogLevel.WARN } @@ -348,7 +350,7 @@ class App : Application(), DefaultLifecycleObserver, SingletonImageLoader.Factor } // Install Crashlytics in prod - if (!BuildConfig.DEBUG) { + if (analyticsIncluded) { printers += CrashlyticsPrinter(LogLevel.ERROR) } diff --git a/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateChecker.kt b/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateChecker.kt index 0f2ad1ff4..e218989ae 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateChecker.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateChecker.kt @@ -3,6 +3,7 @@ package eu.kanade.tachiyomi.data.updater import android.content.Context import android.os.Build import eu.kanade.tachiyomi.BuildConfig +import eu.kanade.tachiyomi.util.system.isPreviewBuildType import tachiyomi.core.common.util.lang.withIOContext import tachiyomi.domain.UnsortedPreferences import tachiyomi.domain.release.interactor.GetApplicationRelease @@ -33,7 +34,7 @@ class AppUpdateChecker( return withIOContext { val result = getApplicationRelease.await( GetApplicationRelease.Arguments( - isPreview = BuildConfig.PREVIEW || peekIntoPreview, + isPreview = isPreviewBuildType || peekIntoPreview, commitCount = BuildConfig.COMMIT_COUNT.toInt(), versionName = BuildConfig.VERSION_NAME, repository = getGithubRepo(peekIntoPreview), @@ -78,7 +79,7 @@ class AppUpdateChecker( return withIOContext { getApplicationRelease.awaitReleaseNotes( GetApplicationRelease.Arguments( - isPreview = BuildConfig.PREVIEW || peekIntoPreview, + isPreview = isPreviewBuildType || peekIntoPreview, commitCount = BuildConfig.COMMIT_COUNT.toInt(), versionName = BuildConfig.VERSION_NAME, repository = getGithubRepo(peekIntoPreview), @@ -92,7 +93,7 @@ class AppUpdateChecker( val GITHUB_REPO: String by lazy { getGithubRepo() } fun getGithubRepo(peekIntoPreview: Boolean = false): String = - if (BuildConfig.PREVIEW || peekIntoPreview) { + if (isPreviewBuildType || peekIntoPreview) { "komikku-app/komikku-preview" } else { "komikku-app/komikku" @@ -101,7 +102,7 @@ fun getGithubRepo(peekIntoPreview: Boolean = false): String = val RELEASE_TAG: String by lazy { getReleaseTag() } fun getReleaseTag(peekIntoPreview: Boolean = false): String = - if (BuildConfig.PREVIEW || peekIntoPreview) { + if (isPreviewBuildType || peekIntoPreview) { "r${BuildConfig.COMMIT_COUNT}" } else { "v${BuildConfig.VERSION_NAME}" diff --git a/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateJob.kt b/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateJob.kt index 55b210ccb..557330772 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateJob.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateJob.kt @@ -9,9 +9,9 @@ import androidx.work.NetworkType import androidx.work.PeriodicWorkRequestBuilder import androidx.work.WorkManager import androidx.work.WorkerParameters -import eu.kanade.tachiyomi.BuildConfig import eu.kanade.tachiyomi.data.notification.Notifications import eu.kanade.tachiyomi.util.system.notificationManager +import eu.kanade.tachiyomi.util.system.updaterEnabled import exh.log.xLogE import kotlinx.coroutines.coroutineScope import java.util.concurrent.TimeUnit @@ -21,7 +21,7 @@ class AppUpdateJob(private val context: Context, workerParams: WorkerParameters) override suspend fun doWork(): Result = coroutineScope { try { - if (!BuildConfig.INCLUDE_UPDATER) { + if (!updaterEnabled) { cancelTask(context) return@coroutineScope Result.success() } diff --git a/app/src/main/java/eu/kanade/tachiyomi/di/AppModule.kt b/app/src/main/java/eu/kanade/tachiyomi/di/AppModule.kt index f71f4474c..7c72f1960 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/di/AppModule.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/di/AppModule.kt @@ -8,7 +8,6 @@ import androidx.sqlite.db.framework.FrameworkSQLiteOpenHelperFactory import app.cash.sqldelight.db.SqlDriver import app.cash.sqldelight.driver.android.AndroidSqliteDriver import eu.kanade.domain.track.store.DelayedTrackingStore -import eu.kanade.tachiyomi.BuildConfig import eu.kanade.tachiyomi.core.security.SecurityPreferences import eu.kanade.tachiyomi.data.BackupRestoreStatus import eu.kanade.tachiyomi.data.LibraryUpdateStatus @@ -26,6 +25,7 @@ import eu.kanade.tachiyomi.extension.ExtensionManager import eu.kanade.tachiyomi.network.JavaScriptEngine import eu.kanade.tachiyomi.network.NetworkHelper import eu.kanade.tachiyomi.source.AndroidSourceManager +import eu.kanade.tachiyomi.util.system.isDebugBuildType import exh.eh.EHentaiUpdateHelper import io.requery.android.database.sqlite.RequerySQLiteOpenHelperFactory import kotlinx.serialization.json.Json @@ -87,7 +87,7 @@ class AppModule(val app: Application) : InjektModule { }, factory = if (securityPreferences.encryptDatabase().get()) { SupportOpenHelperFactory(CbzCrypto.getDecryptedPasswordSql(), null, false, 25) - } else if (BuildConfig.DEBUG && Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) { + } else if (isDebugBuildType && Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) { // Support database inspector in Android Studio FrameworkSQLiteOpenHelperFactory() } else { @@ -149,7 +149,7 @@ class AppModule(val app: Application) : InjektModule { addSingletonFactory { ChapterCache(app, get(), get()) } addSingletonFactory { CoverCache(app) } - addSingletonFactory { NetworkHelper(app, get(), BuildConfig.DEBUG) } + addSingletonFactory { NetworkHelper(app, get(), isDebugBuildType) } addSingletonFactory { JavaScriptEngine(app) } addSingletonFactory { AndroidSourceManager(app, get(), get()) } diff --git a/app/src/main/java/eu/kanade/tachiyomi/ui/main/MainActivity.kt b/app/src/main/java/eu/kanade/tachiyomi/ui/main/MainActivity.kt index fd461bab5..7a7800b62 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/ui/main/MainActivity.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/ui/main/MainActivity.kt @@ -87,9 +87,11 @@ import eu.kanade.tachiyomi.ui.manga.MangaScreen import eu.kanade.tachiyomi.ui.more.NewUpdateScreen import eu.kanade.tachiyomi.ui.more.OnboardingScreen import eu.kanade.tachiyomi.util.system.dpToPx +import eu.kanade.tachiyomi.util.system.isDebugBuildType import eu.kanade.tachiyomi.util.system.isNavigationBarNeedsScrim import eu.kanade.tachiyomi.util.system.isPreviewBuildType import eu.kanade.tachiyomi.util.system.isReleaseBuildType +import eu.kanade.tachiyomi.util.system.updaterEnabled import eu.kanade.tachiyomi.util.view.setComposeContent import exh.debug.DebugToggles import exh.eh.EHentaiUpdateWorker @@ -194,7 +196,7 @@ class MainActivity : BaseActivity() { // SY --> @Suppress("KotlinConstantConditions") - val hasDebugOverlay = (BuildConfig.DEBUG || BuildConfig.BUILD_TYPE == "releaseTest") + val hasDebugOverlay = (isDebugBuildType || BuildConfig.BUILD_TYPE == "releaseTest") // SY <-- setComposeContent { @@ -363,7 +365,7 @@ class MainActivity : BaseActivity() { var showChangelog by remember { mutableStateOf( // KMK --> - // BuildConfig.DEBUG || + // isDebugBuildType || isReleaseBuildType && didMigration || isPreviewBuildType && @@ -435,7 +437,7 @@ class MainActivity : BaseActivity() { // App updates LaunchedEffect(Unit) { - if (BuildConfig.INCLUDE_UPDATER) { + if (updaterEnabled) { try { // KMK --> AppUpdateJob.setupTask(context) diff --git a/app/src/main/java/eu/kanade/tachiyomi/util/system/BuildConfig.kt b/app/src/main/java/eu/kanade/tachiyomi/util/system/BuildConfig.kt index d8a3dc78b..0470bc464 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/util/system/BuildConfig.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/util/system/BuildConfig.kt @@ -5,7 +5,10 @@ package eu.kanade.tachiyomi.util.system import eu.kanade.tachiyomi.BuildConfig val analyticsIncluded: Boolean - inline get() = BuildConfig.INCLUDE_ANALYTICS + inline get() = BuildConfig.ANALYTICS_INCLUDED + +val updaterEnabled: Boolean + inline get() = BuildConfig.UPDATER_ENABLED val isDebugBuildType: Boolean inline get() = BuildConfig.BUILD_TYPE == "debug" diff --git a/app/src/main/java/exh/log/EHDebugModeOverlay.kt b/app/src/main/java/exh/log/EHDebugModeOverlay.kt index 4e43bf2a8..ce04de4c7 100644 --- a/app/src/main/java/exh/log/EHDebugModeOverlay.kt +++ b/app/src/main/java/exh/log/EHDebugModeOverlay.kt @@ -35,6 +35,7 @@ import androidx.compose.ui.unit.sp import eu.kanade.core.preference.asState import eu.kanade.domain.source.service.SourcePreferences import eu.kanade.tachiyomi.BuildConfig +import eu.kanade.tachiyomi.util.system.isDebugBuildType import tachiyomi.core.common.i18n.stringResource import tachiyomi.i18n.MR import uy.kohesive.injekt.Injekt @@ -109,7 +110,7 @@ private fun buildInfo(context: Context, sourceBlacklist: Boolean) = buildAnnotat } append('\n') appendItem("Build type:", BuildConfig.BUILD_TYPE) - appendItem("Debug mode:", BuildConfig.DEBUG.asEnabledString()) + appendItem("Debug mode:", isDebugBuildType.asEnabledString()) appendItem("Version code:", BuildConfig.VERSION_CODE.toString()) appendItem("Commit SHA:", BuildConfig.COMMIT_SHA) appendItem("Log level:", EHLogLevel.currentLogLevel.name.lowercase(Locale.getDefault())) diff --git a/app/src/main/java/mihon/core/migration/migrations/SetupAppUpdateMigration.kt b/app/src/main/java/mihon/core/migration/migrations/SetupAppUpdateMigration.kt index 42740fec7..b40f7c189 100644 --- a/app/src/main/java/mihon/core/migration/migrations/SetupAppUpdateMigration.kt +++ b/app/src/main/java/mihon/core/migration/migrations/SetupAppUpdateMigration.kt @@ -1,8 +1,8 @@ package mihon.core.migration.migrations import android.app.Application -import eu.kanade.tachiyomi.BuildConfig import eu.kanade.tachiyomi.data.updater.AppUpdateJob +import eu.kanade.tachiyomi.util.system.updaterEnabled import mihon.core.migration.Migration import mihon.core.migration.MigrationContext @@ -10,7 +10,7 @@ class SetupAppUpdateMigration : Migration { override val version: Float = Migration.ALWAYS override suspend fun invoke(migrationContext: MigrationContext): Boolean { - if (!BuildConfig.INCLUDE_UPDATER) return false + if (!updaterEnabled) return false val context = migrationContext.get() ?: return false AppUpdateJob.setupTask(context) diff --git a/data/src/main/java/tachiyomi/data/release/ReleaseServiceImpl.kt b/data/src/main/java/tachiyomi/data/release/ReleaseServiceImpl.kt index 87e91c763..376f61386 100644 --- a/data/src/main/java/tachiyomi/data/release/ReleaseServiceImpl.kt +++ b/data/src/main/java/tachiyomi/data/release/ReleaseServiceImpl.kt @@ -1,6 +1,5 @@ package tachiyomi.data.release -import dev.icerock.moko.graphics.BuildConfig import eu.kanade.tachiyomi.network.GET import eu.kanade.tachiyomi.network.NetworkHelper import eu.kanade.tachiyomi.network.awaitSuccess @@ -26,11 +25,7 @@ class ReleaseServiceImpl( // KMK --> override suspend fun releaseNotes(repository: String): List { - val releases = if (BuildConfig.DEBUG) { - "https://raw.githubusercontent.com/$repository/refs/heads/master/app/src/debug/res/raw/releases.json" - } else { - "https://api.github.com/repos/$repository/releases" - } + val releases = "https://api.github.com/repos/$repository/releases" return with(json) { networkService.client .newCall(GET(releases)) diff --git a/source-api/src/commonMain/kotlin/eu/kanade/tachiyomi/source/CatalogueSource.kt b/source-api/src/commonMain/kotlin/eu/kanade/tachiyomi/source/CatalogueSource.kt index 081e6c0ed..83c82000d 100644 --- a/source-api/src/commonMain/kotlin/eu/kanade/tachiyomi/source/CatalogueSource.kt +++ b/source-api/src/commonMain/kotlin/eu/kanade/tachiyomi/source/CatalogueSource.kt @@ -1,6 +1,5 @@ package eu.kanade.tachiyomi.source -import dev.icerock.moko.graphics.BuildConfig import eu.kanade.tachiyomi.source.model.FilterList import eu.kanade.tachiyomi.source.model.MangasPage import eu.kanade.tachiyomi.source.model.SManga @@ -125,15 +124,7 @@ interface CatalogueSource : Source { runCatching { fetchRelatedMangaList(manga) } .onSuccess { if (it.isNotEmpty()) pushResults(Pair("", it), false) } .onFailure { e -> - @Suppress("KotlinConstantConditions") - if (BuildConfig.BUILD_TYPE == "release") { - logcat(LogPriority.ERROR, e) { "## getRelatedMangaListByExtension: $e" } - } else { - throw UnsupportedOperationException( - "Extension doesn't support site's related entries," + - " please report an issue to Komikku.", - ) - } + logcat(LogPriority.ERROR, e) { "## getRelatedMangaListByExtension: $e" } } }