├── .github ├── ISSUE_TEMPLATE │ ├── ----.md │ └── bug--.md └── workflows │ └── main.yml ├── .gitignore ├── .gradle ├── 6.1.1 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ └── fileHashes.lock │ └── gc.properties ├── checksums │ └── checksums.lock └── vcs-1 │ └── gc.properties ├── .metadata ├── README.md ├── _config.yml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── top │ │ │ │ └── hanerx │ │ │ │ └── flutterdmzj │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── proguard-rules.pro ├── settings.gradle └── settings_aar.gradle ├── assets ├── guide │ ├── chapter0 │ │ ├── example0.json │ │ ├── example1.json │ │ ├── example2.json │ │ └── main.json │ └── example.json ├── js │ └── lzString.js └── json │ └── category.json ├── doc ├── image-20210419184914844.png ├── image-20210419193403782.png ├── image-20210419193440494.png └── image-20210419193540196.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── GoogleService-Info.plist ├── Podfile ├── Podfile.lock ├── 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 └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── component │ ├── AuthorCard.dart │ ├── Authors.dart │ ├── Battery.dart │ ├── Card.dart │ ├── CardView.dart │ ├── CategoryCard.dart │ ├── ComicSourceCard.dart │ ├── CustomDrawer.dart │ ├── DataBaseDefineTile.dart │ ├── DataBaseTable.dart │ ├── DownloadComicListTile.dart │ ├── Drawer.dart │ ├── EmptyView.dart │ ├── FancyFab.dart │ ├── LoadingCube.dart │ ├── SearchDialog.dart │ ├── SubscribeCard.dart │ ├── TypeTags.dart │ ├── ViewPointChip.dart │ ├── comic │ │ ├── BaseListTile.dart │ │ ├── ComicListTile.dart │ │ ├── CommentListTile.dart │ │ ├── HistoryListTile.dart │ │ ├── SearchListTile.dart │ │ └── SubjectListTile.dart │ ├── comic_viewer │ │ ├── ComicPage.dart │ │ ├── Common.dart │ │ ├── EndPage.dart │ │ ├── HorizontalPageView.dart │ │ ├── Tips.dart │ │ └── VerticalPageView.dart │ ├── history_tab │ │ ├── CloudHistoryTab.dart │ │ └── LocalHistoryTab.dart │ └── search │ │ ├── DeepSearchTab.dart │ │ ├── NovelSearchTab.dart │ │ ├── SearchButton.dart │ │ └── SearchTab.dart ├── database │ ├── configDatabaseProvider.dart │ ├── cookieDatabaseProvider.dart │ ├── databaseCommon.dart │ ├── downloader.dart │ ├── historyDatabaseProvider.dart │ ├── localMangaDatabaseProvider.dart │ ├── sourceDatabaseProvider.dart │ └── tracker.dart ├── generated │ ├── intl │ │ ├── messages_all.dart │ │ ├── messages_en.dart │ │ └── messages_zh.dart │ └── l10n.dart ├── http │ ├── CopyMangaRequestHandler.dart │ ├── DMZJRequestHandler.dart │ ├── GithubRequestHandler.dart │ ├── IPFSSourceRequestHandler.dart │ ├── KuKuRequestHandler.dart │ ├── ManHuaGuiRequestHandler.dart │ ├── MangabzRequestHandler.dart │ └── UniversalRequestModel.dart ├── l10n │ ├── intl_en.arb │ └── intl_zh.arb ├── main.dart ├── model │ ├── RouterModel.dart │ ├── baseModel.dart │ ├── cloudHistoryModel.dart │ ├── comic.dart │ ├── comicAuthorModel.dart │ ├── comicCategoryDetailModel.dart │ ├── comicCategoryModel.dart │ ├── comicCommentModel.dart │ ├── comicDetail.dart │ ├── comicFavoriteModel.dart │ ├── comicLatestUpdateModel.dart │ ├── comicRankingListModel.dart │ ├── comicSearchModel.dart │ ├── comicViewerSettingModel.dart │ ├── comic_source │ │ ├── CopyMangaSourceModel.dart │ │ ├── DMZJSourceModel.dart │ │ ├── IPFSSourceProivder.dart │ │ ├── KuKuSourceModel.dart │ │ ├── LocalSourceModel.dart │ │ ├── ManHuaGuiSourceModel.dart │ │ ├── MangabzSourceModel.dart │ │ ├── baseSourceModel.dart │ │ └── sourceProvider.dart │ ├── databaseDetailModel.dart │ ├── download.dart │ ├── downloadChapters.dart │ ├── homepageModel.dart │ ├── ipfsSettingProvider.dart │ ├── localHistoryModel.dart │ ├── mag_model │ │ ├── MangaComicChapterModel.dart │ │ ├── MangaComicDetailModel.dart │ │ ├── MangaComicGroupModel.dart │ │ ├── OutputMangaModel.dart │ │ └── baseMangaModel.dart │ ├── novel.dart │ ├── novelCategoryModel.dart │ ├── novelDetail.dart │ ├── novelFavoriteModel.dart │ ├── novel_source │ │ └── baseNovelSourceModel.dart │ ├── server_controller │ │ ├── ComicListModel.dart │ │ ├── NewComicChapterModel.dart │ │ ├── NewComicDetailModel.dart │ │ ├── NewComicGroupModel.dart │ │ ├── NewUserDetailModel.dart │ │ ├── ServerListModel.dart │ │ ├── ServerMainPageModel.dart │ │ └── UserListModel.dart │ ├── sourceSearchProvider.dart │ ├── subjectDetailModel.dart │ ├── subjectListModel.dart │ ├── systemSettingModel.dart │ ├── trackerModel.dart │ └── versionModel.dart ├── protobuf │ ├── comic.pb.dart │ ├── comic.pbenum.dart │ ├── comic.pbjson.dart │ ├── comic.pbserver.dart │ ├── comic.proto │ ├── novel_chapter.pb.dart │ ├── novel_chapter.pbenum.dart │ ├── novel_chapter.pbjson.dart │ ├── novel_chapter.pbserver.dart │ └── novel_chapter.proto ├── utils │ ├── ChineseCupertinoLocalizations.dart │ ├── HttpProxyAdapter.dart │ ├── ProxyCacheManager.dart │ ├── log_output.dart │ ├── soup.dart │ └── tool_methods.dart └── view │ ├── author_page.dart │ ├── backup.dart │ ├── category_detail_page.dart │ ├── category_page.dart │ ├── comic_detail_page.dart │ ├── comic_pages │ └── subject_list_page.dart │ ├── comic_source │ ├── comic_source_page.dart │ └── comic_source_provider_page.dart │ ├── comic_viewer.dart │ ├── comment_page.dart │ ├── dark_side_page.dart │ ├── database_detail_page.dart │ ├── download_comic_page.dart │ ├── download_page.dart │ ├── favorite │ ├── comic_favorite_page.dart │ ├── novel_favorite_page.dart │ └── tracker_favorite_page.dart │ ├── favorite_page.dart │ ├── history_page.dart │ ├── home_page.dart │ ├── latest_update_page.dart │ ├── login_page.dart │ ├── mag_maker │ ├── edit_mag_page.dart │ ├── import_mag_page.dart │ ├── mag_example_page.dart │ ├── mag_guide_page.dart │ ├── mag_make_page.dart │ ├── new_chapter_detail_page.dart │ ├── new_comic_detail_page.dart │ ├── new_group_detail_page.dart │ ├── new_mag_page.dart │ └── output_mag_page.dart │ ├── novel_pages │ ├── novel_category_detail_page.dart │ ├── novel_category_page.dart │ ├── novel_detail_page.dart │ ├── novel_home_page.dart │ ├── novel_latest_update_page.dart │ ├── novel_main_page.dart │ ├── novel_ranking_page.dart │ └── novel_viewer_page.dart │ ├── ranking_page.dart │ ├── search_page.dart │ ├── server_controllers │ ├── comic_list_page.dart │ ├── server_chapter_detail_page.dart │ ├── server_comic_detail_page.dart │ ├── server_group_detail_page.dart │ ├── server_list_page.dart │ ├── server_main_page.dart │ ├── server_sellect_page.dart │ ├── server_user_detail_page.dart │ └── user_list_page.dart │ ├── settings │ ├── about_setting_page.dart │ ├── debug_setting_page.dart │ ├── debug_test_page.dart │ ├── download_setting_page.dart │ ├── ipfs_setting_page.dart │ ├── lab_setting_page.dart │ ├── reader_setting_page.dart │ ├── setting_page.dart │ ├── source_setting_page.dart │ └── user_setting_page.dart │ └── subject_detail_page.dart ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png └── Icon-512.png ├── index.html └── manifest.json /.github/ISSUE_TEMPLATE/----.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/.github/ISSUE_TEMPLATE/----.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/.github/ISSUE_TEMPLATE/bug--.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/6.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/6.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/.gradle/6.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/6.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/_config.yml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/top/hanerx/flutterdmzj/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/kotlin/top/hanerx/flutterdmzj/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /assets/guide/chapter0/example0.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": "hello world!" 3 | } -------------------------------------------------------------------------------- /assets/guide/chapter0/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/assets/guide/chapter0/example1.json -------------------------------------------------------------------------------- /assets/guide/chapter0/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/assets/guide/chapter0/example2.json -------------------------------------------------------------------------------- /assets/guide/chapter0/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/assets/guide/chapter0/main.json -------------------------------------------------------------------------------- /assets/guide/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/assets/guide/example.json -------------------------------------------------------------------------------- /assets/js/lzString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/assets/js/lzString.js -------------------------------------------------------------------------------- /assets/json/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/assets/json/category.json -------------------------------------------------------------------------------- /doc/image-20210419184914844.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/doc/image-20210419184914844.png -------------------------------------------------------------------------------- /doc/image-20210419193403782.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/doc/image-20210419193403782.png -------------------------------------------------------------------------------- /doc/image-20210419193440494.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/doc/image-20210419193440494.png -------------------------------------------------------------------------------- /doc/image-20210419193540196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/doc/image-20210419193540196.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/component/AuthorCard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/AuthorCard.dart -------------------------------------------------------------------------------- /lib/component/Authors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/Authors.dart -------------------------------------------------------------------------------- /lib/component/Battery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/Battery.dart -------------------------------------------------------------------------------- /lib/component/Card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/Card.dart -------------------------------------------------------------------------------- /lib/component/CardView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/CardView.dart -------------------------------------------------------------------------------- /lib/component/CategoryCard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/CategoryCard.dart -------------------------------------------------------------------------------- /lib/component/ComicSourceCard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/ComicSourceCard.dart -------------------------------------------------------------------------------- /lib/component/CustomDrawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/CustomDrawer.dart -------------------------------------------------------------------------------- /lib/component/DataBaseDefineTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/DataBaseDefineTile.dart -------------------------------------------------------------------------------- /lib/component/DataBaseTable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/DataBaseTable.dart -------------------------------------------------------------------------------- /lib/component/DownloadComicListTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/DownloadComicListTile.dart -------------------------------------------------------------------------------- /lib/component/Drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/Drawer.dart -------------------------------------------------------------------------------- /lib/component/EmptyView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/EmptyView.dart -------------------------------------------------------------------------------- /lib/component/FancyFab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/FancyFab.dart -------------------------------------------------------------------------------- /lib/component/LoadingCube.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/LoadingCube.dart -------------------------------------------------------------------------------- /lib/component/SearchDialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/SearchDialog.dart -------------------------------------------------------------------------------- /lib/component/SubscribeCard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/SubscribeCard.dart -------------------------------------------------------------------------------- /lib/component/TypeTags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/TypeTags.dart -------------------------------------------------------------------------------- /lib/component/ViewPointChip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/ViewPointChip.dart -------------------------------------------------------------------------------- /lib/component/comic/BaseListTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic/BaseListTile.dart -------------------------------------------------------------------------------- /lib/component/comic/ComicListTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic/ComicListTile.dart -------------------------------------------------------------------------------- /lib/component/comic/CommentListTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic/CommentListTile.dart -------------------------------------------------------------------------------- /lib/component/comic/HistoryListTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic/HistoryListTile.dart -------------------------------------------------------------------------------- /lib/component/comic/SearchListTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic/SearchListTile.dart -------------------------------------------------------------------------------- /lib/component/comic/SubjectListTile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic/SubjectListTile.dart -------------------------------------------------------------------------------- /lib/component/comic_viewer/ComicPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic_viewer/ComicPage.dart -------------------------------------------------------------------------------- /lib/component/comic_viewer/Common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic_viewer/Common.dart -------------------------------------------------------------------------------- /lib/component/comic_viewer/EndPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic_viewer/EndPage.dart -------------------------------------------------------------------------------- /lib/component/comic_viewer/HorizontalPageView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic_viewer/HorizontalPageView.dart -------------------------------------------------------------------------------- /lib/component/comic_viewer/Tips.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic_viewer/Tips.dart -------------------------------------------------------------------------------- /lib/component/comic_viewer/VerticalPageView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/comic_viewer/VerticalPageView.dart -------------------------------------------------------------------------------- /lib/component/history_tab/CloudHistoryTab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/history_tab/CloudHistoryTab.dart -------------------------------------------------------------------------------- /lib/component/history_tab/LocalHistoryTab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/history_tab/LocalHistoryTab.dart -------------------------------------------------------------------------------- /lib/component/search/DeepSearchTab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/search/DeepSearchTab.dart -------------------------------------------------------------------------------- /lib/component/search/NovelSearchTab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/search/NovelSearchTab.dart -------------------------------------------------------------------------------- /lib/component/search/SearchButton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/search/SearchButton.dart -------------------------------------------------------------------------------- /lib/component/search/SearchTab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/component/search/SearchTab.dart -------------------------------------------------------------------------------- /lib/database/configDatabaseProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/database/configDatabaseProvider.dart -------------------------------------------------------------------------------- /lib/database/cookieDatabaseProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/database/cookieDatabaseProvider.dart -------------------------------------------------------------------------------- /lib/database/databaseCommon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/database/databaseCommon.dart -------------------------------------------------------------------------------- /lib/database/downloader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/database/downloader.dart -------------------------------------------------------------------------------- /lib/database/historyDatabaseProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/database/historyDatabaseProvider.dart -------------------------------------------------------------------------------- /lib/database/localMangaDatabaseProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/database/localMangaDatabaseProvider.dart -------------------------------------------------------------------------------- /lib/database/sourceDatabaseProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/database/sourceDatabaseProvider.dart -------------------------------------------------------------------------------- /lib/database/tracker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/database/tracker.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/generated/intl/messages_all.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/generated/intl/messages_en.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_zh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/generated/intl/messages_zh.dart -------------------------------------------------------------------------------- /lib/generated/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/generated/l10n.dart -------------------------------------------------------------------------------- /lib/http/CopyMangaRequestHandler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/http/CopyMangaRequestHandler.dart -------------------------------------------------------------------------------- /lib/http/DMZJRequestHandler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/http/DMZJRequestHandler.dart -------------------------------------------------------------------------------- /lib/http/GithubRequestHandler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/http/GithubRequestHandler.dart -------------------------------------------------------------------------------- /lib/http/IPFSSourceRequestHandler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/http/IPFSSourceRequestHandler.dart -------------------------------------------------------------------------------- /lib/http/KuKuRequestHandler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/http/KuKuRequestHandler.dart -------------------------------------------------------------------------------- /lib/http/ManHuaGuiRequestHandler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/http/ManHuaGuiRequestHandler.dart -------------------------------------------------------------------------------- /lib/http/MangabzRequestHandler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/http/MangabzRequestHandler.dart -------------------------------------------------------------------------------- /lib/http/UniversalRequestModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/http/UniversalRequestModel.dart -------------------------------------------------------------------------------- /lib/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/l10n/intl_en.arb -------------------------------------------------------------------------------- /lib/l10n/intl_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/l10n/intl_zh.arb -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/model/RouterModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/RouterModel.dart -------------------------------------------------------------------------------- /lib/model/baseModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/baseModel.dart -------------------------------------------------------------------------------- /lib/model/cloudHistoryModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/cloudHistoryModel.dart -------------------------------------------------------------------------------- /lib/model/comic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic.dart -------------------------------------------------------------------------------- /lib/model/comicAuthorModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicAuthorModel.dart -------------------------------------------------------------------------------- /lib/model/comicCategoryDetailModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicCategoryDetailModel.dart -------------------------------------------------------------------------------- /lib/model/comicCategoryModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicCategoryModel.dart -------------------------------------------------------------------------------- /lib/model/comicCommentModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicCommentModel.dart -------------------------------------------------------------------------------- /lib/model/comicDetail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicDetail.dart -------------------------------------------------------------------------------- /lib/model/comicFavoriteModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicFavoriteModel.dart -------------------------------------------------------------------------------- /lib/model/comicLatestUpdateModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicLatestUpdateModel.dart -------------------------------------------------------------------------------- /lib/model/comicRankingListModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicRankingListModel.dart -------------------------------------------------------------------------------- /lib/model/comicSearchModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicSearchModel.dart -------------------------------------------------------------------------------- /lib/model/comicViewerSettingModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comicViewerSettingModel.dart -------------------------------------------------------------------------------- /lib/model/comic_source/CopyMangaSourceModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/CopyMangaSourceModel.dart -------------------------------------------------------------------------------- /lib/model/comic_source/DMZJSourceModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/DMZJSourceModel.dart -------------------------------------------------------------------------------- /lib/model/comic_source/IPFSSourceProivder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/IPFSSourceProivder.dart -------------------------------------------------------------------------------- /lib/model/comic_source/KuKuSourceModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/KuKuSourceModel.dart -------------------------------------------------------------------------------- /lib/model/comic_source/LocalSourceModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/LocalSourceModel.dart -------------------------------------------------------------------------------- /lib/model/comic_source/ManHuaGuiSourceModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/ManHuaGuiSourceModel.dart -------------------------------------------------------------------------------- /lib/model/comic_source/MangabzSourceModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/MangabzSourceModel.dart -------------------------------------------------------------------------------- /lib/model/comic_source/baseSourceModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/baseSourceModel.dart -------------------------------------------------------------------------------- /lib/model/comic_source/sourceProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/comic_source/sourceProvider.dart -------------------------------------------------------------------------------- /lib/model/databaseDetailModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/databaseDetailModel.dart -------------------------------------------------------------------------------- /lib/model/download.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/download.dart -------------------------------------------------------------------------------- /lib/model/downloadChapters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/downloadChapters.dart -------------------------------------------------------------------------------- /lib/model/homepageModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/homepageModel.dart -------------------------------------------------------------------------------- /lib/model/ipfsSettingProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/ipfsSettingProvider.dart -------------------------------------------------------------------------------- /lib/model/localHistoryModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/localHistoryModel.dart -------------------------------------------------------------------------------- /lib/model/mag_model/MangaComicChapterModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/mag_model/MangaComicChapterModel.dart -------------------------------------------------------------------------------- /lib/model/mag_model/MangaComicDetailModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/mag_model/MangaComicDetailModel.dart -------------------------------------------------------------------------------- /lib/model/mag_model/MangaComicGroupModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/mag_model/MangaComicGroupModel.dart -------------------------------------------------------------------------------- /lib/model/mag_model/OutputMangaModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/mag_model/OutputMangaModel.dart -------------------------------------------------------------------------------- /lib/model/mag_model/baseMangaModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/mag_model/baseMangaModel.dart -------------------------------------------------------------------------------- /lib/model/novel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/novel.dart -------------------------------------------------------------------------------- /lib/model/novelCategoryModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/novelCategoryModel.dart -------------------------------------------------------------------------------- /lib/model/novelDetail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/novelDetail.dart -------------------------------------------------------------------------------- /lib/model/novelFavoriteModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/novelFavoriteModel.dart -------------------------------------------------------------------------------- /lib/model/novel_source/baseNovelSourceModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/novel_source/baseNovelSourceModel.dart -------------------------------------------------------------------------------- /lib/model/server_controller/ComicListModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/server_controller/ComicListModel.dart -------------------------------------------------------------------------------- /lib/model/server_controller/NewComicChapterModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/server_controller/NewComicChapterModel.dart -------------------------------------------------------------------------------- /lib/model/server_controller/NewComicDetailModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/server_controller/NewComicDetailModel.dart -------------------------------------------------------------------------------- /lib/model/server_controller/NewComicGroupModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/server_controller/NewComicGroupModel.dart -------------------------------------------------------------------------------- /lib/model/server_controller/NewUserDetailModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/server_controller/NewUserDetailModel.dart -------------------------------------------------------------------------------- /lib/model/server_controller/ServerListModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/server_controller/ServerListModel.dart -------------------------------------------------------------------------------- /lib/model/server_controller/ServerMainPageModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/server_controller/ServerMainPageModel.dart -------------------------------------------------------------------------------- /lib/model/server_controller/UserListModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/server_controller/UserListModel.dart -------------------------------------------------------------------------------- /lib/model/sourceSearchProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/sourceSearchProvider.dart -------------------------------------------------------------------------------- /lib/model/subjectDetailModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/subjectDetailModel.dart -------------------------------------------------------------------------------- /lib/model/subjectListModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/subjectListModel.dart -------------------------------------------------------------------------------- /lib/model/systemSettingModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/systemSettingModel.dart -------------------------------------------------------------------------------- /lib/model/trackerModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/trackerModel.dart -------------------------------------------------------------------------------- /lib/model/versionModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/model/versionModel.dart -------------------------------------------------------------------------------- /lib/protobuf/comic.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/comic.pb.dart -------------------------------------------------------------------------------- /lib/protobuf/comic.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/comic.pbenum.dart -------------------------------------------------------------------------------- /lib/protobuf/comic.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/comic.pbjson.dart -------------------------------------------------------------------------------- /lib/protobuf/comic.pbserver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/comic.pbserver.dart -------------------------------------------------------------------------------- /lib/protobuf/comic.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/comic.proto -------------------------------------------------------------------------------- /lib/protobuf/novel_chapter.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/novel_chapter.pb.dart -------------------------------------------------------------------------------- /lib/protobuf/novel_chapter.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/novel_chapter.pbenum.dart -------------------------------------------------------------------------------- /lib/protobuf/novel_chapter.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/novel_chapter.pbjson.dart -------------------------------------------------------------------------------- /lib/protobuf/novel_chapter.pbserver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/novel_chapter.pbserver.dart -------------------------------------------------------------------------------- /lib/protobuf/novel_chapter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/protobuf/novel_chapter.proto -------------------------------------------------------------------------------- /lib/utils/ChineseCupertinoLocalizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/utils/ChineseCupertinoLocalizations.dart -------------------------------------------------------------------------------- /lib/utils/HttpProxyAdapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/utils/HttpProxyAdapter.dart -------------------------------------------------------------------------------- /lib/utils/ProxyCacheManager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/utils/ProxyCacheManager.dart -------------------------------------------------------------------------------- /lib/utils/log_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/utils/log_output.dart -------------------------------------------------------------------------------- /lib/utils/soup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/utils/soup.dart -------------------------------------------------------------------------------- /lib/utils/tool_methods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/utils/tool_methods.dart -------------------------------------------------------------------------------- /lib/view/author_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/author_page.dart -------------------------------------------------------------------------------- /lib/view/backup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/backup.dart -------------------------------------------------------------------------------- /lib/view/category_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/category_detail_page.dart -------------------------------------------------------------------------------- /lib/view/category_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/category_page.dart -------------------------------------------------------------------------------- /lib/view/comic_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/comic_detail_page.dart -------------------------------------------------------------------------------- /lib/view/comic_pages/subject_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/comic_pages/subject_list_page.dart -------------------------------------------------------------------------------- /lib/view/comic_source/comic_source_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/comic_source/comic_source_page.dart -------------------------------------------------------------------------------- /lib/view/comic_source/comic_source_provider_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/comic_source/comic_source_provider_page.dart -------------------------------------------------------------------------------- /lib/view/comic_viewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/comic_viewer.dart -------------------------------------------------------------------------------- /lib/view/comment_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/comment_page.dart -------------------------------------------------------------------------------- /lib/view/dark_side_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/dark_side_page.dart -------------------------------------------------------------------------------- /lib/view/database_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/database_detail_page.dart -------------------------------------------------------------------------------- /lib/view/download_comic_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/download_comic_page.dart -------------------------------------------------------------------------------- /lib/view/download_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/download_page.dart -------------------------------------------------------------------------------- /lib/view/favorite/comic_favorite_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/favorite/comic_favorite_page.dart -------------------------------------------------------------------------------- /lib/view/favorite/novel_favorite_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/favorite/novel_favorite_page.dart -------------------------------------------------------------------------------- /lib/view/favorite/tracker_favorite_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/favorite/tracker_favorite_page.dart -------------------------------------------------------------------------------- /lib/view/favorite_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/favorite_page.dart -------------------------------------------------------------------------------- /lib/view/history_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/history_page.dart -------------------------------------------------------------------------------- /lib/view/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/home_page.dart -------------------------------------------------------------------------------- /lib/view/latest_update_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/latest_update_page.dart -------------------------------------------------------------------------------- /lib/view/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/login_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/edit_mag_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/edit_mag_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/import_mag_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/import_mag_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/mag_example_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/mag_example_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/mag_guide_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/mag_guide_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/mag_make_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/mag_make_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/new_chapter_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/new_chapter_detail_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/new_comic_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/new_comic_detail_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/new_group_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/new_group_detail_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/new_mag_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/new_mag_page.dart -------------------------------------------------------------------------------- /lib/view/mag_maker/output_mag_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/mag_maker/output_mag_page.dart -------------------------------------------------------------------------------- /lib/view/novel_pages/novel_category_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/novel_pages/novel_category_detail_page.dart -------------------------------------------------------------------------------- /lib/view/novel_pages/novel_category_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/novel_pages/novel_category_page.dart -------------------------------------------------------------------------------- /lib/view/novel_pages/novel_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/novel_pages/novel_detail_page.dart -------------------------------------------------------------------------------- /lib/view/novel_pages/novel_home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/novel_pages/novel_home_page.dart -------------------------------------------------------------------------------- /lib/view/novel_pages/novel_latest_update_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/novel_pages/novel_latest_update_page.dart -------------------------------------------------------------------------------- /lib/view/novel_pages/novel_main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/novel_pages/novel_main_page.dart -------------------------------------------------------------------------------- /lib/view/novel_pages/novel_ranking_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/novel_pages/novel_ranking_page.dart -------------------------------------------------------------------------------- /lib/view/novel_pages/novel_viewer_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/novel_pages/novel_viewer_page.dart -------------------------------------------------------------------------------- /lib/view/ranking_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/ranking_page.dart -------------------------------------------------------------------------------- /lib/view/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/search_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/comic_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/comic_list_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/server_chapter_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/server_chapter_detail_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/server_comic_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/server_comic_detail_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/server_group_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/server_group_detail_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/server_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/server_list_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/server_main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/server_main_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/server_sellect_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/server_sellect_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/server_user_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/server_user_detail_page.dart -------------------------------------------------------------------------------- /lib/view/server_controllers/user_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/server_controllers/user_list_page.dart -------------------------------------------------------------------------------- /lib/view/settings/about_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/about_setting_page.dart -------------------------------------------------------------------------------- /lib/view/settings/debug_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/debug_setting_page.dart -------------------------------------------------------------------------------- /lib/view/settings/debug_test_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/debug_test_page.dart -------------------------------------------------------------------------------- /lib/view/settings/download_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/download_setting_page.dart -------------------------------------------------------------------------------- /lib/view/settings/ipfs_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/ipfs_setting_page.dart -------------------------------------------------------------------------------- /lib/view/settings/lab_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/lab_setting_page.dart -------------------------------------------------------------------------------- /lib/view/settings/reader_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/reader_setting_page.dart -------------------------------------------------------------------------------- /lib/view/settings/setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/setting_page.dart -------------------------------------------------------------------------------- /lib/view/settings/source_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/source_setting_page.dart -------------------------------------------------------------------------------- /lib/view/settings/user_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/settings/user_setting_page.dart -------------------------------------------------------------------------------- /lib/view/subject_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/lib/view/subject_detail_page.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanerx/dcomic/HEAD/web/manifest.json --------------------------------------------------------------------------------