├── .fvm └── fvm_config.json ├── .fvmrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── README_cn.md ├── analysis_options.yaml ├── analysis_options_old.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── honjow │ │ │ │ ├── eros_fe │ │ │ │ └── MainActivity.kt │ │ │ │ └── fehviewer │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-v24 │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── ic_launcher_monochrome.xml │ │ │ ├── drawable │ │ │ ├── launch_background.xml │ │ │ └── launch_background_dark.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-b+zh │ │ │ └── strings.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── locales_config.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── keystore.properties.sample └── settings.gradle ├── assets ├── images │ ├── afdian.png │ └── dundun.png └── templates │ └── epub │ ├── META-INF │ └── container.xml │ ├── OEBPS │ ├── content │ │ ├── index.html.tpl │ │ └── resources │ │ │ └── index_0.css │ ├── metadata.xml.tpl │ └── toc.ncx.tpl │ └── mimetype ├── changelog ├── v1.4.10+520.md ├── v1.4.11+521.md ├── v1.4.12+522.md ├── v1.4.13+523.md ├── v1.4.9+519.md ├── v1.5.0+530.md ├── v1.5.1+531.md ├── v1.5.2+532.md ├── v1.5.4+534.md ├── v1.6.0+540.md ├── v1.6.1+541.md ├── v1.6.2+542.md ├── v1.6.3+543.md ├── v1.7.0+544.md ├── v1.7.1+546.md ├── v1.7.2+547.md ├── v1.7.3+548.md ├── v1.7.4+549.md ├── v1.7.5+550.md ├── v1.7.6+551.md ├── v1.7.7+552.md ├── v1.8.0+553.md ├── v1.8.1+554.md ├── v1.8.2+556.md ├── v1.8.3+557.md ├── v1.9.0+558.md └── v1.9.1+565.md ├── devtools_options.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── ephemeral │ │ ├── flutter_lldb_helper.py │ │ └── flutter_lldbinit ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ ├── EHShareExtension.xcscheme │ │ └── 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 │ │ │ ├── Icon.png │ │ │ ├── icon_20pt.png │ │ │ ├── icon_20pt@2x-1.png │ │ │ ├── icon_20pt@2x.png │ │ │ ├── icon_20pt@3x.png │ │ │ ├── icon_29pt-1.png │ │ │ ├── icon_29pt.png │ │ │ ├── icon_29pt@2x-1.png │ │ │ ├── icon_29pt@2x.png │ │ │ ├── icon_29pt@3x.png │ │ │ ├── icon_40pt.png │ │ │ ├── icon_40pt@2x-1.png │ │ │ ├── icon_40pt@2x.png │ │ │ ├── icon_40pt@3x.png │ │ │ ├── icon_60pt@2x.png │ │ │ ├── icon_60pt@3x.png │ │ │ ├── icon_76pt.png │ │ │ ├── icon_76pt@2x.png │ │ │ └── icon_83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── Runner-Bridging-Header.h │ ├── SecurityBlurEffect.swift │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── fehviewer.entitlements │ ├── ja.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── ko.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ └── zh-Hant.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ └── Main.strings ├── RunnerTests │ └── RunnerTests.swift ├── firebase_app_id_file.json └── shareExtension │ ├── Base.lproj │ └── MainInterface.storyboard │ ├── Info.plist │ ├── ShareViewController.swift │ ├── ja.lproj │ └── MainInterface.strings │ └── ru.lproj │ └── MainInterface.strings ├── jsons ├── advance_search.json ├── auto_lock.json ├── block_config.json ├── block_rule.json ├── cache_config.json ├── chapter.json ├── commit_vote_res.json ├── custom_profile.json ├── custom_tab_config.json ├── dns_cache.json ├── dns_config.json ├── download_archiver_task_info.json ├── download_config.json ├── eh_config.json ├── eh_home.json ├── eh_layout.json ├── eh_mytag_set.json ├── eh_mytags.json ├── eh_profile.json ├── eh_setting_item.json ├── eh_settings.json ├── eh_usertag.json ├── fav_add.json ├── fav_config.json ├── favcat.json ├── gallery_cache.json ├── gallery_comment.json ├── gallery_image.json ├── gallery_list.json ├── gallery_provider.json ├── gallery_tag.json ├── gallery_torrent.json ├── history_index.json ├── history_index_gid.json ├── image_hide.json ├── item_config.json ├── layout_config.json ├── local_fav.json ├── mpv.json ├── mvp_image.json ├── mysql_config.json ├── mysql_connection_info.json ├── openl_translation.json ├── profile.json ├── simple_tag.json ├── tab_config.json ├── tab_item.json ├── tag_group.json ├── uconfig.json ├── user.json └── webdav_profile.json ├── lib ├── common │ ├── cache │ │ ├── blur_hash_cache.cached.dart │ │ └── blur_hash_cache.dart │ ├── colors.dart │ ├── controller │ │ ├── advance_search_controller.dart │ │ ├── archiver_download_controller.dart │ │ ├── auto_lock_controller.dart │ │ ├── avatar_controller.dart │ │ ├── base_controller.dart │ │ ├── block_controller.dart │ │ ├── cache_controller.dart │ │ ├── debug_controller.dart │ │ ├── download │ │ │ ├── download_monitor.dart │ │ │ ├── download_path_manager.dart │ │ │ ├── download_task_manager.dart │ │ │ ├── gallery_slot_manager.dart │ │ │ ├── image_download_processor.dart │ │ │ └── storage_adapter.dart │ │ ├── download_controller.dart │ │ ├── download_state.dart │ │ ├── gallerycache_controller.dart │ │ ├── history_controller.dart │ │ ├── image_block_controller.dart │ │ ├── localfav_controller.dart │ │ ├── log_controller.dart │ │ ├── mysql_controller.dart │ │ ├── quicksearch_controller.dart │ │ ├── tag_controller.dart │ │ ├── tag_trans_controller.dart │ │ ├── update_controller.dart │ │ ├── user_controller.dart │ │ └── webdav_controller.dart │ ├── enum.dart │ ├── epub │ │ └── epub_builder.dart │ ├── global.dart │ ├── parser │ │ ├── archiver_parser.dart │ │ ├── eh_parser.dart │ │ ├── gallery_detail_parser.dart │ │ ├── gallery_fav_parser.dart │ │ ├── gallery_list_parser.dart │ │ ├── home_parser.dart │ │ ├── image_page_parser.dart │ │ ├── mpv_image_dispatch_parser.dart │ │ ├── mpv_parser.dart │ │ ├── mytags_parser.dart │ │ ├── profile_parser.dart │ │ ├── search_parser.dart │ │ ├── showpage_parser.dart │ │ ├── torrent_parser.dart │ │ └── user_profile_parser.dart │ ├── service │ │ ├── base_service.dart │ │ ├── controller_tag_service.dart │ │ ├── dns_service.dart │ │ ├── ehsetting_service.dart │ │ ├── layout_service.dart │ │ ├── locale_service.dart │ │ └── theme_service.dart │ └── update.dart ├── component │ ├── exception │ │ └── error.dart │ ├── quene_task │ │ └── quene_task.dart │ └── setting_base.dart ├── config │ ├── config.dart │ └── config.dart.sample ├── const │ ├── const.dart │ ├── locale.dart │ ├── storages.dart │ └── theme_colors.dart ├── extension.dart ├── generated │ ├── intl │ │ ├── messages_all.dart │ │ ├── messages_en.dart │ │ ├── messages_ja.dart │ │ ├── messages_ko_KR.dart │ │ ├── messages_ru.dart │ │ ├── messages_zh_CN.dart │ │ └── messages_zh_TW.dart │ └── l10n.dart ├── get_init.dart ├── index.dart ├── isolate.dart ├── l10n │ ├── intl_en.arb │ ├── intl_ja.arb │ ├── intl_ko_KR.arb │ ├── intl_ru.arb │ ├── intl_zh_CN.arb │ └── intl_zh_TW.arb ├── main.dart ├── models │ ├── advance_search.dart │ ├── auto_lock.dart │ ├── base │ │ └── eh_models.dart │ ├── blockRule.dart │ ├── block_config.dart │ ├── block_rule.dart │ ├── cache_config.dart │ ├── chapter.dart │ ├── commit_vote_res.dart │ ├── custom_profile.dart │ ├── custom_tab_config.dart │ ├── customtab_config.dart │ ├── dns_cache.dart │ ├── dns_config.dart │ ├── download_archiver_task_info.dart │ ├── download_config.dart │ ├── eh_config.dart │ ├── eh_home.dart │ ├── eh_layout.dart │ ├── eh_mytag_set.dart │ ├── eh_mytags.dart │ ├── eh_profile.dart │ ├── eh_setting_item.dart │ ├── eh_settings.dart │ ├── eh_usertag.dart │ ├── fav_add.dart │ ├── fav_config.dart │ ├── favcat.dart │ ├── gallery_cache.dart │ ├── gallery_comment.dart │ ├── gallery_comment_span.dart │ ├── gallery_image.dart │ ├── gallery_list.dart │ ├── gallery_provider.dart │ ├── gallery_tag.dart │ ├── gallery_torrent.dart │ ├── history_index.dart │ ├── history_index_gid.dart │ ├── image_hide.dart │ ├── index.dart │ ├── item_config.dart │ ├── layout_config.dart │ ├── list_item_config.dart │ ├── local_fav.dart │ ├── mpv.dart │ ├── mvp_image.dart │ ├── mysql_config.dart │ ├── mysql_connection_info.dart │ ├── openl_translation.dart │ ├── profile.dart │ ├── simple_tag.dart │ ├── tab_config.dart │ ├── tab_item.dart │ ├── tag_group.dart │ ├── uconfig.dart │ ├── user.dart │ └── webdav_profile.dart ├── network │ ├── api.dart │ ├── app_dio │ │ ├── app_dio.dart │ │ ├── dio_file_service.dart │ │ ├── dio_http_cli.dart │ │ ├── exception.dart │ │ ├── http_config.dart │ │ ├── http_response.dart │ │ ├── http_transformer.dart │ │ ├── pdio.dart │ │ └── proxy.dart │ ├── dio_interceptor │ │ ├── domain_fronting │ │ │ └── domain_fronting.dart │ │ ├── eh_cookie_interceptor │ │ │ └── eh_cookie_interceptor.dart │ │ └── rate_limit │ │ │ ├── rate_limit_interceptor.dart │ │ │ ├── sliding_window_interceptor.dart │ │ │ └── token_bucket_interceptor.dart │ └── request.dart ├── pages │ ├── controller │ │ ├── fav_controller.dart │ │ └── favorite_sel_controller.dart │ ├── filter │ │ ├── filter.dart │ │ └── gallery_filter_view.dart │ ├── gallery │ │ ├── comm.dart │ │ ├── controller │ │ │ ├── all_thumbnails_controller.dart │ │ │ ├── archiver_controller.dart │ │ │ ├── comment_controller.dart │ │ │ ├── gallery_fav_controller.dart │ │ │ ├── gallery_page_controller.dart │ │ │ ├── gallery_page_state.dart │ │ │ ├── rate_controller.dart │ │ │ ├── taginfo_controller.dart │ │ │ └── torrent_controller.dart │ │ ├── gallery_repository.dart │ │ └── view │ │ │ ├── add_tags_page.dart │ │ │ ├── all_thumbnails_page.dart │ │ │ ├── archiver_dialog.dart │ │ │ ├── comment_item.dart │ │ │ ├── comment_page.dart │ │ │ ├── const.dart │ │ │ ├── gallery_favcat.dart │ │ │ ├── gallery_info_page.dart │ │ │ ├── gallery_widget.dart │ │ │ ├── header.dart │ │ │ ├── rate_dialog.dart │ │ │ ├── sliver │ │ │ ├── gallery_page.dart │ │ │ ├── gallery_page_sliver.dart │ │ │ ├── header_sliver.dart │ │ │ └── slivers.dart │ │ │ ├── taginfo_dialog.dart │ │ │ ├── thumb_box.dart │ │ │ ├── thumb_clipper.dart │ │ │ └── torrent_dialog.dart │ ├── image_view │ │ ├── common.dart │ │ ├── controller │ │ │ ├── view_controller.dart │ │ │ └── view_state.dart │ │ └── view │ │ │ ├── eh_flutter_list_view_delegate.dart │ │ │ ├── hero.dart │ │ │ ├── image_list_view.dart │ │ │ ├── image_page_view.dart │ │ │ ├── image_page_view_ex.dart │ │ │ ├── view_image.dart │ │ │ ├── view_page.dart │ │ │ └── view_widget.dart │ ├── item │ │ ├── controller │ │ │ ├── downloaditem_controller.dart │ │ │ └── galleryitem_controller.dart │ │ ├── download_archiver_item.dart │ │ ├── download_gallery_item.dart │ │ ├── gallery_clipper.dart │ │ ├── gallery_item.dart │ │ ├── gallery_item_debug_simple.dart │ │ ├── gallery_item_flow.dart │ │ ├── gallery_item_flow_large.dart │ │ ├── gallery_item_grid.dart │ │ ├── gallery_item_grid_placeholder.dart │ │ ├── gallery_item_placeholder.dart │ │ ├── gallery_item_simple.dart │ │ ├── gallery_item_simple_placeholder.dart │ │ ├── item_base.dart │ │ ├── setting_item.dart │ │ └── user_item.dart │ ├── login │ │ ├── controller │ │ │ └── login_controller.dart │ │ └── view │ │ │ ├── login_cookie.dart │ │ │ ├── login_page.dart │ │ │ └── web_login_in.dart │ ├── setting │ │ ├── about_page.dart │ │ ├── advanced_setting_page.dart │ │ ├── avatar_setting_page.dart │ │ ├── block │ │ │ ├── block_rule_edit_dialog.dart │ │ │ ├── block_rule_edit_page.dart │ │ │ ├── block_rules_page.dart │ │ │ └── blockers_page.dart │ │ ├── const.dart │ │ ├── controller │ │ │ ├── eh_mysettings_controller.dart │ │ │ ├── eh_mytags_controller.dart │ │ │ ├── tab_setting_controller.dart │ │ │ └── web_setting_controller.dart │ │ ├── custom_hosts_page.dart │ │ ├── download_setting_page.dart │ │ ├── eh_mysettings_items.dart │ │ ├── eh_mysettings_page.dart │ │ ├── eh_setting_page.dart │ │ ├── image_block │ │ │ ├── image_block_page.dart │ │ │ └── phash_list_page.dart │ │ ├── item_width_setting_page.dart │ │ ├── layout_setting_page.dart │ │ ├── license_page.dart │ │ ├── log_page.dart │ │ ├── log_view_page.dart │ │ ├── mysql │ │ │ ├── mysql_login.dart │ │ │ └── mysql_sync_page.dart │ │ ├── mytags │ │ │ ├── eh_mytags_page.dart │ │ │ ├── eh_usertag_edit_dialog.dart │ │ │ ├── eh_usertag_page.dart │ │ │ └── user_tag_item.dart │ │ ├── proxy_page.dart │ │ ├── read_setting_page.dart │ │ ├── search_setting_page.dart │ │ ├── security_setting_page.dart │ │ ├── setting_items │ │ │ ├── excluded_language.dart │ │ │ ├── multi_selector.dart │ │ │ ├── selector_Item.dart │ │ │ ├── single_input_item.dart │ │ │ └── single_input_page.dart │ │ ├── tabbar_setting_page.dart │ │ ├── tag_translat_page.dart │ │ ├── webdav │ │ │ ├── login_webdav.dart │ │ │ └── webdav_setting_page.dart │ │ └── webview │ │ │ ├── eh_tagset_edit_dialog.dart │ │ │ ├── eh_webview.dart │ │ │ ├── mode.dart │ │ │ ├── mytags_in.dart │ │ │ └── web_mysetting_in.dart │ └── tab │ │ ├── bindings │ │ ├── splash_binding.dart │ │ └── tabhome_binding.dart │ │ ├── comm.dart │ │ ├── controller │ │ ├── default_tabview_controller.dart │ │ ├── download_view_controller.dart │ │ ├── enum.dart │ │ ├── favorite │ │ │ ├── favorite_controller.dart │ │ │ ├── favorite_sublist_controller.dart │ │ │ └── favorite_tabbar_controller.dart │ │ ├── gallery_controller.dart │ │ ├── gallery_filter_controller.dart │ │ ├── group │ │ │ ├── custom_sublist_controller.dart │ │ │ ├── custom_tabbar_controller.dart │ │ │ └── profile_edit_controller.dart │ │ ├── history_view_controller.dart │ │ ├── popular_controller.dart │ │ ├── search_image_controller.dart │ │ ├── search_page_controller.dart │ │ ├── setting_controller.dart │ │ ├── splash_controller.dart │ │ ├── tabhome_controller.dart │ │ ├── tabview_controller.dart │ │ ├── toplist_controller.dart │ │ ├── unlock_page_controller.dart │ │ └── watched_controller.dart │ │ ├── fetch_list.dart │ │ └── view │ │ ├── constants.dart │ │ ├── donwload_labels_page.dart │ │ ├── download_page.dart │ │ ├── empty.dart │ │ ├── favorite_sel_page.dart │ │ ├── gallery_base.dart │ │ ├── history_page.dart │ │ ├── home_page.dart │ │ ├── home_page_large.dart │ │ ├── home_page_small.dart │ │ ├── list │ │ ├── grid.dart │ │ ├── sliver_list.dart │ │ ├── tab_base.dart │ │ └── waterfall_flow.dart │ │ ├── quick_search_page.dart │ │ ├── quick_search_page_o.dart │ │ ├── search_image_page.dart │ │ ├── search_page.dart │ │ ├── setting_page.dart │ │ ├── splash_page.dart │ │ ├── tabbar │ │ ├── custom_profile_setting_page.dart │ │ ├── custom_profiles_page.dart │ │ ├── custom_sub_page.dart │ │ ├── custom_tabbar_page.dart │ │ ├── favorite_sub_page.dart │ │ ├── favorite_tabbar_page.dart │ │ └── search_text_dialog.dart │ │ ├── toplist_page.dart │ │ └── unlock_page.dart ├── route │ ├── app_pages.dart │ ├── eh_observer.dart │ ├── first_observer.dart │ ├── main_observer.dart │ ├── navigator_util.dart │ ├── routes.dart │ └── second_observer.dart ├── store │ ├── archive_async.dart │ ├── db │ │ ├── entity │ │ │ ├── gallery_image_task.dart │ │ │ ├── gallery_image_task.g.dart │ │ │ ├── gallery_task.dart │ │ │ ├── gallery_task.g.dart │ │ │ ├── tag_translat.dart │ │ │ ├── tag_translat.g.dart │ │ │ ├── tag_translate_info.dart │ │ │ ├── tag_translate_info.g.dart │ │ │ ├── view_history.dart │ │ │ └── view_history.g.dart │ │ ├── isar.dart │ │ ├── isar_helper.dart │ │ └── isar_isolate.dart │ ├── hive │ │ ├── hive.dart │ │ └── hive_cache.dart │ └── mysql │ │ ├── const.dart │ │ ├── migration.dart │ │ └── mysql.dart ├── type.dart ├── utils │ ├── app_cupertino_localizations.dart │ ├── app_cupertino_localizations_delegate.dart │ ├── bcd_code.dart │ ├── chapter.dart │ ├── cust_lib │ │ ├── flutter_egg.dart │ │ ├── flutter_linkify.dart │ │ ├── persistent_header_builder.dart │ │ ├── selectable_text.dart │ │ └── sliver │ │ │ ├── element.dart │ │ │ ├── render.dart │ │ │ └── sliver_persistent_header.dart │ ├── debounce.dart │ ├── dialog.dart │ ├── dns_util.dart │ ├── eh_interceptor.dart │ ├── event_bus.dart │ ├── http_override.dart │ ├── https_proxy.dart │ ├── icon.dart │ ├── image_util.dart │ ├── import_export.dart │ ├── logger.dart │ ├── logger │ │ └── pretty_printer.dart │ ├── morse_code_translator.dart │ ├── openl │ │ ├── language.dart │ │ ├── openl_translator.dart │ │ └── translator_helper.dart │ ├── optional.dart │ ├── orientation_helper.dart │ ├── p_hash │ │ ├── phash_base.dart │ │ └── phash_helper.dart │ ├── saf_helper.dart │ ├── sentry.dart │ ├── storage.dart │ ├── time.dart │ ├── toast.dart │ ├── utility.dart │ └── vibrate.dart └── widget │ ├── animated.dart │ ├── blur_image.dart │ ├── cupertino │ ├── list_tile.dart │ └── sliver_list_section.dart │ ├── desktop.dart │ ├── eh_dark_cupertino_theme.dart │ ├── eh_linkify_text.dart │ ├── emoji_text.dart │ ├── expandable_linkify.dart │ ├── expandable_text.dart │ ├── image │ ├── eh_cached_network_image.dart │ ├── eh_network_image.dart │ ├── extended_saf_image_privider.dart │ ├── network_extended_image.dart │ ├── rect_image_provider.dart │ └── saf_image_provider.dart │ ├── link_scroll_bar.dart │ ├── link_scroll_bar_controller.dart │ ├── mouse.dart │ ├── preload_photo_view_gallery.dart │ ├── rating_bar.dart │ ├── refresh.dart │ ├── sys_title.dart │ ├── system_ui_overlay.dart │ └── text_avatar.dart ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x@2x.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── MainFlutterWindow.swift │ ├── Release.entitlements │ ├── ja.lproj │ │ └── MainMenu.strings │ ├── ko.lproj │ │ └── MainMenu.strings │ ├── ru.lproj │ │ └── MainMenu.strings │ ├── zh-Hans.lproj │ │ └── MainMenu.strings │ └── zh-Hant.lproj │ │ └── MainMenu.strings ├── RunnerTests │ └── RunnerTests.swift └── firebase_app_id_file.json ├── pubspec.lock ├── pubspec.yaml ├── screenshot ├── gallery1.png ├── gallery2.png ├── home.png ├── read1.png ├── read2.png ├── search1.png ├── search2.png └── setting.png ├── scripts ├── build_apk.bat ├── build_apk.sh ├── build_ipa.sh ├── build_ipa_.sh ├── build_macos.sh ├── dmg.sh ├── dsym.sh ├── fvm_apk.sh ├── fvm_ipa.sh ├── fvm_ipa_nosign.sh ├── para.sh ├── reid.sh ├── thin-payload.sh ├── version.pl ├── win.bat ├── win_comp.bat └── zip.sh └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake ├── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources │ └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h └── sqlite3.dll /.fvm/fvm_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.fvm/fvm_config.json -------------------------------------------------------------------------------- /.fvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.fvmrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/README_cn.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /analysis_options_old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/analysis_options_old.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/honjow/eros_fe/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/kotlin/com/honjow/eros_fe/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/honjow/fehviewer/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/kotlin/com/honjow/fehviewer/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/drawable-v24/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/drawable-v24/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/drawable/launch_background_dark.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-b+zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/values-b+zh/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/keystore.properties.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/keystore.properties.sample -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/afdian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/assets/images/afdian.png -------------------------------------------------------------------------------- /assets/images/dundun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/assets/images/dundun.png -------------------------------------------------------------------------------- /assets/templates/epub/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/assets/templates/epub/META-INF/container.xml -------------------------------------------------------------------------------- /assets/templates/epub/OEBPS/content/index.html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/assets/templates/epub/OEBPS/content/index.html.tpl -------------------------------------------------------------------------------- /assets/templates/epub/OEBPS/content/resources/index_0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/assets/templates/epub/OEBPS/content/resources/index_0.css -------------------------------------------------------------------------------- /assets/templates/epub/OEBPS/metadata.xml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/assets/templates/epub/OEBPS/metadata.xml.tpl -------------------------------------------------------------------------------- /assets/templates/epub/OEBPS/toc.ncx.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/assets/templates/epub/OEBPS/toc.ncx.tpl -------------------------------------------------------------------------------- /assets/templates/epub/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip 2 | -------------------------------------------------------------------------------- /changelog/v1.4.10+520.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.4.10+520.md -------------------------------------------------------------------------------- /changelog/v1.4.11+521.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.4.11+521.md -------------------------------------------------------------------------------- /changelog/v1.4.12+522.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.4.12+522.md -------------------------------------------------------------------------------- /changelog/v1.4.13+523.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.4.13+523.md -------------------------------------------------------------------------------- /changelog/v1.4.9+519.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.4.9+519.md -------------------------------------------------------------------------------- /changelog/v1.5.0+530.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.5.0+530.md -------------------------------------------------------------------------------- /changelog/v1.5.1+531.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.5.1+531.md -------------------------------------------------------------------------------- /changelog/v1.5.2+532.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.5.2+532.md -------------------------------------------------------------------------------- /changelog/v1.5.4+534.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.5.4+534.md -------------------------------------------------------------------------------- /changelog/v1.6.0+540.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.6.0+540.md -------------------------------------------------------------------------------- /changelog/v1.6.1+541.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.6.1+541.md -------------------------------------------------------------------------------- /changelog/v1.6.2+542.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.6.2+542.md -------------------------------------------------------------------------------- /changelog/v1.6.3+543.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.6.3+543.md -------------------------------------------------------------------------------- /changelog/v1.7.0+544.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.7.0+544.md -------------------------------------------------------------------------------- /changelog/v1.7.1+546.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.7.1+546.md -------------------------------------------------------------------------------- /changelog/v1.7.2+547.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.7.2+547.md -------------------------------------------------------------------------------- /changelog/v1.7.3+548.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.7.3+548.md -------------------------------------------------------------------------------- /changelog/v1.7.4+549.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.7.4+549.md -------------------------------------------------------------------------------- /changelog/v1.7.5+550.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.7.5+550.md -------------------------------------------------------------------------------- /changelog/v1.7.6+551.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.7.6+551.md -------------------------------------------------------------------------------- /changelog/v1.7.7+552.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.7.7+552.md -------------------------------------------------------------------------------- /changelog/v1.8.0+553.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.8.0+553.md -------------------------------------------------------------------------------- /changelog/v1.8.1+554.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.8.1+554.md -------------------------------------------------------------------------------- /changelog/v1.8.2+556.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.8.2+556.md -------------------------------------------------------------------------------- /changelog/v1.8.3+557.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.8.3+557.md -------------------------------------------------------------------------------- /changelog/v1.9.0+558.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.9.0+558.md -------------------------------------------------------------------------------- /changelog/v1.9.1+565.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/changelog/v1.9.1+565.md -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/devtools_options.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/ephemeral/flutter_lldb_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Flutter/ephemeral/flutter_lldb_helper.py -------------------------------------------------------------------------------- /ios/Flutter/ephemeral/flutter_lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Flutter/ephemeral/flutter_lldbinit -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/EHShareExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/EHShareExtension.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/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/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x-1.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt-1.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x-1.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x-1.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_76pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_76pt.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_76pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_76pt@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon_83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/SecurityBlurEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/SecurityBlurEffect.swift -------------------------------------------------------------------------------- /ios/Runner/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ios/Runner/fehviewer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/fehviewer.entitlements -------------------------------------------------------------------------------- /ios/Runner/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ios/Runner/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/ja.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ios/Runner/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/ko.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ios/Runner/ru.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/ru.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ios/Runner/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/Runner/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ios/Runner/zh-Hant.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /ios/shareExtension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/shareExtension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /ios/shareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/shareExtension/Info.plist -------------------------------------------------------------------------------- /ios/shareExtension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/ios/shareExtension/ShareViewController.swift -------------------------------------------------------------------------------- /ios/shareExtension/ja.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/shareExtension/ru.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jsons/advance_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/advance_search.json -------------------------------------------------------------------------------- /jsons/auto_lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/auto_lock.json -------------------------------------------------------------------------------- /jsons/block_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/block_config.json -------------------------------------------------------------------------------- /jsons/block_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/block_rule.json -------------------------------------------------------------------------------- /jsons/cache_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/cache_config.json -------------------------------------------------------------------------------- /jsons/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/chapter.json -------------------------------------------------------------------------------- /jsons/commit_vote_res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/commit_vote_res.json -------------------------------------------------------------------------------- /jsons/custom_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/custom_profile.json -------------------------------------------------------------------------------- /jsons/custom_tab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/custom_tab_config.json -------------------------------------------------------------------------------- /jsons/dns_cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/dns_cache.json -------------------------------------------------------------------------------- /jsons/dns_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/dns_config.json -------------------------------------------------------------------------------- /jsons/download_archiver_task_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/download_archiver_task_info.json -------------------------------------------------------------------------------- /jsons/download_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/download_config.json -------------------------------------------------------------------------------- /jsons/eh_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/eh_config.json -------------------------------------------------------------------------------- /jsons/eh_home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/eh_home.json -------------------------------------------------------------------------------- /jsons/eh_layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "sideProportion?": 0.0 3 | } -------------------------------------------------------------------------------- /jsons/eh_mytag_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/eh_mytag_set.json -------------------------------------------------------------------------------- /jsons/eh_mytags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/eh_mytags.json -------------------------------------------------------------------------------- /jsons/eh_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/eh_profile.json -------------------------------------------------------------------------------- /jsons/eh_setting_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/eh_setting_item.json -------------------------------------------------------------------------------- /jsons/eh_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/eh_settings.json -------------------------------------------------------------------------------- /jsons/eh_usertag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/eh_usertag.json -------------------------------------------------------------------------------- /jsons/fav_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/fav_add.json -------------------------------------------------------------------------------- /jsons/fav_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "lastIndex?": 0 3 | } -------------------------------------------------------------------------------- /jsons/favcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/favcat.json -------------------------------------------------------------------------------- /jsons/gallery_cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/gallery_cache.json -------------------------------------------------------------------------------- /jsons/gallery_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/gallery_comment.json -------------------------------------------------------------------------------- /jsons/gallery_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/gallery_image.json -------------------------------------------------------------------------------- /jsons/gallery_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/gallery_list.json -------------------------------------------------------------------------------- /jsons/gallery_provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/gallery_provider.json -------------------------------------------------------------------------------- /jsons/gallery_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/gallery_tag.json -------------------------------------------------------------------------------- /jsons/gallery_torrent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/gallery_torrent.json -------------------------------------------------------------------------------- /jsons/history_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/history_index.json -------------------------------------------------------------------------------- /jsons/history_index_gid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/history_index_gid.json -------------------------------------------------------------------------------- /jsons/image_hide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/image_hide.json -------------------------------------------------------------------------------- /jsons/item_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/item_config.json -------------------------------------------------------------------------------- /jsons/layout_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/layout_config.json -------------------------------------------------------------------------------- /jsons/local_fav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/local_fav.json -------------------------------------------------------------------------------- /jsons/mpv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/mpv.json -------------------------------------------------------------------------------- /jsons/mvp_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/mvp_image.json -------------------------------------------------------------------------------- /jsons/mysql_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/mysql_config.json -------------------------------------------------------------------------------- /jsons/mysql_connection_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/mysql_connection_info.json -------------------------------------------------------------------------------- /jsons/openl_translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/openl_translation.json -------------------------------------------------------------------------------- /jsons/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/profile.json -------------------------------------------------------------------------------- /jsons/simple_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/simple_tag.json -------------------------------------------------------------------------------- /jsons/tab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/tab_config.json -------------------------------------------------------------------------------- /jsons/tab_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/tab_item.json -------------------------------------------------------------------------------- /jsons/tag_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/tag_group.json -------------------------------------------------------------------------------- /jsons/uconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/uconfig.json -------------------------------------------------------------------------------- /jsons/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/user.json -------------------------------------------------------------------------------- /jsons/webdav_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/jsons/webdav_profile.json -------------------------------------------------------------------------------- /lib/common/cache/blur_hash_cache.cached.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/cache/blur_hash_cache.cached.dart -------------------------------------------------------------------------------- /lib/common/cache/blur_hash_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/cache/blur_hash_cache.dart -------------------------------------------------------------------------------- /lib/common/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/colors.dart -------------------------------------------------------------------------------- /lib/common/controller/advance_search_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/advance_search_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/archiver_download_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/archiver_download_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/auto_lock_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/auto_lock_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/avatar_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/avatar_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/base_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/base_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/block_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/block_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/cache_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/cache_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/debug_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/debug_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/download/download_monitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/download/download_monitor.dart -------------------------------------------------------------------------------- /lib/common/controller/download/download_path_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/download/download_path_manager.dart -------------------------------------------------------------------------------- /lib/common/controller/download/download_task_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/download/download_task_manager.dart -------------------------------------------------------------------------------- /lib/common/controller/download/gallery_slot_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/download/gallery_slot_manager.dart -------------------------------------------------------------------------------- /lib/common/controller/download/image_download_processor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/download/image_download_processor.dart -------------------------------------------------------------------------------- /lib/common/controller/download/storage_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/download/storage_adapter.dart -------------------------------------------------------------------------------- /lib/common/controller/download_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/download_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/download_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/download_state.dart -------------------------------------------------------------------------------- /lib/common/controller/gallerycache_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/gallerycache_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/history_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/history_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/image_block_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/image_block_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/localfav_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/localfav_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/log_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/log_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/mysql_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/mysql_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/quicksearch_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/quicksearch_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/tag_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/tag_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/tag_trans_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/tag_trans_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/update_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/update_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/user_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/user_controller.dart -------------------------------------------------------------------------------- /lib/common/controller/webdav_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/controller/webdav_controller.dart -------------------------------------------------------------------------------- /lib/common/enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/enum.dart -------------------------------------------------------------------------------- /lib/common/epub/epub_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/epub/epub_builder.dart -------------------------------------------------------------------------------- /lib/common/global.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/global.dart -------------------------------------------------------------------------------- /lib/common/parser/archiver_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/archiver_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/eh_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/eh_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/gallery_detail_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/gallery_detail_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/gallery_fav_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/gallery_fav_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/gallery_list_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/gallery_list_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/home_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/home_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/image_page_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/image_page_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/mpv_image_dispatch_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/mpv_image_dispatch_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/mpv_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/mpv_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/mytags_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/mytags_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/profile_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/profile_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/search_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/search_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/showpage_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/showpage_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/torrent_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/torrent_parser.dart -------------------------------------------------------------------------------- /lib/common/parser/user_profile_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/parser/user_profile_parser.dart -------------------------------------------------------------------------------- /lib/common/service/base_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/service/base_service.dart -------------------------------------------------------------------------------- /lib/common/service/controller_tag_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/service/controller_tag_service.dart -------------------------------------------------------------------------------- /lib/common/service/dns_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/service/dns_service.dart -------------------------------------------------------------------------------- /lib/common/service/ehsetting_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/service/ehsetting_service.dart -------------------------------------------------------------------------------- /lib/common/service/layout_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/service/layout_service.dart -------------------------------------------------------------------------------- /lib/common/service/locale_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/service/locale_service.dart -------------------------------------------------------------------------------- /lib/common/service/theme_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/service/theme_service.dart -------------------------------------------------------------------------------- /lib/common/update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/common/update.dart -------------------------------------------------------------------------------- /lib/component/exception/error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/component/exception/error.dart -------------------------------------------------------------------------------- /lib/component/quene_task/quene_task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/component/quene_task/quene_task.dart -------------------------------------------------------------------------------- /lib/component/setting_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/component/setting_base.dart -------------------------------------------------------------------------------- /lib/config/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/config/config.dart -------------------------------------------------------------------------------- /lib/config/config.dart.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/config/config.dart.sample -------------------------------------------------------------------------------- /lib/const/const.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/const/const.dart -------------------------------------------------------------------------------- /lib/const/locale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/const/locale.dart -------------------------------------------------------------------------------- /lib/const/storages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/const/storages.dart -------------------------------------------------------------------------------- /lib/const/theme_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/const/theme_colors.dart -------------------------------------------------------------------------------- /lib/extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/extension.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/generated/intl/messages_all.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/generated/intl/messages_en.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_ja.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/generated/intl/messages_ja.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_ko_KR.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/generated/intl/messages_ko_KR.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_ru.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/generated/intl/messages_ru.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_zh_CN.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/generated/intl/messages_zh_CN.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_zh_TW.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/generated/intl/messages_zh_TW.dart -------------------------------------------------------------------------------- /lib/generated/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/generated/l10n.dart -------------------------------------------------------------------------------- /lib/get_init.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/get_init.dart -------------------------------------------------------------------------------- /lib/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/index.dart -------------------------------------------------------------------------------- /lib/isolate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/isolate.dart -------------------------------------------------------------------------------- /lib/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/l10n/intl_en.arb -------------------------------------------------------------------------------- /lib/l10n/intl_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/l10n/intl_ja.arb -------------------------------------------------------------------------------- /lib/l10n/intl_ko_KR.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/l10n/intl_ko_KR.arb -------------------------------------------------------------------------------- /lib/l10n/intl_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/l10n/intl_ru.arb -------------------------------------------------------------------------------- /lib/l10n/intl_zh_CN.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/l10n/intl_zh_CN.arb -------------------------------------------------------------------------------- /lib/l10n/intl_zh_TW.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/l10n/intl_zh_TW.arb -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/advance_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/advance_search.dart -------------------------------------------------------------------------------- /lib/models/auto_lock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/auto_lock.dart -------------------------------------------------------------------------------- /lib/models/base/eh_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/base/eh_models.dart -------------------------------------------------------------------------------- /lib/models/blockRule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/blockRule.dart -------------------------------------------------------------------------------- /lib/models/block_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/block_config.dart -------------------------------------------------------------------------------- /lib/models/block_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/block_rule.dart -------------------------------------------------------------------------------- /lib/models/cache_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/cache_config.dart -------------------------------------------------------------------------------- /lib/models/chapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/chapter.dart -------------------------------------------------------------------------------- /lib/models/commit_vote_res.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/commit_vote_res.dart -------------------------------------------------------------------------------- /lib/models/custom_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/custom_profile.dart -------------------------------------------------------------------------------- /lib/models/custom_tab_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/custom_tab_config.dart -------------------------------------------------------------------------------- /lib/models/customtab_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/customtab_config.dart -------------------------------------------------------------------------------- /lib/models/dns_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/dns_cache.dart -------------------------------------------------------------------------------- /lib/models/dns_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/dns_config.dart -------------------------------------------------------------------------------- /lib/models/download_archiver_task_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/download_archiver_task_info.dart -------------------------------------------------------------------------------- /lib/models/download_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/download_config.dart -------------------------------------------------------------------------------- /lib/models/eh_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_config.dart -------------------------------------------------------------------------------- /lib/models/eh_home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_home.dart -------------------------------------------------------------------------------- /lib/models/eh_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_layout.dart -------------------------------------------------------------------------------- /lib/models/eh_mytag_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_mytag_set.dart -------------------------------------------------------------------------------- /lib/models/eh_mytags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_mytags.dart -------------------------------------------------------------------------------- /lib/models/eh_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_profile.dart -------------------------------------------------------------------------------- /lib/models/eh_setting_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_setting_item.dart -------------------------------------------------------------------------------- /lib/models/eh_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_settings.dart -------------------------------------------------------------------------------- /lib/models/eh_usertag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/eh_usertag.dart -------------------------------------------------------------------------------- /lib/models/fav_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/fav_add.dart -------------------------------------------------------------------------------- /lib/models/fav_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/fav_config.dart -------------------------------------------------------------------------------- /lib/models/favcat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/favcat.dart -------------------------------------------------------------------------------- /lib/models/gallery_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/gallery_cache.dart -------------------------------------------------------------------------------- /lib/models/gallery_comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/gallery_comment.dart -------------------------------------------------------------------------------- /lib/models/gallery_comment_span.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/gallery_comment_span.dart -------------------------------------------------------------------------------- /lib/models/gallery_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/gallery_image.dart -------------------------------------------------------------------------------- /lib/models/gallery_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/gallery_list.dart -------------------------------------------------------------------------------- /lib/models/gallery_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/gallery_provider.dart -------------------------------------------------------------------------------- /lib/models/gallery_tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/gallery_tag.dart -------------------------------------------------------------------------------- /lib/models/gallery_torrent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/gallery_torrent.dart -------------------------------------------------------------------------------- /lib/models/history_index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/history_index.dart -------------------------------------------------------------------------------- /lib/models/history_index_gid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/history_index_gid.dart -------------------------------------------------------------------------------- /lib/models/image_hide.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/image_hide.dart -------------------------------------------------------------------------------- /lib/models/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/index.dart -------------------------------------------------------------------------------- /lib/models/item_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/item_config.dart -------------------------------------------------------------------------------- /lib/models/layout_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/layout_config.dart -------------------------------------------------------------------------------- /lib/models/list_item_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/list_item_config.dart -------------------------------------------------------------------------------- /lib/models/local_fav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/local_fav.dart -------------------------------------------------------------------------------- /lib/models/mpv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/mpv.dart -------------------------------------------------------------------------------- /lib/models/mvp_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/mvp_image.dart -------------------------------------------------------------------------------- /lib/models/mysql_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/mysql_config.dart -------------------------------------------------------------------------------- /lib/models/mysql_connection_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/mysql_connection_info.dart -------------------------------------------------------------------------------- /lib/models/openl_translation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/openl_translation.dart -------------------------------------------------------------------------------- /lib/models/profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/profile.dart -------------------------------------------------------------------------------- /lib/models/simple_tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/simple_tag.dart -------------------------------------------------------------------------------- /lib/models/tab_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/tab_config.dart -------------------------------------------------------------------------------- /lib/models/tab_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/tab_item.dart -------------------------------------------------------------------------------- /lib/models/tag_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/tag_group.dart -------------------------------------------------------------------------------- /lib/models/uconfig.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/uconfig.dart -------------------------------------------------------------------------------- /lib/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/user.dart -------------------------------------------------------------------------------- /lib/models/webdav_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/models/webdav_profile.dart -------------------------------------------------------------------------------- /lib/network/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/api.dart -------------------------------------------------------------------------------- /lib/network/app_dio/app_dio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/app_dio.dart -------------------------------------------------------------------------------- /lib/network/app_dio/dio_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/dio_file_service.dart -------------------------------------------------------------------------------- /lib/network/app_dio/dio_http_cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/dio_http_cli.dart -------------------------------------------------------------------------------- /lib/network/app_dio/exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/exception.dart -------------------------------------------------------------------------------- /lib/network/app_dio/http_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/http_config.dart -------------------------------------------------------------------------------- /lib/network/app_dio/http_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/http_response.dart -------------------------------------------------------------------------------- /lib/network/app_dio/http_transformer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/http_transformer.dart -------------------------------------------------------------------------------- /lib/network/app_dio/pdio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/pdio.dart -------------------------------------------------------------------------------- /lib/network/app_dio/proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/app_dio/proxy.dart -------------------------------------------------------------------------------- /lib/network/dio_interceptor/domain_fronting/domain_fronting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/dio_interceptor/domain_fronting/domain_fronting.dart -------------------------------------------------------------------------------- /lib/network/dio_interceptor/eh_cookie_interceptor/eh_cookie_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/dio_interceptor/eh_cookie_interceptor/eh_cookie_interceptor.dart -------------------------------------------------------------------------------- /lib/network/dio_interceptor/rate_limit/rate_limit_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/dio_interceptor/rate_limit/rate_limit_interceptor.dart -------------------------------------------------------------------------------- /lib/network/dio_interceptor/rate_limit/sliding_window_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/dio_interceptor/rate_limit/sliding_window_interceptor.dart -------------------------------------------------------------------------------- /lib/network/dio_interceptor/rate_limit/token_bucket_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/dio_interceptor/rate_limit/token_bucket_interceptor.dart -------------------------------------------------------------------------------- /lib/network/request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/network/request.dart -------------------------------------------------------------------------------- /lib/pages/controller/fav_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/controller/fav_controller.dart -------------------------------------------------------------------------------- /lib/pages/controller/favorite_sel_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/controller/favorite_sel_controller.dart -------------------------------------------------------------------------------- /lib/pages/filter/filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/filter/filter.dart -------------------------------------------------------------------------------- /lib/pages/filter/gallery_filter_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/filter/gallery_filter_view.dart -------------------------------------------------------------------------------- /lib/pages/gallery/comm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/comm.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/all_thumbnails_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/all_thumbnails_controller.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/archiver_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/archiver_controller.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/comment_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/comment_controller.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/gallery_fav_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/gallery_fav_controller.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/gallery_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/gallery_page_controller.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/gallery_page_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/gallery_page_state.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/rate_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/rate_controller.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/taginfo_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/taginfo_controller.dart -------------------------------------------------------------------------------- /lib/pages/gallery/controller/torrent_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/controller/torrent_controller.dart -------------------------------------------------------------------------------- /lib/pages/gallery/gallery_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/gallery_repository.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/add_tags_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/add_tags_page.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/all_thumbnails_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/all_thumbnails_page.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/archiver_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/archiver_dialog.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/comment_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/comment_item.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/comment_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/comment_page.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/const.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/const.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/gallery_favcat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/gallery_favcat.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/gallery_info_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/gallery_info_page.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/gallery_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/gallery_widget.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/header.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/rate_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/rate_dialog.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/sliver/gallery_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/sliver/gallery_page.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/sliver/gallery_page_sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/sliver/gallery_page_sliver.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/sliver/header_sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/sliver/header_sliver.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/sliver/slivers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/sliver/slivers.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/taginfo_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/taginfo_dialog.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/thumb_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/thumb_box.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/thumb_clipper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/thumb_clipper.dart -------------------------------------------------------------------------------- /lib/pages/gallery/view/torrent_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/gallery/view/torrent_dialog.dart -------------------------------------------------------------------------------- /lib/pages/image_view/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/common.dart -------------------------------------------------------------------------------- /lib/pages/image_view/controller/view_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/controller/view_controller.dart -------------------------------------------------------------------------------- /lib/pages/image_view/controller/view_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/controller/view_state.dart -------------------------------------------------------------------------------- /lib/pages/image_view/view/eh_flutter_list_view_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/view/eh_flutter_list_view_delegate.dart -------------------------------------------------------------------------------- /lib/pages/image_view/view/hero.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/view/hero.dart -------------------------------------------------------------------------------- /lib/pages/image_view/view/image_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/view/image_list_view.dart -------------------------------------------------------------------------------- /lib/pages/image_view/view/image_page_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/view/image_page_view.dart -------------------------------------------------------------------------------- /lib/pages/image_view/view/image_page_view_ex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/view/image_page_view_ex.dart -------------------------------------------------------------------------------- /lib/pages/image_view/view/view_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/view/view_image.dart -------------------------------------------------------------------------------- /lib/pages/image_view/view/view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/view/view_page.dart -------------------------------------------------------------------------------- /lib/pages/image_view/view/view_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/image_view/view/view_widget.dart -------------------------------------------------------------------------------- /lib/pages/item/controller/downloaditem_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/controller/downloaditem_controller.dart -------------------------------------------------------------------------------- /lib/pages/item/controller/galleryitem_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/controller/galleryitem_controller.dart -------------------------------------------------------------------------------- /lib/pages/item/download_archiver_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/download_archiver_item.dart -------------------------------------------------------------------------------- /lib/pages/item/download_gallery_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/download_gallery_item.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_clipper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_clipper.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item_debug_simple.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item_debug_simple.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item_flow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item_flow.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item_flow_large.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item_flow_large.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item_grid.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item_grid_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item_grid_placeholder.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item_placeholder.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item_simple.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item_simple.dart -------------------------------------------------------------------------------- /lib/pages/item/gallery_item_simple_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/gallery_item_simple_placeholder.dart -------------------------------------------------------------------------------- /lib/pages/item/item_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/item_base.dart -------------------------------------------------------------------------------- /lib/pages/item/setting_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/setting_item.dart -------------------------------------------------------------------------------- /lib/pages/item/user_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/item/user_item.dart -------------------------------------------------------------------------------- /lib/pages/login/controller/login_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/login/controller/login_controller.dart -------------------------------------------------------------------------------- /lib/pages/login/view/login_cookie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/login/view/login_cookie.dart -------------------------------------------------------------------------------- /lib/pages/login/view/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/login/view/login_page.dart -------------------------------------------------------------------------------- /lib/pages/login/view/web_login_in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/login/view/web_login_in.dart -------------------------------------------------------------------------------- /lib/pages/setting/about_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/about_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/advanced_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/advanced_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/avatar_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/avatar_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/block/block_rule_edit_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/block/block_rule_edit_dialog.dart -------------------------------------------------------------------------------- /lib/pages/setting/block/block_rule_edit_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/block/block_rule_edit_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/block/block_rules_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/block/block_rules_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/block/blockers_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/block/blockers_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/const.dart: -------------------------------------------------------------------------------- 1 | const kIndicatorRadius = 20.0; 2 | -------------------------------------------------------------------------------- /lib/pages/setting/controller/eh_mysettings_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/controller/eh_mysettings_controller.dart -------------------------------------------------------------------------------- /lib/pages/setting/controller/eh_mytags_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/controller/eh_mytags_controller.dart -------------------------------------------------------------------------------- /lib/pages/setting/controller/tab_setting_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/controller/tab_setting_controller.dart -------------------------------------------------------------------------------- /lib/pages/setting/controller/web_setting_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/controller/web_setting_controller.dart -------------------------------------------------------------------------------- /lib/pages/setting/custom_hosts_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/custom_hosts_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/download_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/download_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/eh_mysettings_items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/eh_mysettings_items.dart -------------------------------------------------------------------------------- /lib/pages/setting/eh_mysettings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/eh_mysettings_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/eh_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/eh_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/image_block/image_block_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/image_block/image_block_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/image_block/phash_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/image_block/phash_list_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/item_width_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/item_width_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/layout_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/layout_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/license_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/license_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/log_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/log_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/log_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/log_view_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/mysql/mysql_login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/mysql/mysql_login.dart -------------------------------------------------------------------------------- /lib/pages/setting/mysql/mysql_sync_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/mysql/mysql_sync_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/mytags/eh_mytags_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/mytags/eh_mytags_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/mytags/eh_usertag_edit_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/mytags/eh_usertag_edit_dialog.dart -------------------------------------------------------------------------------- /lib/pages/setting/mytags/eh_usertag_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/mytags/eh_usertag_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/mytags/user_tag_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/mytags/user_tag_item.dart -------------------------------------------------------------------------------- /lib/pages/setting/proxy_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/proxy_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/read_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/read_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/search_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/search_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/security_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/security_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/setting_items/excluded_language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/setting_items/excluded_language.dart -------------------------------------------------------------------------------- /lib/pages/setting/setting_items/multi_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/setting_items/multi_selector.dart -------------------------------------------------------------------------------- /lib/pages/setting/setting_items/selector_Item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/setting_items/selector_Item.dart -------------------------------------------------------------------------------- /lib/pages/setting/setting_items/single_input_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/setting_items/single_input_item.dart -------------------------------------------------------------------------------- /lib/pages/setting/setting_items/single_input_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/setting_items/single_input_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/tabbar_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/tabbar_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/tag_translat_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/tag_translat_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/webdav/login_webdav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/webdav/login_webdav.dart -------------------------------------------------------------------------------- /lib/pages/setting/webdav/webdav_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/webdav/webdav_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/setting/webview/eh_tagset_edit_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/webview/eh_tagset_edit_dialog.dart -------------------------------------------------------------------------------- /lib/pages/setting/webview/eh_webview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/webview/eh_webview.dart -------------------------------------------------------------------------------- /lib/pages/setting/webview/mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/webview/mode.dart -------------------------------------------------------------------------------- /lib/pages/setting/webview/mytags_in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/webview/mytags_in.dart -------------------------------------------------------------------------------- /lib/pages/setting/webview/web_mysetting_in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/setting/webview/web_mysetting_in.dart -------------------------------------------------------------------------------- /lib/pages/tab/bindings/splash_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/bindings/splash_binding.dart -------------------------------------------------------------------------------- /lib/pages/tab/bindings/tabhome_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/bindings/tabhome_binding.dart -------------------------------------------------------------------------------- /lib/pages/tab/comm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/comm.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/default_tabview_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/default_tabview_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/download_view_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/download_view_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/enum.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/favorite/favorite_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/favorite/favorite_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/favorite/favorite_sublist_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/favorite/favorite_sublist_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/favorite/favorite_tabbar_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/favorite/favorite_tabbar_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/gallery_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/gallery_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/gallery_filter_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/gallery_filter_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/group/custom_sublist_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/group/custom_sublist_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/group/custom_tabbar_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/group/custom_tabbar_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/group/profile_edit_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/group/profile_edit_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/history_view_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/history_view_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/popular_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/popular_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/search_image_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/search_image_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/search_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/search_page_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/setting_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/setting_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/splash_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/splash_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/tabhome_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/tabhome_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/tabview_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/tabview_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/toplist_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/toplist_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/unlock_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/unlock_page_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/controller/watched_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/controller/watched_controller.dart -------------------------------------------------------------------------------- /lib/pages/tab/fetch_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/fetch_list.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/constants.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/donwload_labels_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/donwload_labels_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/download_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/download_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/empty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/empty.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/favorite_sel_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/favorite_sel_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/gallery_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/gallery_base.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/history_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/history_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/home_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/home_page_large.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/home_page_large.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/home_page_small.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/home_page_small.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/list/grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/list/grid.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/list/sliver_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/list/sliver_list.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/list/tab_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/list/tab_base.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/list/waterfall_flow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/list/waterfall_flow.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/quick_search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/quick_search_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/quick_search_page_o.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/quick_search_page_o.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/search_image_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/search_image_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/search_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/setting_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/splash_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/tabbar/custom_profile_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/tabbar/custom_profile_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/tabbar/custom_profiles_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/tabbar/custom_profiles_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/tabbar/custom_sub_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/tabbar/custom_sub_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/tabbar/custom_tabbar_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/tabbar/custom_tabbar_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/tabbar/favorite_sub_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/tabbar/favorite_sub_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/tabbar/favorite_tabbar_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/tabbar/favorite_tabbar_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/tabbar/search_text_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/tabbar/search_text_dialog.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/toplist_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/toplist_page.dart -------------------------------------------------------------------------------- /lib/pages/tab/view/unlock_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/pages/tab/view/unlock_page.dart -------------------------------------------------------------------------------- /lib/route/app_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/route/app_pages.dart -------------------------------------------------------------------------------- /lib/route/eh_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/route/eh_observer.dart -------------------------------------------------------------------------------- /lib/route/first_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/route/first_observer.dart -------------------------------------------------------------------------------- /lib/route/main_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/route/main_observer.dart -------------------------------------------------------------------------------- /lib/route/navigator_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/route/navigator_util.dart -------------------------------------------------------------------------------- /lib/route/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/route/routes.dart -------------------------------------------------------------------------------- /lib/route/second_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/route/second_observer.dart -------------------------------------------------------------------------------- /lib/store/archive_async.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/archive_async.dart -------------------------------------------------------------------------------- /lib/store/db/entity/gallery_image_task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/gallery_image_task.dart -------------------------------------------------------------------------------- /lib/store/db/entity/gallery_image_task.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/gallery_image_task.g.dart -------------------------------------------------------------------------------- /lib/store/db/entity/gallery_task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/gallery_task.dart -------------------------------------------------------------------------------- /lib/store/db/entity/gallery_task.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/gallery_task.g.dart -------------------------------------------------------------------------------- /lib/store/db/entity/tag_translat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/tag_translat.dart -------------------------------------------------------------------------------- /lib/store/db/entity/tag_translat.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/tag_translat.g.dart -------------------------------------------------------------------------------- /lib/store/db/entity/tag_translate_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/tag_translate_info.dart -------------------------------------------------------------------------------- /lib/store/db/entity/tag_translate_info.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/tag_translate_info.g.dart -------------------------------------------------------------------------------- /lib/store/db/entity/view_history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/view_history.dart -------------------------------------------------------------------------------- /lib/store/db/entity/view_history.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/entity/view_history.g.dart -------------------------------------------------------------------------------- /lib/store/db/isar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/isar.dart -------------------------------------------------------------------------------- /lib/store/db/isar_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/isar_helper.dart -------------------------------------------------------------------------------- /lib/store/db/isar_isolate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/db/isar_isolate.dart -------------------------------------------------------------------------------- /lib/store/hive/hive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/hive/hive.dart -------------------------------------------------------------------------------- /lib/store/hive/hive_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/hive/hive_cache.dart -------------------------------------------------------------------------------- /lib/store/mysql/const.dart: -------------------------------------------------------------------------------- 1 | const kVersion = 1; 2 | -------------------------------------------------------------------------------- /lib/store/mysql/migration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/mysql/migration.dart -------------------------------------------------------------------------------- /lib/store/mysql/mysql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/store/mysql/mysql.dart -------------------------------------------------------------------------------- /lib/type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/type.dart -------------------------------------------------------------------------------- /lib/utils/app_cupertino_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/app_cupertino_localizations.dart -------------------------------------------------------------------------------- /lib/utils/app_cupertino_localizations_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/app_cupertino_localizations_delegate.dart -------------------------------------------------------------------------------- /lib/utils/bcd_code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/bcd_code.dart -------------------------------------------------------------------------------- /lib/utils/chapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/chapter.dart -------------------------------------------------------------------------------- /lib/utils/cust_lib/flutter_egg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/cust_lib/flutter_egg.dart -------------------------------------------------------------------------------- /lib/utils/cust_lib/flutter_linkify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/cust_lib/flutter_linkify.dart -------------------------------------------------------------------------------- /lib/utils/cust_lib/persistent_header_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/cust_lib/persistent_header_builder.dart -------------------------------------------------------------------------------- /lib/utils/cust_lib/selectable_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/cust_lib/selectable_text.dart -------------------------------------------------------------------------------- /lib/utils/cust_lib/sliver/element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/cust_lib/sliver/element.dart -------------------------------------------------------------------------------- /lib/utils/cust_lib/sliver/render.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/cust_lib/sliver/render.dart -------------------------------------------------------------------------------- /lib/utils/cust_lib/sliver/sliver_persistent_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/cust_lib/sliver/sliver_persistent_header.dart -------------------------------------------------------------------------------- /lib/utils/debounce.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/debounce.dart -------------------------------------------------------------------------------- /lib/utils/dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/dialog.dart -------------------------------------------------------------------------------- /lib/utils/dns_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/dns_util.dart -------------------------------------------------------------------------------- /lib/utils/eh_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/eh_interceptor.dart -------------------------------------------------------------------------------- /lib/utils/event_bus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/event_bus.dart -------------------------------------------------------------------------------- /lib/utils/http_override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/http_override.dart -------------------------------------------------------------------------------- /lib/utils/https_proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/https_proxy.dart -------------------------------------------------------------------------------- /lib/utils/icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/icon.dart -------------------------------------------------------------------------------- /lib/utils/image_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/image_util.dart -------------------------------------------------------------------------------- /lib/utils/import_export.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/import_export.dart -------------------------------------------------------------------------------- /lib/utils/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/logger.dart -------------------------------------------------------------------------------- /lib/utils/logger/pretty_printer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/logger/pretty_printer.dart -------------------------------------------------------------------------------- /lib/utils/morse_code_translator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/morse_code_translator.dart -------------------------------------------------------------------------------- /lib/utils/openl/language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/openl/language.dart -------------------------------------------------------------------------------- /lib/utils/openl/openl_translator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/openl/openl_translator.dart -------------------------------------------------------------------------------- /lib/utils/openl/translator_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/openl/translator_helper.dart -------------------------------------------------------------------------------- /lib/utils/optional.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/optional.dart -------------------------------------------------------------------------------- /lib/utils/orientation_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/orientation_helper.dart -------------------------------------------------------------------------------- /lib/utils/p_hash/phash_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/p_hash/phash_base.dart -------------------------------------------------------------------------------- /lib/utils/p_hash/phash_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/p_hash/phash_helper.dart -------------------------------------------------------------------------------- /lib/utils/saf_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/saf_helper.dart -------------------------------------------------------------------------------- /lib/utils/sentry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/sentry.dart -------------------------------------------------------------------------------- /lib/utils/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/storage.dart -------------------------------------------------------------------------------- /lib/utils/time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/time.dart -------------------------------------------------------------------------------- /lib/utils/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/toast.dart -------------------------------------------------------------------------------- /lib/utils/utility.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/utility.dart -------------------------------------------------------------------------------- /lib/utils/vibrate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/utils/vibrate.dart -------------------------------------------------------------------------------- /lib/widget/animated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/animated.dart -------------------------------------------------------------------------------- /lib/widget/blur_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/blur_image.dart -------------------------------------------------------------------------------- /lib/widget/cupertino/list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/cupertino/list_tile.dart -------------------------------------------------------------------------------- /lib/widget/cupertino/sliver_list_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/cupertino/sliver_list_section.dart -------------------------------------------------------------------------------- /lib/widget/desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/desktop.dart -------------------------------------------------------------------------------- /lib/widget/eh_dark_cupertino_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/eh_dark_cupertino_theme.dart -------------------------------------------------------------------------------- /lib/widget/eh_linkify_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/eh_linkify_text.dart -------------------------------------------------------------------------------- /lib/widget/emoji_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/emoji_text.dart -------------------------------------------------------------------------------- /lib/widget/expandable_linkify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/expandable_linkify.dart -------------------------------------------------------------------------------- /lib/widget/expandable_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/expandable_text.dart -------------------------------------------------------------------------------- /lib/widget/image/eh_cached_network_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/image/eh_cached_network_image.dart -------------------------------------------------------------------------------- /lib/widget/image/eh_network_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/image/eh_network_image.dart -------------------------------------------------------------------------------- /lib/widget/image/extended_saf_image_privider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/image/extended_saf_image_privider.dart -------------------------------------------------------------------------------- /lib/widget/image/network_extended_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/image/network_extended_image.dart -------------------------------------------------------------------------------- /lib/widget/image/rect_image_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/image/rect_image_provider.dart -------------------------------------------------------------------------------- /lib/widget/image/saf_image_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/image/saf_image_provider.dart -------------------------------------------------------------------------------- /lib/widget/link_scroll_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/link_scroll_bar.dart -------------------------------------------------------------------------------- /lib/widget/link_scroll_bar_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/link_scroll_bar_controller.dart -------------------------------------------------------------------------------- /lib/widget/mouse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/mouse.dart -------------------------------------------------------------------------------- /lib/widget/preload_photo_view_gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/preload_photo_view_gallery.dart -------------------------------------------------------------------------------- /lib/widget/rating_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/rating_bar.dart -------------------------------------------------------------------------------- /lib/widget/refresh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/refresh.dart -------------------------------------------------------------------------------- /lib/widget/sys_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/sys_title.dart -------------------------------------------------------------------------------- /lib/widget/system_ui_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/system_ui_overlay.dart -------------------------------------------------------------------------------- /lib/widget/text_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/lib/widget/text_avatar.dart -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x@2x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x@2x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x@2x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x@2x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x@2x.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/Runner/ja.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/ja.lproj/MainMenu.strings -------------------------------------------------------------------------------- /macos/Runner/ko.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/ko.lproj/MainMenu.strings -------------------------------------------------------------------------------- /macos/Runner/ru.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/ru.lproj/MainMenu.strings -------------------------------------------------------------------------------- /macos/Runner/zh-Hans.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/zh-Hans.lproj/MainMenu.strings -------------------------------------------------------------------------------- /macos/Runner/zh-Hant.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/Runner/zh-Hant.lproj/MainMenu.strings -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /macos/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/macos/firebase_app_id_file.json -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshot/gallery1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/screenshot/gallery1.png -------------------------------------------------------------------------------- /screenshot/gallery2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/screenshot/gallery2.png -------------------------------------------------------------------------------- /screenshot/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/screenshot/home.png -------------------------------------------------------------------------------- /screenshot/read1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/screenshot/read1.png -------------------------------------------------------------------------------- /screenshot/read2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/screenshot/read2.png -------------------------------------------------------------------------------- /screenshot/search1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/screenshot/search1.png -------------------------------------------------------------------------------- /screenshot/search2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/screenshot/search2.png -------------------------------------------------------------------------------- /screenshot/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/screenshot/setting.png -------------------------------------------------------------------------------- /scripts/build_apk.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | flutter build apk --split-per-abi -------------------------------------------------------------------------------- /scripts/build_apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/build_apk.sh -------------------------------------------------------------------------------- /scripts/build_ipa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/build_ipa.sh -------------------------------------------------------------------------------- /scripts/build_ipa_.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/build_ipa_.sh -------------------------------------------------------------------------------- /scripts/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/build_macos.sh -------------------------------------------------------------------------------- /scripts/dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/dmg.sh -------------------------------------------------------------------------------- /scripts/dsym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/dsym.sh -------------------------------------------------------------------------------- /scripts/fvm_apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/fvm_apk.sh -------------------------------------------------------------------------------- /scripts/fvm_ipa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/fvm_ipa.sh -------------------------------------------------------------------------------- /scripts/fvm_ipa_nosign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/fvm_ipa_nosign.sh -------------------------------------------------------------------------------- /scripts/para.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/para.sh -------------------------------------------------------------------------------- /scripts/reid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/reid.sh -------------------------------------------------------------------------------- /scripts/thin-payload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/thin-payload.sh -------------------------------------------------------------------------------- /scripts/version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/version.pl -------------------------------------------------------------------------------- /scripts/win.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | flutter build windows --release && win_comp.bat -------------------------------------------------------------------------------- /scripts/win_comp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/win_comp.bat -------------------------------------------------------------------------------- /scripts/zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/scripts/zip.sh -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/runner/win32_window.h -------------------------------------------------------------------------------- /windows/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3003h/Eros-FE/HEAD/windows/sqlite3.dll --------------------------------------------------------------------------------