gitextract_rinrtcf6/ ├── .fvmrc ├── .github/ │ └── workflows/ │ ├── Package.core.yml │ ├── Package.yml │ ├── Release.core.yml │ └── Release.yml ├── .gitignore ├── .metadata ├── README-zh_CN.md ├── README.md ├── analysis_options.yaml ├── android/ │ ├── .gitignore │ ├── app/ │ │ ├── build.gradle │ │ └── src/ │ │ ├── debug/ │ │ │ └── AndroidManifest.xml │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin/ │ │ │ │ └── opensource/ │ │ │ │ └── pic2acg/ │ │ │ │ └── MainActivity.kt │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── launch_background.xml │ │ │ ├── drawable-v21/ │ │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ └── ic_launcher.xml │ │ │ ├── values/ │ │ │ │ └── styles.xml │ │ │ └── values-night/ │ │ │ └── styles.xml │ │ └── profile/ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ └── settings.gradle ├── ci/ │ ├── cmd/ │ │ ├── check_asset/ │ │ │ └── main.go │ │ ├── check_asset_core/ │ │ │ └── main.go │ │ ├── check_release/ │ │ │ └── main.go │ │ ├── send_to_community/ │ │ │ └── main.go │ │ ├── upload_asset/ │ │ │ └── main.go │ │ └── upload_asset_core/ │ │ └── main.go │ ├── commons/ │ │ ├── funcs.go │ │ └── types.go │ ├── go.mod │ ├── go.sum │ ├── linux_font.yaml │ ├── version.code.txt │ └── version.info.txt ├── ios/ │ ├── .gitignore │ ├── Flutter/ │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.imageset/ │ │ │ ├── Contents.json │ │ │ └── README.md │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── Runner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Runner.xcscheme │ └── Runner.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── lib/ │ ├── assets/ │ │ └── translations/ │ │ ├── en-US.json │ │ ├── ja-JP.json │ │ ├── ko-KR.json │ │ ├── zh-CN.json │ │ └── zh-TW.json │ ├── basic/ │ │ ├── Channels.dart │ │ ├── Common.dart │ │ ├── Cross.dart │ │ ├── Entities.dart │ │ ├── Method.dart │ │ ├── Navigator.dart │ │ ├── config/ │ │ │ ├── Address.dart │ │ │ ├── AndroidDisplayMode.dart │ │ │ ├── AndroidSecureFlag.dart │ │ │ ├── AppOrientation.dart │ │ │ ├── Authentication.dart │ │ │ ├── AutoClean.dart │ │ │ ├── AutoDeleteDownloadOnUnfavorite.dart │ │ │ ├── AutoDownloadOnFavorite.dart │ │ │ ├── AutoFullScreen.dart │ │ │ ├── AutoFullScreenOnForward.dart │ │ │ ├── CategoriesColumnCount.dart │ │ │ ├── CategoriesSort.dart │ │ │ ├── ChooserRoot.dart │ │ │ ├── ContentFailedReloadAction.dart │ │ │ ├── CopyFullName.dart │ │ │ ├── CopyFullNameTemplate.dart │ │ │ ├── CopySkipConfirm.dart │ │ │ ├── DisableAutoDownloadOnMobile.dart │ │ │ ├── DownloadAndExportPath.dart │ │ │ ├── DownloadCachePath.dart │ │ │ ├── DownloadThreadCount.dart │ │ │ ├── DragRegionLock.dart │ │ │ ├── EBookScrolling.dart │ │ │ ├── EBookScrollingRange.dart │ │ │ ├── EBookScrollingTrigger.dart │ │ │ ├── ExportPath.dart │ │ │ ├── ExportRename.dart │ │ │ ├── FullScreenAction.dart │ │ │ ├── FullScreenUI.dart │ │ │ ├── GalleryPreloadCount.dart │ │ │ ├── GestureSpeed.dart │ │ │ ├── HiddenFdIcon.dart │ │ │ ├── HiddenSearchPersion.dart │ │ │ ├── HiddenSubIcon.dart │ │ │ ├── HiddenViewed.dart │ │ │ ├── HiddenWords.dart │ │ │ ├── HideOnlineFavorite.dart │ │ │ ├── IconLoading.dart │ │ │ ├── IgnoreInfoHistory.dart │ │ │ ├── IgnoreUpgradeConfirm.dart │ │ │ ├── ImageAddress.dart │ │ │ ├── ImageFilter.dart │ │ │ ├── ImportNotice.dart │ │ │ ├── IsPro.dart │ │ │ ├── KeyboardController.dart │ │ │ ├── ListLayout.dart │ │ │ ├── LocalHistorySync.dart │ │ │ ├── NoAnimation.dart │ │ │ ├── PagerAction.dart │ │ │ ├── Platform.dart │ │ │ ├── Proxy.dart │ │ │ ├── Quality.dart │ │ │ ├── ReaderBackgroundColor.dart │ │ │ ├── ReaderDirection.dart │ │ │ ├── ReaderScrollByScreenPercentage.dart │ │ │ ├── ReaderSliderPosition.dart │ │ │ ├── ReaderTwoPageDirection.dart │ │ │ ├── ReaderType.dart │ │ │ ├── ReaderZoomScale.dart │ │ │ ├── RecommendLinks.dart │ │ │ ├── ShadowCategories.dart │ │ │ ├── ShadowCategoriesEvent.dart │ │ │ ├── ShadowCategoriesMode.dart │ │ │ ├── ShowCommentAtDownload.dart │ │ │ ├── StartupPic.dart │ │ │ ├── Themes.dart │ │ │ ├── ThreeKeepRight.dart │ │ │ ├── TimeOffsetHour.dart │ │ │ ├── TimeoutLock.dart │ │ │ ├── UseApiLoadImage.dart │ │ │ ├── UsingRightClickPop.dart │ │ │ ├── Version.dart │ │ │ ├── VolumeController.dart │ │ │ ├── VolumeNextChapter.dart │ │ │ ├── WebDav.dart │ │ │ ├── WebToonScrollMode.dart │ │ │ ├── WillPopNotice.dart │ │ │ ├── i18n.dart │ │ │ └── passed.dart │ │ ├── connect.dart │ │ ├── define.dart │ │ ├── enum/ │ │ │ ├── ErrorTypes.dart │ │ │ └── Sort.dart │ │ └── store/ │ │ └── Categories.dart │ ├── i18.dart │ ├── i18b.dart │ ├── main.dart │ ├── main_desktop.dart │ └── screens/ │ ├── AboutScreen.dart │ ├── AccessKeyReplaceScreen.dart │ ├── AccountScreen.dart │ ├── AppScreen.dart │ ├── CategoriesScreen.dart │ ├── CategoriesSortScreen.dart │ ├── CleanScreen.dart │ ├── CloseAppScreen.dart │ ├── ComicCollectionsScreen.dart │ ├── ComicInfoScreen.dart │ ├── ComicReaderScreen.dart │ ├── ComicSubscribesScreen.dart │ ├── ComicsScreen.dart │ ├── CommentScreen.dart │ ├── DesktopAuthenticationScreen.dart │ ├── DownloadConfirmScreen.dart │ ├── DownloadExportGroupScreen.dart │ ├── DownloadExportToFileScreen.dart │ ├── DownloadExportToSocketScreen.dart │ ├── DownloadExportingGroupScreen.dart │ ├── DownloadImportScreen.dart │ ├── DownloadInfoScreen.dart │ ├── DownloadListScreen.dart │ ├── DownloadOnlyImportScreen.dart │ ├── DownloadReaderScreen.dart │ ├── FavouritePaperScreen.dart │ ├── FilePhotoViewScreen.dart │ ├── ForgotPasswordScreen.dart │ ├── GameDownloadScreen.dart │ ├── GameInfoScreen.dart │ ├── GamesScreen.dart │ ├── HiddenWordsScreen.dart │ ├── ImportFromOffScreen.dart │ ├── InitScreen.dart │ ├── LocalFavoriteScreen.dart │ ├── MigrateScreen.dart │ ├── ModifyPasswordScreen.dart │ ├── NetworkSettingsScreen.dart │ ├── PkzArchiveScreen.dart │ ├── PkzComicInfoScreen.dart │ ├── PkzReaderScreen.dart │ ├── ProScreen.dart │ ├── RandomComicsScreen.dart │ ├── RankingsScreen.dart │ ├── RegisterScreen.dart │ ├── SearchAuthorScreen.dart │ ├── SearchScreen.dart │ ├── SettingsScreen.dart │ ├── SpaceScreen.dart │ ├── ThemeScreen.dart │ ├── ViewLogsScreen.dart │ ├── WebServerScreen.dart │ ├── calculator_screen.dart │ └── components/ │ ├── Avatar.dart │ ├── Badge.dart │ ├── BottomSheetInput.dart │ ├── ComicDescriptionCard.dart │ ├── ComicInfoCard.dart │ ├── ComicList.dart │ ├── ComicListBuilder.dart │ ├── ComicPager.dart │ ├── ComicTagsCard.dart │ ├── CommentItem.dart │ ├── CommentList.dart │ ├── CommentMainType.dart │ ├── Common.dart │ ├── CommonData.dart │ ├── ContentBuilder.dart │ ├── ContentError.dart │ ├── ContentLoading.dart │ ├── ContentMessage.dart │ ├── ContinueReadButton.dart │ ├── DesktopCropper.dart │ ├── DownloadComicsScreen.dart │ ├── DownloadInfoCard.dart │ ├── FitButton.dart │ ├── GameTitleCard.dart │ ├── GoDownloadSelect.dart │ ├── ImageReader.dart │ ├── Images.dart │ ├── ItemBuilder.dart │ ├── LinkToComicInfo.dart │ ├── ListView.dart │ ├── MouseAndTouchScrollBehavior.dart │ ├── NetworkSetting.dart │ ├── PkzComicInfoCard.dart │ ├── PkzImages.dart │ ├── RecommendLinksPanel.dart │ ├── Recommendation.dart │ ├── RightClickPop.dart │ ├── TimeoutLock.dart │ ├── UserProfileCard.dart │ ├── flutter_search_bar.dart │ └── gesture_zoom_box.dart ├── linux/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter/ │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos/ │ ├── .gitignore │ ├── Flutter/ │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── MainMenu.xib │ │ ├── Configs/ │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ ├── Runner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Runner.xcscheme │ └── Runner.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── pubspec.yaml ├── scripts/ │ ├── README.md │ ├── bind-android-arm64.sh │ ├── bind-android-debug.sh │ ├── bind-ios-arm64.sh │ ├── bind-ios.sh │ ├── build-apk-arm.sh │ ├── build-apk-arm64.sh │ ├── build-apk-x64.sh │ ├── build-apk-x86.sh │ ├── build-ipa.sh │ ├── build-linux.sh │ ├── build-macos-dmg.sh │ ├── json_compairer.py │ ├── sign-apk-github-actions.sh │ ├── thin-payload.sh │ └── version.sh ├── test/ │ └── widget_test.dart └── windows/ ├── .gitignore ├── CMakeLists.txt ├── flutter/ │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake └── runner/ ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── run_loop.cpp ├── run_loop.h ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h