├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── COPYING ├── Gemfile ├── Gemfile.lock ├── PRIVACY_POLICY.md ├── README.md ├── TODO.md ├── app ├── .gitignore ├── .metadata ├── COPYING ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── eu │ │ │ │ │ └── weblibre │ │ │ │ │ └── gecko │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MyApplication.kt │ │ │ │ │ └── SearchBarWidgetProvider.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── drawable │ │ │ │ ├── button.xml │ │ │ │ ├── icon_with_size.xml │ │ │ │ ├── launch_background.xml │ │ │ │ ├── mdi_icon_brain.xml │ │ │ │ ├── mdi_icon_microphone_tint.xml │ │ │ │ ├── mdi_icon_search_web.xml │ │ │ │ ├── mdi_icon_text.xml │ │ │ │ └── search_text_field.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── launcher_icon.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ ├── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ └── search_bar_widget_info.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── bangs │ │ ├── assistant_bangs.json │ │ ├── bangs.json │ │ ├── custom.json │ │ ├── kagi_bangs.json │ │ └── last_sync.txt │ ├── fonts │ │ ├── RobotoMono-Regular.ttf │ │ └── tor-icons.ttf │ ├── icon │ │ ├── icon.png │ │ └── icon.svg │ ├── images │ │ └── ublock.svg │ ├── landing │ │ └── changelog.md │ └── preferences │ │ ├── builtin-bridges.json │ │ ├── rfp_targets.json │ │ └── settings.json ├── build.yaml ├── devtools_options.yaml ├── drift_schemas │ ├── bangs │ │ ├── drift_schema_v1.json │ │ ├── drift_schema_v2.json │ │ ├── drift_schema_v3.json │ │ └── drift_schema_v4.json │ ├── tabs │ │ └── drift_schema_v2.json │ ├── user │ │ ├── drift_schema_v1.json │ │ └── drift_schema_v2.json │ └── web_feed │ │ └── drift_schema_v1.json ├── lib │ ├── core │ │ ├── error_observer.dart │ │ ├── filesystem.dart │ │ ├── http_error_handler.dart │ │ ├── logger.dart │ │ ├── providers │ │ │ ├── app_state.dart │ │ │ ├── app_state.g.dart │ │ │ ├── defaults.dart │ │ │ ├── defaults.g.dart │ │ │ ├── format.dart │ │ │ ├── format.g.dart │ │ │ ├── global_drop.dart │ │ │ ├── global_drop.g.dart │ │ │ ├── router.dart │ │ │ └── router.g.dart │ │ ├── routing │ │ │ ├── routes.bangs.dart │ │ │ ├── routes.browser.dart │ │ │ ├── routes.dart │ │ │ ├── routes.feeds.dart │ │ │ ├── routes.g.dart │ │ │ ├── routes.settings.dart │ │ │ └── widgets │ │ │ │ └── dialog_page.dart │ │ └── uuid.dart │ ├── data │ │ ├── database │ │ │ ├── converters │ │ │ │ ├── color.dart │ │ │ │ ├── date_time_range.dart │ │ │ │ ├── icon_data.dart │ │ │ │ ├── string_list.dart │ │ │ │ └── uri.dart │ │ │ ├── extensions │ │ │ │ └── database_table_size.dart │ │ │ └── functions │ │ │ │ └── lexo_rank_functions.dart │ │ └── models │ │ │ ├── drag_data.dart │ │ │ ├── received_intent_parameter.dart │ │ │ ├── web_page_info.dart │ │ │ └── web_page_info.g.dart │ ├── domain │ │ ├── entities │ │ │ ├── equatable_image.dart │ │ │ ├── profile.dart │ │ │ └── profile.g.dart │ │ ├── repositories │ │ │ ├── locale_resolver.dart │ │ │ └── locale_resolver.g.dart │ │ └── services │ │ │ ├── app_initialization.dart │ │ │ ├── app_initialization.g.dart │ │ │ ├── generic_website.dart │ │ │ └── generic_website.g.dart │ ├── extensions │ │ ├── date_time.dart │ │ ├── duartion.dart │ │ ├── http_encoding.dart │ │ ├── image.dart │ │ ├── locale.dart │ │ ├── media_query.dart │ │ ├── ref_cache.dart │ │ ├── string.dart │ │ └── uri.dart │ ├── features │ │ ├── about │ │ │ ├── domain │ │ │ │ ├── providers.dart │ │ │ │ └── providers.g.dart │ │ │ └── presentation │ │ │ │ └── screens │ │ │ │ └── about.dart │ │ ├── app_widget │ │ │ └── domain │ │ │ │ └── services │ │ │ │ ├── home_widget.dart │ │ │ │ └── home_widget.g.dart │ │ ├── bangs │ │ │ ├── data │ │ │ │ ├── database │ │ │ │ │ ├── daos │ │ │ │ │ │ ├── bang.dart │ │ │ │ │ │ ├── bang.drift.dart │ │ │ │ │ │ ├── sync.dart │ │ │ │ │ │ └── sync.drift.dart │ │ │ │ │ ├── database.dart │ │ │ │ │ ├── database.drift.dart │ │ │ │ │ ├── database.steps.dart │ │ │ │ │ ├── definitions.drift │ │ │ │ │ ├── definitions.drift.dart │ │ │ │ │ └── drift │ │ │ │ │ │ └── converters │ │ │ │ │ │ ├── bang_format.dart │ │ │ │ │ │ └── trigger_list.dart │ │ │ │ ├── models │ │ │ │ │ ├── bang.dart │ │ │ │ │ ├── bang.g.dart │ │ │ │ │ ├── bang_data.dart │ │ │ │ │ ├── bang_data.g.dart │ │ │ │ │ ├── bang_group.dart │ │ │ │ │ ├── bang_key.dart │ │ │ │ │ └── search_history_entry.dart │ │ │ │ ├── providers.dart │ │ │ │ ├── providers.g.dart │ │ │ │ └── services │ │ │ │ │ ├── data_source.dart │ │ │ │ │ └── data_source.g.dart │ │ │ ├── domain │ │ │ │ ├── providers │ │ │ │ │ ├── bangs.dart │ │ │ │ │ ├── bangs.g.dart │ │ │ │ │ ├── search.dart │ │ │ │ │ └── search.g.dart │ │ │ │ └── repositories │ │ │ │ │ ├── data.dart │ │ │ │ │ ├── data.g.dart │ │ │ │ │ ├── sync.dart │ │ │ │ │ └── sync.g.dart │ │ │ └── presentation │ │ │ │ ├── screens │ │ │ │ ├── categories.dart │ │ │ │ ├── category.dart │ │ │ │ ├── edit.dart │ │ │ │ ├── menu.dart │ │ │ │ ├── search.dart │ │ │ │ └── user.dart │ │ │ │ └── widgets │ │ │ │ ├── bang_details.dart │ │ │ │ └── site_search.dart │ │ ├── geckoview │ │ │ ├── domain │ │ │ │ ├── controllers │ │ │ │ │ ├── bottom_sheet.dart │ │ │ │ │ ├── bottom_sheet.g.dart │ │ │ │ │ ├── overlay.dart │ │ │ │ │ └── overlay.g.dart │ │ │ │ ├── entities │ │ │ │ │ ├── browser_icon.dart │ │ │ │ │ └── states │ │ │ │ │ │ ├── find_result.dart │ │ │ │ │ │ ├── history.dart │ │ │ │ │ │ ├── readerable.dart │ │ │ │ │ │ ├── security.dart │ │ │ │ │ │ ├── tab.dart │ │ │ │ │ │ ├── tab.g.dart │ │ │ │ │ │ ├── web_extension.dart │ │ │ │ │ │ └── web_extension.g.dart │ │ │ │ ├── providers.dart │ │ │ │ ├── providers.g.dart │ │ │ │ ├── providers │ │ │ │ │ ├── browser_extension.dart │ │ │ │ │ ├── browser_extension.g.dart │ │ │ │ │ ├── desktop_mode.dart │ │ │ │ │ ├── desktop_mode.g.dart │ │ │ │ │ ├── selected_tab.dart │ │ │ │ │ ├── selected_tab.g.dart │ │ │ │ │ ├── tab_delete_cache.dart │ │ │ │ │ ├── tab_delete_cache.g.dart │ │ │ │ │ ├── tab_list.dart │ │ │ │ │ ├── tab_list.g.dart │ │ │ │ │ ├── tab_session.dart │ │ │ │ │ ├── tab_session.g.dart │ │ │ │ │ ├── tab_state.dart │ │ │ │ │ ├── tab_state.g.dart │ │ │ │ │ ├── web_extensions_state.dart │ │ │ │ │ └── web_extensions_state.g.dart │ │ │ │ └── repositories │ │ │ │ │ ├── tab.dart │ │ │ │ │ └── tab.g.dart │ │ │ ├── features │ │ │ │ ├── bookmarks │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ ├── bookmark_item.dart │ │ │ │ │ │ │ └── bookmark_item.g.dart │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ ├── bookmarks.dart │ │ │ │ │ │ │ └── bookmarks.g.dart │ │ │ │ │ │ └── repositories │ │ │ │ │ │ │ ├── bookmarks.dart │ │ │ │ │ │ │ └── bookmarks.g.dart │ │ │ │ │ └── presentation │ │ │ │ │ │ └── screens │ │ │ │ │ │ ├── bookmark_entry_edit.dart │ │ │ │ │ │ ├── bookmark_folder_edit.dart │ │ │ │ │ │ └── bookmark_list.dart │ │ │ │ ├── browser │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ └── sheet.dart │ │ │ │ │ │ ├── providers.dart │ │ │ │ │ │ ├── providers.g.dart │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ ├── intent.dart │ │ │ │ │ │ │ ├── intent.g.dart │ │ │ │ │ │ │ ├── lifecycle.dart │ │ │ │ │ │ │ └── lifecycle.g.dart │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── browser_addon.dart │ │ │ │ │ │ │ ├── browser_addon.g.dart │ │ │ │ │ │ │ ├── browser_data.dart │ │ │ │ │ │ │ ├── browser_data.g.dart │ │ │ │ │ │ │ ├── engine_settings_replication.dart │ │ │ │ │ │ │ ├── engine_settings_replication.g.dart │ │ │ │ │ │ │ ├── proxy_settings_replication.dart │ │ │ │ │ │ │ └── proxy_settings_replication.g.dart │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── tab_suggestions.dart │ │ │ │ │ │ ├── tab_suggestions.g.dart │ │ │ │ │ │ ├── tree_view.dart │ │ │ │ │ │ └── tree_view.g.dart │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── delete_data.dart │ │ │ │ │ │ ├── open_shared_content.dart │ │ │ │ │ │ ├── qr_code.dart │ │ │ │ │ │ └── tab_tree.dart │ │ │ │ │ │ ├── screens │ │ │ │ │ │ ├── browser.dart │ │ │ │ │ │ └── tab_view.dart │ │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── browser_modules │ │ │ │ │ │ ├── address_with_suggestions_field.dart │ │ │ │ │ │ ├── app_bar_title.dart │ │ │ │ │ │ ├── bottom_app_bar.dart │ │ │ │ │ │ └── browser_view.dart │ │ │ │ │ │ ├── certificate_tile.dart │ │ │ │ │ │ ├── draggable_scrollable_header.dart │ │ │ │ │ │ ├── error_container.dart │ │ │ │ │ │ ├── extension_badge_icon.dart │ │ │ │ │ │ ├── extension_shortcut_menu.dart │ │ │ │ │ │ ├── sheets │ │ │ │ │ │ └── view_tab.dart │ │ │ │ │ │ ├── tab_creation_menu.dart │ │ │ │ │ │ ├── tab_icon.dart │ │ │ │ │ │ ├── tab_menu.dart │ │ │ │ │ │ ├── tab_preview.dart │ │ │ │ │ │ ├── tabs_action_button.dart │ │ │ │ │ │ └── view_tabs.dart │ │ │ │ ├── contextmenu │ │ │ │ │ ├── domain │ │ │ │ │ │ └── converters │ │ │ │ │ │ │ └── hit_result_converter.dart │ │ │ │ │ ├── extensions │ │ │ │ │ │ └── hit_result.dart │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── candidates │ │ │ │ │ │ ├── copy_email.dart │ │ │ │ │ │ ├── copy_image.dart │ │ │ │ │ │ ├── copy_image_location.dart │ │ │ │ │ │ ├── copy_link.dart │ │ │ │ │ │ ├── launch_external.dart │ │ │ │ │ │ ├── open_image_new_tab.dart │ │ │ │ │ │ ├── open_new_tab.dart │ │ │ │ │ │ ├── save_file.dart │ │ │ │ │ │ ├── save_image.dart │ │ │ │ │ │ ├── share_email.dart │ │ │ │ │ │ ├── share_image.dart │ │ │ │ │ │ └── share_link.dart │ │ │ │ │ │ └── context_menu_dialog.dart │ │ │ │ ├── find_in_page │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ ├── find_in_page_state.dart │ │ │ │ │ │ │ └── find_in_page_state.g.dart │ │ │ │ │ │ └── repositories │ │ │ │ │ │ │ ├── find_in_page.dart │ │ │ │ │ │ │ └── find_in_page.g.dart │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── find_in_page.dart │ │ │ │ │ │ └── find_in_page.g.dart │ │ │ │ │ │ └── widgets │ │ │ │ │ │ └── find_in_page.dart │ │ │ │ ├── history │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ ├── history_filter_options.dart │ │ │ │ │ │ │ └── history_filter_options.g.dart │ │ │ │ │ │ ├── providers.dart │ │ │ │ │ │ └── providers.g.dart │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── delete_file.dart │ │ │ │ │ │ └── screens │ │ │ │ │ │ └── history.dart │ │ │ │ ├── preferences │ │ │ │ │ └── data │ │ │ │ │ │ ├── models │ │ │ │ │ │ ├── preference_setting.dart │ │ │ │ │ │ └── preference_setting.g.dart │ │ │ │ │ │ └── repositories │ │ │ │ │ │ ├── preference_observer.dart │ │ │ │ │ │ ├── preference_observer.g.dart │ │ │ │ │ │ ├── preference_settings.dart │ │ │ │ │ │ └── preference_settings.g.dart │ │ │ │ ├── readerview │ │ │ │ │ ├── domain │ │ │ │ │ │ └── providers │ │ │ │ │ │ │ ├── readerable.dart │ │ │ │ │ │ │ └── readerable.g.dart │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── readerable.dart │ │ │ │ │ │ └── readerable.g.dart │ │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── reader_appearance_button.dart │ │ │ │ │ │ └── reader_button.dart │ │ │ │ ├── search │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ └── tab_preview.dart │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ ├── engine_suggestions.dart │ │ │ │ │ │ │ ├── engine_suggestions.g.dart │ │ │ │ │ │ │ ├── search_suggestions.dart │ │ │ │ │ │ │ └── search_suggestions.g.dart │ │ │ │ │ │ └── repositories │ │ │ │ │ │ │ ├── search_suggestions.dart │ │ │ │ │ │ │ └── search_suggestions.g.dart │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── screens │ │ │ │ │ │ └── search.dart │ │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── bang_chips.dart │ │ │ │ │ │ ├── clipboard_fill.dart │ │ │ │ │ │ ├── search_field.dart │ │ │ │ │ │ └── search_modules │ │ │ │ │ │ ├── feed_search.dart │ │ │ │ │ │ ├── fixed_search_suggestions.dart │ │ │ │ │ │ ├── full_search_suggestions.dart │ │ │ │ │ │ ├── history_suggestions.dart │ │ │ │ │ │ └── tab_search.dart │ │ │ │ └── tabs │ │ │ │ │ ├── data │ │ │ │ │ ├── database │ │ │ │ │ │ ├── converters │ │ │ │ │ │ │ └── container_metadata_converter.dart │ │ │ │ │ │ ├── daos │ │ │ │ │ │ │ ├── container.dart │ │ │ │ │ │ │ ├── container.drift.dart │ │ │ │ │ │ │ ├── tab.dart │ │ │ │ │ │ │ └── tab.drift.dart │ │ │ │ │ │ ├── database.dart │ │ │ │ │ │ ├── database.drift.dart │ │ │ │ │ │ ├── definitions.drift │ │ │ │ │ │ └── definitions.drift.dart │ │ │ │ │ ├── entities │ │ │ │ │ │ ├── container_filter.dart │ │ │ │ │ │ └── tab_entity.dart │ │ │ │ │ ├── models │ │ │ │ │ │ ├── container_data.dart │ │ │ │ │ │ ├── container_data.g.dart │ │ │ │ │ │ ├── site_assignment.dart │ │ │ │ │ │ └── tab_query_result.dart │ │ │ │ │ ├── providers.dart │ │ │ │ │ └── providers.g.dart │ │ │ │ │ ├── domain │ │ │ │ │ ├── providers.dart │ │ │ │ │ ├── providers.g.dart │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── selected_container.dart │ │ │ │ │ │ └── selected_container.g.dart │ │ │ │ │ └── repositories │ │ │ │ │ │ ├── container.dart │ │ │ │ │ │ ├── container.g.dart │ │ │ │ │ │ ├── gecko_inference.dart │ │ │ │ │ │ ├── gecko_inference.g.dart │ │ │ │ │ │ ├── tab.dart │ │ │ │ │ │ ├── tab.g.dart │ │ │ │ │ │ ├── tab_search.dart │ │ │ │ │ │ └── tab_search.g.dart │ │ │ │ │ ├── presentation │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── container_topic.dart │ │ │ │ │ │ └── container_topic.g.dart │ │ │ │ │ ├── screens │ │ │ │ │ │ ├── container_draft_suggestions.dart │ │ │ │ │ │ ├── container_edit.dart │ │ │ │ │ │ ├── container_list.dart │ │ │ │ │ │ ├── container_selection.dart │ │ │ │ │ │ └── container_sites.dart │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── color_picker_dialog.dart │ │ │ │ │ │ ├── container_chips.dart │ │ │ │ │ │ ├── container_list_tile.dart │ │ │ │ │ │ ├── container_title.dart │ │ │ │ │ │ ├── material_color_picker.dart │ │ │ │ │ │ └── tab_drag_container_target.dart │ │ │ │ │ └── utils │ │ │ │ │ ├── color_palette.dart │ │ │ │ │ └── setting_groups_serializer.dart │ │ │ └── utils │ │ │ │ └── image_helper.dart │ │ ├── onboarding │ │ │ └── presentation │ │ │ │ ├── onboarding.dart │ │ │ │ └── pages │ │ │ │ ├── abstract │ │ │ │ └── i_form_page.dart │ │ │ │ ├── ai_configuration.dart │ │ │ │ ├── default_search.dart │ │ │ │ ├── permissions.dart │ │ │ │ ├── ublock_opt_in.dart │ │ │ │ └── welcome.dart │ │ ├── search │ │ │ ├── domain │ │ │ │ ├── autosuggest │ │ │ │ │ ├── brave.dart │ │ │ │ │ ├── brave.g.dart │ │ │ │ │ ├── duckduckgo.dart │ │ │ │ │ ├── duckduckgo.g.dart │ │ │ │ │ ├── empty.dart │ │ │ │ │ ├── empty.g.dart │ │ │ │ │ ├── kagi.dart │ │ │ │ │ ├── kagi.g.dart │ │ │ │ │ ├── qwant.dart │ │ │ │ │ └── qwant.g.dart │ │ │ │ ├── entities │ │ │ │ │ ├── abstract │ │ │ │ │ │ ├── i_query_builder.dart │ │ │ │ │ │ └── i_search_suggestion_provider.dart │ │ │ │ │ └── bareword.dart │ │ │ │ ├── fts_tokenizer.dart │ │ │ │ └── unix_tokenizer.dart │ │ │ └── util │ │ │ │ └── tokenized_filter.dart │ │ ├── settings │ │ │ └── presentation │ │ │ │ ├── controllers │ │ │ │ ├── save_settings.dart │ │ │ │ └── save_settings.g.dart │ │ │ │ ├── screens │ │ │ │ ├── addon_collection.dart │ │ │ │ ├── bang_settings.dart │ │ │ │ ├── developer_settings.dart │ │ │ │ ├── doh_settings.dart │ │ │ │ ├── fingerprint_settings.dart │ │ │ │ ├── general_settings.dart │ │ │ │ ├── locale_settings.dart │ │ │ │ ├── settings.dart │ │ │ │ ├── web_engine_hardening.dart │ │ │ │ ├── web_engine_hardening_group.dart │ │ │ │ └── web_engine_settings.dart │ │ │ │ └── widgets │ │ │ │ ├── bang_group_list_tile.dart │ │ │ │ ├── bang_icon.dart │ │ │ │ ├── custom_list_tile.dart │ │ │ │ ├── default_search_selector.dart │ │ │ │ ├── hardening_group_icon.dart │ │ │ │ ├── sections.dart │ │ │ │ └── sync_details_table.dart │ │ ├── share_intent │ │ │ └── domain │ │ │ │ ├── entities │ │ │ │ └── shared_content.dart │ │ │ │ └── services │ │ │ │ ├── sharing_intent.dart │ │ │ │ └── sharing_intent.g.dart │ │ ├── tor │ │ │ ├── data │ │ │ │ └── services │ │ │ │ │ ├── builtin_bridges.dart │ │ │ │ │ └── builtin_bridges.g.dart │ │ │ ├── domain │ │ │ │ ├── repositories │ │ │ │ │ ├── builtin_bridges.dart │ │ │ │ │ ├── builtin_bridges.g.dart │ │ │ │ │ ├── tor_proxy.dart │ │ │ │ │ └── tor_proxy.g.dart │ │ │ │ └── services │ │ │ │ │ ├── tor_proxy.dart │ │ │ │ │ └── tor_proxy.g.dart │ │ │ ├── presentation │ │ │ │ ├── controllers │ │ │ │ │ ├── start_tor_proxy.dart │ │ │ │ │ └── start_tor_proxy.g.dart │ │ │ │ ├── screens │ │ │ │ │ └── tor_proxy.dart │ │ │ │ └── widgets │ │ │ │ │ ├── tor_dialog.dart │ │ │ │ │ └── tor_notification.dart │ │ │ └── utils │ │ │ │ └── tor_entrypoint.dart │ │ ├── user │ │ │ ├── data │ │ │ │ ├── database │ │ │ │ │ ├── daos │ │ │ │ │ │ ├── cache.dart │ │ │ │ │ │ ├── cache.drift.dart │ │ │ │ │ │ ├── onboarding.dart │ │ │ │ │ │ ├── onboarding.drift.dart │ │ │ │ │ │ ├── setting.dart │ │ │ │ │ │ └── setting.drift.dart │ │ │ │ │ ├── database.dart │ │ │ │ │ ├── database.drift.dart │ │ │ │ │ ├── database.steps.dart │ │ │ │ │ ├── definitions.drift │ │ │ │ │ ├── definitions.drift.dart │ │ │ │ │ └── riverpod_storage.dart │ │ │ │ ├── models │ │ │ │ │ ├── engine_settings.dart │ │ │ │ │ ├── engine_settings.g.dart │ │ │ │ │ ├── general_settings.dart │ │ │ │ │ ├── general_settings.g.dart │ │ │ │ │ ├── rfp_target.dart │ │ │ │ │ ├── rfp_target.g.dart │ │ │ │ │ ├── tor_settings.dart │ │ │ │ │ └── tor_settings.g.dart │ │ │ │ ├── providers.dart │ │ │ │ └── providers.g.dart │ │ │ └── domain │ │ │ │ ├── entities │ │ │ │ ├── auth_exception.dart │ │ │ │ └── fingerprint_overrides.dart │ │ │ │ ├── presentation │ │ │ │ ├── dialogs │ │ │ │ │ └── select_profile.dart │ │ │ │ └── screens │ │ │ │ │ ├── profile_edit.dart │ │ │ │ │ └── profile_list.dart │ │ │ │ ├── providers.dart │ │ │ │ ├── providers.g.dart │ │ │ │ ├── repositories │ │ │ │ ├── cache.dart │ │ │ │ ├── cache.g.dart │ │ │ │ ├── engine_settings.dart │ │ │ │ ├── engine_settings.g.dart │ │ │ │ ├── general_settings.dart │ │ │ │ ├── general_settings.g.dart │ │ │ │ ├── onboarding.dart │ │ │ │ ├── onboarding.g.dart │ │ │ │ ├── profile.dart │ │ │ │ ├── profile.g.dart │ │ │ │ ├── tor_settings.dart │ │ │ │ └── tor_settings.g.dart │ │ │ │ └── services │ │ │ │ ├── fingerprinting.dart │ │ │ │ ├── fingerprinting.g.dart │ │ │ │ ├── local_authentication.dart │ │ │ │ └── local_authentication.g.dart │ │ └── web_feed │ │ │ ├── data │ │ │ ├── database │ │ │ │ ├── converters │ │ │ │ │ ├── feed_authors.dart │ │ │ │ │ ├── feed_categories.dart │ │ │ │ │ ├── feed_data.dart │ │ │ │ │ └── feed_links.dart │ │ │ │ ├── daos │ │ │ │ │ ├── article.dart │ │ │ │ │ ├── article.drift.dart │ │ │ │ │ ├── feed.dart │ │ │ │ │ └── feed.drift.dart │ │ │ │ ├── database.dart │ │ │ │ ├── database.drift.dart │ │ │ │ ├── definitions.drift │ │ │ │ └── definitions.drift.dart │ │ │ ├── models │ │ │ │ ├── feed_article.dart │ │ │ │ ├── feed_article.g.dart │ │ │ │ ├── feed_article_query_result.dart │ │ │ │ ├── feed_author.dart │ │ │ │ ├── feed_author.g.dart │ │ │ │ ├── feed_category.dart │ │ │ │ ├── feed_category.g.dart │ │ │ │ ├── feed_link.dart │ │ │ │ ├── feed_link.g.dart │ │ │ │ ├── feed_parse_result.dart │ │ │ │ └── feed_parse_result.g.dart │ │ │ ├── providers.dart │ │ │ └── providers.g.dart │ │ │ ├── domain │ │ │ ├── providers.dart │ │ │ ├── providers.g.dart │ │ │ ├── providers │ │ │ │ ├── add_dialog_blocking.dart │ │ │ │ ├── add_dialog_blocking.g.dart │ │ │ │ ├── article_filter.dart │ │ │ │ └── article_filter.g.dart │ │ │ ├── repositories │ │ │ │ ├── feed_repository.dart │ │ │ │ └── feed_repository.g.dart │ │ │ └── services │ │ │ │ ├── article_content_processor.dart │ │ │ │ ├── article_content_processor.g.dart │ │ │ │ ├── feed_reader.dart │ │ │ │ └── feed_reader.g.dart │ │ │ ├── extensions │ │ │ ├── atom.dart │ │ │ ├── feed_article.dart │ │ │ ├── rss.dart │ │ │ └── web_feed_converter.dart │ │ │ ├── presentation │ │ │ ├── add_feed_dialog.dart │ │ │ ├── controllers │ │ │ │ ├── fetch_articles.dart │ │ │ │ └── fetch_articles.g.dart │ │ │ ├── screens │ │ │ │ ├── feed_article.dart │ │ │ │ ├── feed_article_list.dart │ │ │ │ ├── feed_edit.dart │ │ │ │ └── feed_list.dart │ │ │ ├── select_feed_dialog.dart │ │ │ └── widgets │ │ │ │ ├── authors_horizontal_list.dart │ │ │ │ ├── feed_article_card.dart │ │ │ │ ├── feed_card.dart │ │ │ │ ├── tag_field.dart │ │ │ │ └── tags_horizontal_list.dart │ │ │ └── utils │ │ │ ├── feed_finder.dart │ │ │ ├── feed_parser.dart │ │ │ └── fetch_entrypoint.dart │ ├── main.dart │ ├── presentation │ │ ├── controllers │ │ │ ├── website_title.dart │ │ │ └── website_title.g.dart │ │ ├── hooks │ │ │ ├── cached_future.dart │ │ │ ├── listenable_callback.dart │ │ │ ├── menu_controller.dart │ │ │ ├── on_dispose.dart │ │ │ ├── on_initialization.dart │ │ │ ├── sampled_value_notifier.dart │ │ │ └── sync_page_tab.dart │ │ ├── icons │ │ │ └── tor_icons.dart │ │ ├── main_app.dart │ │ └── widgets │ │ │ ├── animate_gradient_shader.dart │ │ │ ├── animated_indexed_stack.dart │ │ │ ├── auto_suggest_text_field.dart │ │ │ ├── failure_widget.dart │ │ │ ├── rounded_text.dart │ │ │ ├── selectable_chips.dart │ │ │ ├── share_tile.dart │ │ │ ├── speech_to_text_button.dart │ │ │ ├── uri_breadcrumb.dart │ │ │ ├── url_icon.dart │ │ │ ├── website_feed_menu_button.dart │ │ │ └── website_title_tile.dart │ └── utils │ │ ├── clipboard.dart │ │ ├── debouncer.dart │ │ ├── exit_app.dart │ │ ├── filesystem.dart │ │ ├── form_validators.dart │ │ ├── lru_cache.dart │ │ ├── markdown │ │ └── image_extractor.dart │ │ ├── platform_util.dart │ │ ├── sampled_value_notifier.dart │ │ ├── text_field_line_count.dart │ │ ├── ui_helper.dart │ │ └── uri_parser.dart ├── pubspec.yaml ├── scripts │ └── download_bangs.sh └── test │ └── drift │ ├── bangs │ ├── generated │ │ ├── schema.dart │ │ ├── schema_v1.dart │ │ ├── schema_v2.dart │ │ ├── schema_v3.dart │ │ └── schema_v4.dart │ └── migration_test.dart │ └── user │ ├── generated │ ├── schema.dart │ ├── schema_v1.dart │ └── schema_v2.dart │ └── migration_test.dart ├── devtools_options.yaml ├── metadata └── en-US │ ├── changelogs │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ ├── 26.txt │ ├── 27.txt │ ├── 28.txt │ ├── 29.txt │ ├── 30.txt │ ├── 31.txt │ ├── 32.txt │ └── 33.txt │ ├── full_description.txt │ ├── images │ └── icon.png │ ├── short_description.txt │ └── title.txt ├── packages ├── flutter_mozilla_components │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── extensions │ │ │ │ │ ├── browser_extension │ │ │ │ │ ├── feed.js │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── port.js │ │ │ │ │ ├── readability.min.js │ │ │ │ │ └── turndown.js │ │ │ │ │ ├── container_proxy │ │ │ │ │ ├── cookie-manager │ │ │ │ │ ├── background.js │ │ │ │ │ └── manifest.json │ │ │ │ │ ├── ml_engine │ │ │ │ │ ├── api │ │ │ │ │ │ ├── ml.js │ │ │ │ │ │ └── nlp.js │ │ │ │ │ ├── background.js │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── schema.json │ │ │ │ │ ├── pref_manager │ │ │ │ │ ├── api.js │ │ │ │ │ ├── background.js │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── schema.json │ │ │ │ │ └── readability_extract │ │ │ │ │ ├── content.js │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── readability.min.js │ │ │ ├── kotlin │ │ │ │ └── eu │ │ │ │ │ └── weblibre │ │ │ │ │ └── flutter_mozilla_components │ │ │ │ │ ├── BaseBrowserFragment.kt │ │ │ │ │ ├── BrowserFragment.kt │ │ │ │ │ ├── Components.kt │ │ │ │ │ ├── EngineProvider.kt │ │ │ │ │ ├── FlutterMozillaComponentsPlugin.kt │ │ │ │ │ ├── GeckoPlatformView.kt │ │ │ │ │ ├── GlobalComponents.kt │ │ │ │ │ ├── PermissionStorage.kt │ │ │ │ │ ├── ProfileContext.kt │ │ │ │ │ ├── activities │ │ │ │ │ └── NotificationActivity.kt │ │ │ │ │ ├── addons │ │ │ │ │ ├── AddonDetailsActivity.kt │ │ │ │ │ ├── AddonSettingsActivity.kt │ │ │ │ │ ├── AddonsActivity.kt │ │ │ │ │ ├── AddonsFragment.kt │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ ├── InstalledAddonDetailsActivity.kt │ │ │ │ │ ├── PermissionsDetailsActivity.kt │ │ │ │ │ ├── WebExtensionActionPopupActivity.kt │ │ │ │ │ └── WebExtensionPromptFeature.kt │ │ │ │ │ ├── api │ │ │ │ │ ├── GeckoAddonsApiImpl.kt │ │ │ │ │ ├── GeckoBookmarksApiImpl.kt │ │ │ │ │ ├── GeckoBrowserApiImpl.kt │ │ │ │ │ ├── GeckoBrowserExtensionApiImpl.kt │ │ │ │ │ ├── GeckoContainerProxyApiImpl.kt │ │ │ │ │ ├── GeckoCookieApiImpl.kt │ │ │ │ │ ├── GeckoDeleteBrowsingDataControllerImpl.kt │ │ │ │ │ ├── GeckoDownloadsApiImpl.kt │ │ │ │ │ ├── GeckoEngineSettingsApiImpl.kt │ │ │ │ │ ├── GeckoFetchApiImpl.kt │ │ │ │ │ ├── GeckoFindApiImpl.kt │ │ │ │ │ ├── GeckoHistoryApiImpl.kt │ │ │ │ │ ├── GeckoIconsApiImpl.kt │ │ │ │ │ ├── GeckoMlApiImpl.kt │ │ │ │ │ ├── GeckoPrefApiImpl.kt │ │ │ │ │ ├── GeckoSelectionActionControllerImpl.kt │ │ │ │ │ ├── GeckoSessionApiImpl.kt │ │ │ │ │ ├── GeckoSuggestionApiImpl.kt │ │ │ │ │ ├── GeckoTabsApiImpl.kt │ │ │ │ │ └── ReaderViewEventsImpl.kt │ │ │ │ │ ├── components │ │ │ │ │ ├── Core.kt │ │ │ │ │ ├── Events.kt │ │ │ │ │ ├── Features.kt │ │ │ │ │ ├── Search.kt │ │ │ │ │ ├── Services.kt │ │ │ │ │ └── UseCases.kt │ │ │ │ │ ├── ext │ │ │ │ │ ├── Bitmap.kt │ │ │ │ │ └── Context.kt │ │ │ │ │ ├── feature │ │ │ │ │ ├── BrowserExtensionFeature.kt │ │ │ │ │ ├── ContainerProxyFeature.kt │ │ │ │ │ ├── CookieManagerFeature.kt │ │ │ │ │ ├── DefaultSelectionActionDelegate.kt │ │ │ │ │ ├── MLEngineFeature.kt │ │ │ │ │ ├── PrefManagerFeature.kt │ │ │ │ │ ├── ReadabilityExtractFeature.kt │ │ │ │ │ └── WebExtensionToolbarFeature.kt │ │ │ │ │ ├── integration │ │ │ │ │ └── ReaderViewIntegration.kt │ │ │ │ │ ├── interceptor │ │ │ │ │ └── AppRequestInterceptor.kt │ │ │ │ │ ├── middleware │ │ │ │ │ └── FlutterEventMiddleware.kt │ │ │ │ │ ├── pigeons │ │ │ │ │ └── Gecko.g.kt │ │ │ │ │ └── services │ │ │ │ │ ├── CustomTabsService.kt │ │ │ │ │ ├── DownloadService.kt │ │ │ │ │ └── MediaSessionService.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── addon_textview_selector.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── mozac_ic_extensions_black.xml │ │ │ │ └── mozac_ic_permissions.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_add_on_details.xml │ │ │ │ ├── activity_add_on_main.xml │ │ │ │ ├── activity_add_on_permissions.xml │ │ │ │ ├── activity_add_on_settings.xml │ │ │ │ ├── activity_installed_add_on_details.xml │ │ │ │ ├── add_ons_permission_item.xml │ │ │ │ ├── fragment_add_on_settings.xml │ │ │ │ ├── fragment_add_ons.xml │ │ │ │ ├── fragment_browser.xml │ │ │ │ └── overlay_add_on_progress.xml │ │ │ │ └── values │ │ │ │ ├── preference_keys.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── kotlin │ │ │ └── eu │ │ │ └── lensai │ │ │ └── flutter_mozilla_components │ │ │ └── FlutterMozillaContextPluginTest.kt │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── eu │ │ │ │ │ │ │ └── lensai │ │ │ │ │ │ │ └── flutter_mozilla_components_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── javascript │ │ ├── .gitignore │ │ ├── container_proxy │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── NOTES_TO_REVIEWER.md │ │ │ ├── README.md │ │ │ ├── declarations.d.ts │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── background │ │ │ │ │ ├── BackgroundMain.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── domain │ │ │ │ │ ├── ProxyInfo.ts │ │ │ │ │ ├── ProxySettings.ts │ │ │ │ │ └── ProxyType.ts │ │ │ │ ├── manifest.json │ │ │ │ ├── package.json │ │ │ │ └── store │ │ │ │ │ └── Store.ts │ │ │ ├── test │ │ │ │ ├── functional │ │ │ │ │ └── extension.test.js │ │ │ │ ├── infrastructure │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ ├── http │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── squid.conf │ │ │ │ │ │ └── squidpass │ │ │ │ │ └── socks │ │ │ │ │ │ └── Dockerfile │ │ │ │ └── unit │ │ │ │ │ ├── BackgroundMain.test.ts │ │ │ │ │ └── Store.test.ts │ │ │ ├── tsconfig.json │ │ │ └── webpack.config.js │ │ └── readability │ │ │ ├── dist │ │ │ ├── readability.min.js │ │ │ ├── report.html │ │ │ └── stats.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── index.js │ │ │ └── webpack.config.js │ ├── lib │ │ ├── flutter_mozilla_components.dart │ │ ├── ml_utils.dart │ │ └── src │ │ │ ├── data │ │ │ └── models │ │ │ │ ├── load_url_flags.dart │ │ │ │ └── source.dart │ │ │ ├── domain │ │ │ ├── entities │ │ │ │ ├── default_selection_actions.dart │ │ │ │ └── turndown_result.dart │ │ │ └── services │ │ │ │ ├── gecko_addon.dart │ │ │ │ ├── gecko_bookmarks.dart │ │ │ │ ├── gecko_browser.dart │ │ │ │ ├── gecko_browser_extension.dart │ │ │ │ ├── gecko_container_proxy.dart │ │ │ │ ├── gecko_cookie.dart │ │ │ │ ├── gecko_delete_browser_data.dart │ │ │ │ ├── gecko_downloads.dart │ │ │ │ ├── gecko_engine_settings.dart │ │ │ │ ├── gecko_event.dart │ │ │ │ ├── gecko_fetch_service.dart │ │ │ │ ├── gecko_find_in_page.dart │ │ │ │ ├── gecko_history.dart │ │ │ │ ├── gecko_icon.dart │ │ │ │ ├── gecko_logging.dart │ │ │ │ ├── gecko_ml.dart │ │ │ │ ├── gecko_pref.dart │ │ │ │ ├── gecko_readerable.dart │ │ │ │ ├── gecko_selection_action.dart │ │ │ │ ├── gecko_session.dart │ │ │ │ ├── gecko_suggestions.dart │ │ │ │ ├── gecko_tab.dart │ │ │ │ └── gecko_tab_content.dart │ │ │ ├── extensions │ │ │ └── subject.dart │ │ │ ├── geckoview_widget.dart │ │ │ ├── pigeons │ │ │ └── gecko.g.dart │ │ │ └── utils │ │ │ └── ml │ │ │ ├── cluster.dart │ │ │ ├── cluster_algo.dart │ │ │ ├── cosine_similarity.dart │ │ │ ├── embedding_text_processing.dart │ │ │ └── nearest_neighbor.dart │ ├── pigeons │ │ └── gecko.dart │ ├── pubspec.yaml │ └── test │ │ └── text_processing_test.dart ├── locale_resolver │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ │ └── eu │ │ │ │ └── weblibre │ │ │ │ └── locale_resolver │ │ │ │ ├── LocaleResolver.kt │ │ │ │ ├── LocaleResolverPlugin.kt │ │ │ │ └── pigeons │ │ │ │ └── Locales.g.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── eu │ │ │ └── weblibre │ │ │ └── locale_resolver │ │ │ └── LocaleResolverPluginTest.kt │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── eu │ │ │ │ │ │ │ └── weblibre │ │ │ │ │ │ │ └── locale_resolver_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle.kts │ │ ├── lib │ │ │ └── main.dart │ │ └── pubspec.yaml │ ├── lib │ │ ├── locale_resolver.dart │ │ └── src │ │ │ └── pigeons │ │ │ └── locales.g.dart │ ├── pigeons │ │ └── locales.dart │ └── pubspec.yaml ├── pluggable_transports_proxy │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── eu │ │ │ └── weblibre │ │ │ └── pluggable_transports_proxy │ │ │ ├── PluggableTransportsProxyPlugin.kt │ │ │ ├── ProxyImpl.kt │ │ │ └── pigeons │ │ │ └── Proxy.g.kt │ ├── lib │ │ ├── pluggable_transports_proxy.dart │ │ └── src │ │ │ ├── data │ │ │ ├── models │ │ │ │ ├── moat.dart │ │ │ │ └── moat.g.dart │ │ │ └── service │ │ │ │ ├── moat_api.dart │ │ │ │ └── moat_service.dart │ │ │ └── pigeons │ │ │ └── proxy.g.dart │ ├── pigeons │ │ └── proxy.dart │ └── pubspec.yaml ├── simple_intent_receiver │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ │ └── eu │ │ │ │ └── weblibre │ │ │ │ └── simple_intent_receiver │ │ │ │ ├── IntentReceiver.kt │ │ │ │ ├── SimpleIntentReceiverPlugin.kt │ │ │ │ └── pigeons │ │ │ │ └── Intent.g.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── me │ │ │ └── movenext │ │ │ └── simple_intent_receiver │ │ │ └── SimpleIntentReceiverPluginTest.kt │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── me │ │ │ │ │ │ │ └── movenext │ │ │ │ │ │ │ └── simple_intent_receiver_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle.kts │ │ ├── lib │ │ │ └── main.dart │ │ └── pubspec.yaml │ ├── lib │ │ ├── simple_intent_receiver.dart │ │ └── src │ │ │ ├── intent_receiver.dart │ │ │ └── pigeons │ │ │ └── intent.g.dart │ ├── pigeons │ │ └── intent.dart │ └── pubspec.yaml └── tor │ ├── .gitignore │ ├── .metadata │ ├── .reuse │ └── dep5 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LICENSE.license │ ├── LICENSES │ └── MIT.txt │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ ├── .gitignore │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ └── main │ │ └── AndroidManifest.xml │ ├── cargokit │ ├── .github │ │ └── workflows │ │ │ ├── check_and_lint.yml │ │ │ └── test_example_plugin_build.yml │ ├── .gitignore │ ├── LICENSE │ ├── README │ ├── README.license │ ├── build_pod.sh │ ├── build_tool │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── build_tool.dart │ │ ├── lib │ │ │ ├── build_tool.dart │ │ │ └── src │ │ │ │ ├── android_environment.dart │ │ │ │ ├── artifacts_provider.dart │ │ │ │ ├── build_cmake.dart │ │ │ │ ├── build_gradle.dart │ │ │ │ ├── build_pod.dart │ │ │ │ ├── build_tool.dart │ │ │ │ ├── builder.dart │ │ │ │ ├── cargo.dart │ │ │ │ ├── crate_hash.dart │ │ │ │ ├── environment.dart │ │ │ │ ├── logging.dart │ │ │ │ ├── options.dart │ │ │ │ ├── precompile_binaries.dart │ │ │ │ ├── rustup.dart │ │ │ │ ├── target.dart │ │ │ │ ├── util.dart │ │ │ │ └── verify_binaries.dart │ │ ├── pubspec.lock │ │ ├── pubspec.lock.license │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── builder_test.dart │ │ │ ├── cargo_test.dart │ │ │ ├── options_test.dart │ │ │ └── rustup_test.dart │ ├── cmake │ │ ├── cargokit.cmake │ │ └── resolve_symlinks.ps1 │ ├── docs │ │ ├── architecture.md │ │ └── precompiled_binaries.md │ ├── gradle │ │ └── plugin.gradle │ ├── run_build_tool.cmd │ ├── run_build_tool.cmd.license │ └── run_build_tool.sh │ ├── ios │ ├── Classes │ │ └── tor_ffi_plugin.c │ ├── tor.podspec │ └── tor.podspec.license │ ├── justfile │ ├── justfile.license │ ├── lib │ ├── src │ │ ├── generated_bindings.dart │ │ └── tor.dart │ └── tor.dart │ ├── linux │ └── CMakeLists.txt │ ├── macos │ ├── Classes │ │ └── tor_ffi_plugin.c │ ├── tor.podspec │ └── tor.podspec.license │ ├── pubspec.lock.license │ ├── pubspec.yaml │ ├── rust │ ├── Cargo.lock │ ├── Cargo.lock.license │ ├── Cargo.toml │ ├── build.rs │ ├── rust-toolchain │ ├── rust-toolchain.license │ ├── src │ │ ├── error.rs │ │ ├── lib.rs │ │ └── util.rs │ └── target │ │ └── tor.h │ └── windows │ ├── .gitignore │ └── CMakeLists.txt ├── pubspec.yaml └── scripts ├── build-container-proxy.sh ├── build-readability.sh └── update-bridges.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/TODO.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/.metadata -------------------------------------------------------------------------------- /app/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /app/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/analysis_options.yaml -------------------------------------------------------------------------------- /app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/.gitignore -------------------------------------------------------------------------------- /app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/build.gradle -------------------------------------------------------------------------------- /app/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/kotlin/eu/weblibre/gecko/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/kotlin/eu/weblibre/gecko/MainActivity.kt -------------------------------------------------------------------------------- /app/android/app/src/main/kotlin/eu/weblibre/gecko/MyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/kotlin/eu/weblibre/gecko/MyApplication.kt -------------------------------------------------------------------------------- /app/android/app/src/main/kotlin/eu/weblibre/gecko/SearchBarWidgetProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/kotlin/eu/weblibre/gecko/SearchBarWidgetProvider.kt -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-hdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-hdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-mdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-mdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xhdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xhdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xxhdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xxhdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xxxhdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xxxhdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable/button.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/icon_with_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable/icon_with_size.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/mdi_icon_brain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable/mdi_icon_brain.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/mdi_icon_microphone_tint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable/mdi_icon_microphone_tint.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/mdi_icon_search_web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable/mdi_icon_search_web.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/mdi_icon_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable/mdi_icon_text.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/search_text_field.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/drawable/search_text_field.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/xml/search_bar_widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/main/res/xml/search_bar_widget_info.xml -------------------------------------------------------------------------------- /app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/build.gradle -------------------------------------------------------------------------------- /app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/gradle.properties -------------------------------------------------------------------------------- /app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/android/settings.gradle -------------------------------------------------------------------------------- /app/assets/bangs/assistant_bangs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/bangs/assistant_bangs.json -------------------------------------------------------------------------------- /app/assets/bangs/bangs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/bangs/bangs.json -------------------------------------------------------------------------------- /app/assets/bangs/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/bangs/custom.json -------------------------------------------------------------------------------- /app/assets/bangs/kagi_bangs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/bangs/kagi_bangs.json -------------------------------------------------------------------------------- /app/assets/bangs/last_sync.txt: -------------------------------------------------------------------------------- 1 | 2025-09-29T11:03:50+00:00 2 | -------------------------------------------------------------------------------- /app/assets/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/tor-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/fonts/tor-icons.ttf -------------------------------------------------------------------------------- /app/assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/icon/icon.png -------------------------------------------------------------------------------- /app/assets/icon/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/icon/icon.svg -------------------------------------------------------------------------------- /app/assets/images/ublock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/images/ublock.svg -------------------------------------------------------------------------------- /app/assets/landing/changelog.md: -------------------------------------------------------------------------------- 1 | ../../../CHANGELOG.md -------------------------------------------------------------------------------- /app/assets/preferences/builtin-bridges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/preferences/builtin-bridges.json -------------------------------------------------------------------------------- /app/assets/preferences/rfp_targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/preferences/rfp_targets.json -------------------------------------------------------------------------------- /app/assets/preferences/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/assets/preferences/settings.json -------------------------------------------------------------------------------- /app/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/build.yaml -------------------------------------------------------------------------------- /app/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/devtools_options.yaml -------------------------------------------------------------------------------- /app/drift_schemas/bangs/drift_schema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/drift_schemas/bangs/drift_schema_v1.json -------------------------------------------------------------------------------- /app/drift_schemas/bangs/drift_schema_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/drift_schemas/bangs/drift_schema_v2.json -------------------------------------------------------------------------------- /app/drift_schemas/bangs/drift_schema_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/drift_schemas/bangs/drift_schema_v3.json -------------------------------------------------------------------------------- /app/drift_schemas/bangs/drift_schema_v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/drift_schemas/bangs/drift_schema_v4.json -------------------------------------------------------------------------------- /app/drift_schemas/tabs/drift_schema_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/drift_schemas/tabs/drift_schema_v2.json -------------------------------------------------------------------------------- /app/drift_schemas/user/drift_schema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/drift_schemas/user/drift_schema_v1.json -------------------------------------------------------------------------------- /app/drift_schemas/user/drift_schema_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/drift_schemas/user/drift_schema_v2.json -------------------------------------------------------------------------------- /app/drift_schemas/web_feed/drift_schema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/drift_schemas/web_feed/drift_schema_v1.json -------------------------------------------------------------------------------- /app/lib/core/error_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/error_observer.dart -------------------------------------------------------------------------------- /app/lib/core/filesystem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/filesystem.dart -------------------------------------------------------------------------------- /app/lib/core/http_error_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/http_error_handler.dart -------------------------------------------------------------------------------- /app/lib/core/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/logger.dart -------------------------------------------------------------------------------- /app/lib/core/providers/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/app_state.dart -------------------------------------------------------------------------------- /app/lib/core/providers/app_state.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/app_state.g.dart -------------------------------------------------------------------------------- /app/lib/core/providers/defaults.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/defaults.dart -------------------------------------------------------------------------------- /app/lib/core/providers/defaults.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/defaults.g.dart -------------------------------------------------------------------------------- /app/lib/core/providers/format.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/format.dart -------------------------------------------------------------------------------- /app/lib/core/providers/format.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/format.g.dart -------------------------------------------------------------------------------- /app/lib/core/providers/global_drop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/global_drop.dart -------------------------------------------------------------------------------- /app/lib/core/providers/global_drop.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/global_drop.g.dart -------------------------------------------------------------------------------- /app/lib/core/providers/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/router.dart -------------------------------------------------------------------------------- /app/lib/core/providers/router.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/providers/router.g.dart -------------------------------------------------------------------------------- /app/lib/core/routing/routes.bangs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/routing/routes.bangs.dart -------------------------------------------------------------------------------- /app/lib/core/routing/routes.browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/routing/routes.browser.dart -------------------------------------------------------------------------------- /app/lib/core/routing/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/routing/routes.dart -------------------------------------------------------------------------------- /app/lib/core/routing/routes.feeds.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/routing/routes.feeds.dart -------------------------------------------------------------------------------- /app/lib/core/routing/routes.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/routing/routes.g.dart -------------------------------------------------------------------------------- /app/lib/core/routing/routes.settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/routing/routes.settings.dart -------------------------------------------------------------------------------- /app/lib/core/routing/widgets/dialog_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/routing/widgets/dialog_page.dart -------------------------------------------------------------------------------- /app/lib/core/uuid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/core/uuid.dart -------------------------------------------------------------------------------- /app/lib/data/database/converters/color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/database/converters/color.dart -------------------------------------------------------------------------------- /app/lib/data/database/converters/date_time_range.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/database/converters/date_time_range.dart -------------------------------------------------------------------------------- /app/lib/data/database/converters/icon_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/database/converters/icon_data.dart -------------------------------------------------------------------------------- /app/lib/data/database/converters/string_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/database/converters/string_list.dart -------------------------------------------------------------------------------- /app/lib/data/database/converters/uri.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/database/converters/uri.dart -------------------------------------------------------------------------------- /app/lib/data/database/extensions/database_table_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/database/extensions/database_table_size.dart -------------------------------------------------------------------------------- /app/lib/data/database/functions/lexo_rank_functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/database/functions/lexo_rank_functions.dart -------------------------------------------------------------------------------- /app/lib/data/models/drag_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/models/drag_data.dart -------------------------------------------------------------------------------- /app/lib/data/models/received_intent_parameter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/models/received_intent_parameter.dart -------------------------------------------------------------------------------- /app/lib/data/models/web_page_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/models/web_page_info.dart -------------------------------------------------------------------------------- /app/lib/data/models/web_page_info.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/data/models/web_page_info.g.dart -------------------------------------------------------------------------------- /app/lib/domain/entities/equatable_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/entities/equatable_image.dart -------------------------------------------------------------------------------- /app/lib/domain/entities/profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/entities/profile.dart -------------------------------------------------------------------------------- /app/lib/domain/entities/profile.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/entities/profile.g.dart -------------------------------------------------------------------------------- /app/lib/domain/repositories/locale_resolver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/repositories/locale_resolver.dart -------------------------------------------------------------------------------- /app/lib/domain/repositories/locale_resolver.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/repositories/locale_resolver.g.dart -------------------------------------------------------------------------------- /app/lib/domain/services/app_initialization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/services/app_initialization.dart -------------------------------------------------------------------------------- /app/lib/domain/services/app_initialization.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/services/app_initialization.g.dart -------------------------------------------------------------------------------- /app/lib/domain/services/generic_website.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/services/generic_website.dart -------------------------------------------------------------------------------- /app/lib/domain/services/generic_website.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/domain/services/generic_website.g.dart -------------------------------------------------------------------------------- /app/lib/extensions/date_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/date_time.dart -------------------------------------------------------------------------------- /app/lib/extensions/duartion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/duartion.dart -------------------------------------------------------------------------------- /app/lib/extensions/http_encoding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/http_encoding.dart -------------------------------------------------------------------------------- /app/lib/extensions/image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/image.dart -------------------------------------------------------------------------------- /app/lib/extensions/locale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/locale.dart -------------------------------------------------------------------------------- /app/lib/extensions/media_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/media_query.dart -------------------------------------------------------------------------------- /app/lib/extensions/ref_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/ref_cache.dart -------------------------------------------------------------------------------- /app/lib/extensions/string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/string.dart -------------------------------------------------------------------------------- /app/lib/extensions/uri.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/extensions/uri.dart -------------------------------------------------------------------------------- /app/lib/features/about/domain/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/about/domain/providers.dart -------------------------------------------------------------------------------- /app/lib/features/about/domain/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/about/domain/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/about/presentation/screens/about.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/about/presentation/screens/about.dart -------------------------------------------------------------------------------- /app/lib/features/app_widget/domain/services/home_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/app_widget/domain/services/home_widget.dart -------------------------------------------------------------------------------- /app/lib/features/app_widget/domain/services/home_widget.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/app_widget/domain/services/home_widget.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/daos/bang.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/daos/bang.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/daos/bang.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/daos/bang.drift.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/daos/sync.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/daos/sync.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/daos/sync.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/daos/sync.drift.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/database.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/database.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/database.drift.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/database.steps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/database.steps.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/definitions.drift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/definitions.drift -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/definitions.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/definitions.drift.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/drift/converters/bang_format.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/drift/converters/bang_format.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/database/drift/converters/trigger_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/database/drift/converters/trigger_list.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/models/bang.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/models/bang.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/models/bang.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/models/bang.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/models/bang_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/models/bang_data.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/models/bang_data.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/models/bang_data.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/models/bang_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/models/bang_group.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/models/bang_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/models/bang_key.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/models/search_history_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/models/search_history_entry.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/providers.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/services/data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/services/data_source.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/data/services/data_source.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/data/services/data_source.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/domain/providers/bangs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/domain/providers/bangs.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/domain/providers/bangs.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/domain/providers/bangs.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/domain/providers/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/domain/providers/search.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/domain/providers/search.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/domain/providers/search.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/domain/repositories/data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/domain/repositories/data.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/domain/repositories/data.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/domain/repositories/data.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/domain/repositories/sync.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/domain/repositories/sync.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/domain/repositories/sync.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/domain/repositories/sync.g.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/presentation/screens/categories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/presentation/screens/categories.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/presentation/screens/category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/presentation/screens/category.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/presentation/screens/edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/presentation/screens/edit.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/presentation/screens/menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/presentation/screens/menu.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/presentation/screens/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/presentation/screens/search.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/presentation/screens/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/presentation/screens/user.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/presentation/widgets/bang_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/presentation/widgets/bang_details.dart -------------------------------------------------------------------------------- /app/lib/features/bangs/presentation/widgets/site_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/bangs/presentation/widgets/site_search.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/controllers/bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/controllers/bottom_sheet.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/controllers/bottom_sheet.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/controllers/bottom_sheet.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/controllers/overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/controllers/overlay.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/controllers/overlay.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/controllers/overlay.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/browser_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/browser_icon.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/states/find_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/states/find_result.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/states/history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/states/history.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/states/readerable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/states/readerable.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/states/security.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/states/security.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/states/tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/states/tab.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/states/tab.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/states/tab.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/states/web_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/states/web_extension.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/entities/states/web_extension.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/entities/states/web_extension.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/browser_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/browser_extension.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/browser_extension.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/browser_extension.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/desktop_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/desktop_mode.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/desktop_mode.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/desktop_mode.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/selected_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/selected_tab.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/selected_tab.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/selected_tab.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/tab_delete_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/tab_delete_cache.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/tab_delete_cache.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/tab_delete_cache.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/tab_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/tab_list.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/tab_list.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/tab_list.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/tab_session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/tab_session.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/tab_session.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/tab_session.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/tab_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/tab_state.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/tab_state.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/tab_state.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/web_extensions_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/web_extensions_state.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/providers/web_extensions_state.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/providers/web_extensions_state.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/repositories/tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/repositories/tab.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/domain/repositories/tab.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/domain/repositories/tab.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/bookmarks/domain/entities/bookmark_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/bookmarks/domain/entities/bookmark_item.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/bookmarks/domain/entities/bookmark_item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/bookmarks/domain/entities/bookmark_item.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/bookmarks/domain/providers/bookmarks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/bookmarks/domain/providers/bookmarks.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/bookmarks/domain/providers/bookmarks.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/bookmarks/domain/providers/bookmarks.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/bookmarks/domain/repositories/bookmarks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/bookmarks/domain/repositories/bookmarks.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/bookmarks/domain/repositories/bookmarks.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/bookmarks/domain/repositories/bookmarks.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/entities/sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/entities/sheet.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/providers.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/providers/intent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/providers/intent.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/providers/intent.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/providers/intent.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/providers/lifecycle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/providers/lifecycle.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/providers/lifecycle.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/providers/lifecycle.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/services/browser_addon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/services/browser_addon.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/services/browser_addon.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/services/browser_addon.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/services/browser_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/services/browser_data.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/domain/services/browser_data.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/domain/services/browser_data.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/controllers/tree_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/controllers/tree_view.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/dialogs/delete_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/dialogs/delete_data.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/dialogs/qr_code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/dialogs/qr_code.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/dialogs/tab_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/dialogs/tab_tree.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/screens/browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/screens/browser.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/screens/tab_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/screens/tab_view.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/widgets/tab_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/widgets/tab_menu.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/widgets/tab_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/widgets/tab_preview.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/browser/presentation/widgets/view_tabs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/browser/presentation/widgets/view_tabs.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/contextmenu/extensions/hit_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/contextmenu/extensions/hit_result.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/history/domain/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/history/domain/providers.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/history/domain/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/history/domain/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/history/presentation/dialogs/delete_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/history/presentation/dialogs/delete_file.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/history/presentation/screens/history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/history/presentation/screens/history.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/readerview/domain/providers/readerable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/readerview/domain/providers/readerable.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/readerview/domain/providers/readerable.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/readerview/domain/providers/readerable.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/search/domain/entities/tab_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/search/domain/entities/tab_preview.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/search/presentation/screens/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/search/presentation/screens/search.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/search/presentation/widgets/bang_chips.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/search/presentation/widgets/bang_chips.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/search/presentation/widgets/search_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/search/presentation/widgets/search_field.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/database/daos/container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/database/daos/container.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/database/daos/container.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/database/daos/container.drift.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/database/daos/tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/database/daos/tab.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/database/daos/tab.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/database/daos/tab.drift.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/database/database.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/database/database.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/database/database.drift.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/database/definitions.drift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/database/definitions.drift -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/database/definitions.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/database/definitions.drift.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/entities/container_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/entities/container_filter.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/entities/tab_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/entities/tab_entity.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/models/container_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/models/container_data.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/models/container_data.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/models/container_data.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/models/site_assignment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/models/site_assignment.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/models/tab_query_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/models/tab_query_result.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/providers.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/data/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/data/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/providers.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/providers/selected_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/providers/selected_container.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/repositories/container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/repositories/container.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/repositories/container.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/repositories/container.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/repositories/gecko_inference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/repositories/gecko_inference.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/repositories/tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/repositories/tab.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/repositories/tab.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/repositories/tab.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/repositories/tab_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/repositories/tab_search.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/domain/repositories/tab_search.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/domain/repositories/tab_search.g.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/presentation/screens/container_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/presentation/screens/container_edit.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/presentation/screens/container_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/presentation/screens/container_list.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/utils/color_palette.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/utils/color_palette.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/features/tabs/utils/setting_groups_serializer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/features/tabs/utils/setting_groups_serializer.dart -------------------------------------------------------------------------------- /app/lib/features/geckoview/utils/image_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/geckoview/utils/image_helper.dart -------------------------------------------------------------------------------- /app/lib/features/onboarding/presentation/onboarding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/onboarding/presentation/onboarding.dart -------------------------------------------------------------------------------- /app/lib/features/onboarding/presentation/pages/abstract/i_form_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/onboarding/presentation/pages/abstract/i_form_page.dart -------------------------------------------------------------------------------- /app/lib/features/onboarding/presentation/pages/ai_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/onboarding/presentation/pages/ai_configuration.dart -------------------------------------------------------------------------------- /app/lib/features/onboarding/presentation/pages/default_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/onboarding/presentation/pages/default_search.dart -------------------------------------------------------------------------------- /app/lib/features/onboarding/presentation/pages/permissions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/onboarding/presentation/pages/permissions.dart -------------------------------------------------------------------------------- /app/lib/features/onboarding/presentation/pages/ublock_opt_in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/onboarding/presentation/pages/ublock_opt_in.dart -------------------------------------------------------------------------------- /app/lib/features/onboarding/presentation/pages/welcome.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/onboarding/presentation/pages/welcome.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/brave.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/brave.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/brave.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/brave.g.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/duckduckgo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/duckduckgo.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/duckduckgo.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/duckduckgo.g.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/empty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/empty.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/empty.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/empty.g.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/kagi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/kagi.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/kagi.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/kagi.g.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/qwant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/qwant.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/autosuggest/qwant.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/autosuggest/qwant.g.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/entities/abstract/i_query_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/entities/abstract/i_query_builder.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/entities/bareword.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/entities/bareword.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/fts_tokenizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/fts_tokenizer.dart -------------------------------------------------------------------------------- /app/lib/features/search/domain/unix_tokenizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/domain/unix_tokenizer.dart -------------------------------------------------------------------------------- /app/lib/features/search/util/tokenized_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/search/util/tokenized_filter.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/controllers/save_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/controllers/save_settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/controllers/save_settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/controllers/save_settings.g.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/addon_collection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/addon_collection.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/bang_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/bang_settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/developer_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/developer_settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/doh_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/doh_settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/fingerprint_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/fingerprint_settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/general_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/general_settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/locale_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/locale_settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/web_engine_hardening.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/web_engine_hardening.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/web_engine_hardening_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/web_engine_hardening_group.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/screens/web_engine_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/screens/web_engine_settings.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/widgets/bang_group_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/widgets/bang_group_list_tile.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/widgets/bang_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/widgets/bang_icon.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/widgets/custom_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/widgets/custom_list_tile.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/widgets/default_search_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/widgets/default_search_selector.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/widgets/hardening_group_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/widgets/hardening_group_icon.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/widgets/sections.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/widgets/sections.dart -------------------------------------------------------------------------------- /app/lib/features/settings/presentation/widgets/sync_details_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/settings/presentation/widgets/sync_details_table.dart -------------------------------------------------------------------------------- /app/lib/features/share_intent/domain/entities/shared_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/share_intent/domain/entities/shared_content.dart -------------------------------------------------------------------------------- /app/lib/features/share_intent/domain/services/sharing_intent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/share_intent/domain/services/sharing_intent.dart -------------------------------------------------------------------------------- /app/lib/features/share_intent/domain/services/sharing_intent.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/share_intent/domain/services/sharing_intent.g.dart -------------------------------------------------------------------------------- /app/lib/features/tor/data/services/builtin_bridges.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/data/services/builtin_bridges.dart -------------------------------------------------------------------------------- /app/lib/features/tor/data/services/builtin_bridges.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/data/services/builtin_bridges.g.dart -------------------------------------------------------------------------------- /app/lib/features/tor/domain/repositories/builtin_bridges.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/domain/repositories/builtin_bridges.dart -------------------------------------------------------------------------------- /app/lib/features/tor/domain/repositories/builtin_bridges.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/domain/repositories/builtin_bridges.g.dart -------------------------------------------------------------------------------- /app/lib/features/tor/domain/repositories/tor_proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/domain/repositories/tor_proxy.dart -------------------------------------------------------------------------------- /app/lib/features/tor/domain/repositories/tor_proxy.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/domain/repositories/tor_proxy.g.dart -------------------------------------------------------------------------------- /app/lib/features/tor/domain/services/tor_proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/domain/services/tor_proxy.dart -------------------------------------------------------------------------------- /app/lib/features/tor/domain/services/tor_proxy.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/domain/services/tor_proxy.g.dart -------------------------------------------------------------------------------- /app/lib/features/tor/presentation/controllers/start_tor_proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/presentation/controllers/start_tor_proxy.dart -------------------------------------------------------------------------------- /app/lib/features/tor/presentation/controllers/start_tor_proxy.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/presentation/controllers/start_tor_proxy.g.dart -------------------------------------------------------------------------------- /app/lib/features/tor/presentation/screens/tor_proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/presentation/screens/tor_proxy.dart -------------------------------------------------------------------------------- /app/lib/features/tor/presentation/widgets/tor_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/presentation/widgets/tor_dialog.dart -------------------------------------------------------------------------------- /app/lib/features/tor/presentation/widgets/tor_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/presentation/widgets/tor_notification.dart -------------------------------------------------------------------------------- /app/lib/features/tor/utils/tor_entrypoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/tor/utils/tor_entrypoint.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/daos/cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/daos/cache.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/daos/cache.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/daos/cache.drift.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/daos/onboarding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/daos/onboarding.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/daos/onboarding.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/daos/onboarding.drift.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/daos/setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/daos/setting.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/daos/setting.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/daos/setting.drift.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/database.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/database.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/database.drift.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/database.steps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/database.steps.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/definitions.drift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/definitions.drift -------------------------------------------------------------------------------- /app/lib/features/user/data/database/definitions.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/definitions.drift.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/database/riverpod_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/database/riverpod_storage.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/models/engine_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/models/engine_settings.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/models/engine_settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/models/engine_settings.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/models/general_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/models/general_settings.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/models/general_settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/models/general_settings.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/models/rfp_target.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/models/rfp_target.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/models/rfp_target.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/models/rfp_target.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/models/tor_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/models/tor_settings.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/models/tor_settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/models/tor_settings.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/providers.dart -------------------------------------------------------------------------------- /app/lib/features/user/data/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/data/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/entities/auth_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/entities/auth_exception.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/entities/fingerprint_overrides.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/entities/fingerprint_overrides.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/presentation/dialogs/select_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/presentation/dialogs/select_profile.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/presentation/screens/profile_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/presentation/screens/profile_edit.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/presentation/screens/profile_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/presentation/screens/profile_list.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/providers.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/cache.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/cache.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/cache.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/engine_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/engine_settings.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/engine_settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/engine_settings.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/general_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/general_settings.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/general_settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/general_settings.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/onboarding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/onboarding.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/onboarding.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/onboarding.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/profile.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/profile.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/profile.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/tor_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/tor_settings.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/repositories/tor_settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/repositories/tor_settings.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/services/fingerprinting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/services/fingerprinting.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/services/fingerprinting.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/services/fingerprinting.g.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/services/local_authentication.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/services/local_authentication.dart -------------------------------------------------------------------------------- /app/lib/features/user/domain/services/local_authentication.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/user/domain/services/local_authentication.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/converters/feed_authors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/converters/feed_authors.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/converters/feed_categories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/converters/feed_categories.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/converters/feed_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/converters/feed_data.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/converters/feed_links.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/converters/feed_links.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/daos/article.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/daos/article.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/daos/article.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/daos/article.drift.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/daos/feed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/daos/feed.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/daos/feed.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/daos/feed.drift.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/database.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/database.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/database.drift.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/definitions.drift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/definitions.drift -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/database/definitions.drift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/database/definitions.drift.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_article.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_article.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_article.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_article.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_article_query_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_article_query_result.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_author.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_author.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_author.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_author.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_category.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_category.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_category.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_link.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_link.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_link.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_parse_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_parse_result.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/models/feed_parse_result.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/models/feed_parse_result.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/providers.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/data/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/data/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/providers.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/providers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/providers.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/providers/add_dialog_blocking.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/providers/add_dialog_blocking.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/providers/add_dialog_blocking.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/providers/add_dialog_blocking.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/providers/article_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/providers/article_filter.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/providers/article_filter.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/providers/article_filter.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/repositories/feed_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/repositories/feed_repository.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/repositories/feed_repository.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/repositories/feed_repository.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/services/article_content_processor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/services/article_content_processor.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/services/article_content_processor.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/services/article_content_processor.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/services/feed_reader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/services/feed_reader.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/domain/services/feed_reader.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/domain/services/feed_reader.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/extensions/atom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/extensions/atom.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/extensions/feed_article.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/extensions/feed_article.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/extensions/rss.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/extensions/rss.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/extensions/web_feed_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/extensions/web_feed_converter.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/add_feed_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/add_feed_dialog.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/controllers/fetch_articles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/controllers/fetch_articles.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/controllers/fetch_articles.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/controllers/fetch_articles.g.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/screens/feed_article.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/screens/feed_article.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/screens/feed_article_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/screens/feed_article_list.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/screens/feed_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/screens/feed_edit.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/screens/feed_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/screens/feed_list.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/select_feed_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/select_feed_dialog.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/widgets/authors_horizontal_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/widgets/authors_horizontal_list.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/widgets/feed_article_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/widgets/feed_article_card.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/widgets/feed_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/widgets/feed_card.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/widgets/tag_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/widgets/tag_field.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/presentation/widgets/tags_horizontal_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/presentation/widgets/tags_horizontal_list.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/utils/feed_finder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/utils/feed_finder.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/utils/feed_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/utils/feed_parser.dart -------------------------------------------------------------------------------- /app/lib/features/web_feed/utils/fetch_entrypoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/features/web_feed/utils/fetch_entrypoint.dart -------------------------------------------------------------------------------- /app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/main.dart -------------------------------------------------------------------------------- /app/lib/presentation/controllers/website_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/controllers/website_title.dart -------------------------------------------------------------------------------- /app/lib/presentation/controllers/website_title.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/controllers/website_title.g.dart -------------------------------------------------------------------------------- /app/lib/presentation/hooks/cached_future.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/hooks/cached_future.dart -------------------------------------------------------------------------------- /app/lib/presentation/hooks/listenable_callback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/hooks/listenable_callback.dart -------------------------------------------------------------------------------- /app/lib/presentation/hooks/menu_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/hooks/menu_controller.dart -------------------------------------------------------------------------------- /app/lib/presentation/hooks/on_dispose.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/hooks/on_dispose.dart -------------------------------------------------------------------------------- /app/lib/presentation/hooks/on_initialization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/hooks/on_initialization.dart -------------------------------------------------------------------------------- /app/lib/presentation/hooks/sampled_value_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/hooks/sampled_value_notifier.dart -------------------------------------------------------------------------------- /app/lib/presentation/hooks/sync_page_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/hooks/sync_page_tab.dart -------------------------------------------------------------------------------- /app/lib/presentation/icons/tor_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/icons/tor_icons.dart -------------------------------------------------------------------------------- /app/lib/presentation/main_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/main_app.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/animate_gradient_shader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/animate_gradient_shader.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/animated_indexed_stack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/animated_indexed_stack.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/auto_suggest_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/auto_suggest_text_field.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/failure_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/failure_widget.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/rounded_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/rounded_text.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/selectable_chips.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/selectable_chips.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/share_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/share_tile.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/speech_to_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/speech_to_text_button.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/uri_breadcrumb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/uri_breadcrumb.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/url_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/url_icon.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/website_feed_menu_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/website_feed_menu_button.dart -------------------------------------------------------------------------------- /app/lib/presentation/widgets/website_title_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/presentation/widgets/website_title_tile.dart -------------------------------------------------------------------------------- /app/lib/utils/clipboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/clipboard.dart -------------------------------------------------------------------------------- /app/lib/utils/debouncer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/debouncer.dart -------------------------------------------------------------------------------- /app/lib/utils/exit_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/exit_app.dart -------------------------------------------------------------------------------- /app/lib/utils/filesystem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/filesystem.dart -------------------------------------------------------------------------------- /app/lib/utils/form_validators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/form_validators.dart -------------------------------------------------------------------------------- /app/lib/utils/lru_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/lru_cache.dart -------------------------------------------------------------------------------- /app/lib/utils/markdown/image_extractor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/markdown/image_extractor.dart -------------------------------------------------------------------------------- /app/lib/utils/platform_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/platform_util.dart -------------------------------------------------------------------------------- /app/lib/utils/sampled_value_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/sampled_value_notifier.dart -------------------------------------------------------------------------------- /app/lib/utils/text_field_line_count.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/text_field_line_count.dart -------------------------------------------------------------------------------- /app/lib/utils/ui_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/ui_helper.dart -------------------------------------------------------------------------------- /app/lib/utils/uri_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/lib/utils/uri_parser.dart -------------------------------------------------------------------------------- /app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/pubspec.yaml -------------------------------------------------------------------------------- /app/scripts/download_bangs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/scripts/download_bangs.sh -------------------------------------------------------------------------------- /app/test/drift/bangs/generated/schema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/bangs/generated/schema.dart -------------------------------------------------------------------------------- /app/test/drift/bangs/generated/schema_v1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/bangs/generated/schema_v1.dart -------------------------------------------------------------------------------- /app/test/drift/bangs/generated/schema_v2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/bangs/generated/schema_v2.dart -------------------------------------------------------------------------------- /app/test/drift/bangs/generated/schema_v3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/bangs/generated/schema_v3.dart -------------------------------------------------------------------------------- /app/test/drift/bangs/generated/schema_v4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/bangs/generated/schema_v4.dart -------------------------------------------------------------------------------- /app/test/drift/bangs/migration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/bangs/migration_test.dart -------------------------------------------------------------------------------- /app/test/drift/user/generated/schema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/user/generated/schema.dart -------------------------------------------------------------------------------- /app/test/drift/user/generated/schema_v1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/user/generated/schema_v1.dart -------------------------------------------------------------------------------- /app/test/drift/user/generated/schema_v2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/user/generated/schema_v2.dart -------------------------------------------------------------------------------- /app/test/drift/user/migration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/app/test/drift/user/migration_test.dart -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/devtools_options.yaml -------------------------------------------------------------------------------- /metadata/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | * Initial release -------------------------------------------------------------------------------- /metadata/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/14.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/16.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/17.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/18.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/19.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/20.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/21.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/22.txt: -------------------------------------------------------------------------------- 1 | * Fix icon caching issue -------------------------------------------------------------------------------- /metadata/en-US/changelogs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/23.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/24.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/25.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/26.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/27.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/28.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/29.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/30.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/31.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/32.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/changelogs/33.txt -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- 1 | ../../../app/assets/icon/icon.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | WebLibre: Private Browser -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/.gitignore -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/.metadata -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/LICENSE -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/README.md -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/analysis_options.yaml -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/android/.gitignore -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/android/build.gradle -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'flutter_mozilla_components' 2 | -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/src/main/assets/extensions/browser_extension/readability.min.js: -------------------------------------------------------------------------------- 1 | ../../../../../../javascript/readability/dist/readability.min.js -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/src/main/assets/extensions/container_proxy: -------------------------------------------------------------------------------- 1 | ../../../../../javascript/container_proxy/dist/ -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/src/main/assets/extensions/readability_extract/readability.min.js: -------------------------------------------------------------------------------- 1 | ../../../../../../javascript/readability/dist/readability.min.js -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/.gitignore -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/README.md -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/android/.gitignore -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/android/app/build.gradle -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/android/build.gradle -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/android/gradle.properties -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/android/settings.gradle -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/lib/main.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/example/test/widget_test.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/.gitignore -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/.gitignore -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/LICENSE -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/NOTES_TO_REVIEWER.md: -------------------------------------------------------------------------------- 1 | # Notes to Reviewer 2 | 3 | -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/README.md -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/declarations.d.ts -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/package-lock.json -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/package.json -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/src/manifest.json -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/src/package.json: -------------------------------------------------------------------------------- 1 | {"name": "container-proxy-src", "private": true} 2 | -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/src/store/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/src/store/Store.ts -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/test/infrastructure/http/squidpass: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | user:$apr1$L24dGKxY$xqj/npbeiBkMZEH7s9Iae/ 5 | -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/tsconfig.json -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/container_proxy/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/container_proxy/webpack.config.js -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/readability/dist/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/readability/dist/report.html -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/readability/dist/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/readability/dist/stats.json -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/readability/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/readability/package-lock.json -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/readability/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/readability/package.json -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/readability/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/readability/src/index.js -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/javascript/readability/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/javascript/readability/webpack.config.js -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/flutter_mozilla_components.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/flutter_mozilla_components.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/ml_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/ml_utils.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/data/models/load_url_flags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/data/models/load_url_flags.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/data/models/source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/data/models/source.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/entities/turndown_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/entities/turndown_result.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_addon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_addon.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_bookmarks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_bookmarks.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_browser.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_cookie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_cookie.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_downloads.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_downloads.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_event.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_history.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_icon.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_logging.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_ml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_ml.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_pref.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_pref.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_readerable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_readerable.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_session.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/domain/services/gecko_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/domain/services/gecko_tab.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/extensions/subject.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/extensions/subject.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/geckoview_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/geckoview_widget.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/pigeons/gecko.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/pigeons/gecko.g.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/utils/ml/cluster.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/utils/ml/cluster.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/utils/ml/cluster_algo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/utils/ml/cluster_algo.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/utils/ml/cosine_similarity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/utils/ml/cosine_similarity.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/lib/src/utils/ml/nearest_neighbor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/lib/src/utils/ml/nearest_neighbor.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/pigeons/gecko.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/pigeons/gecko.dart -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/pubspec.yaml -------------------------------------------------------------------------------- /packages/flutter_mozilla_components/test/text_processing_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/flutter_mozilla_components/test/text_processing_test.dart -------------------------------------------------------------------------------- /packages/locale_resolver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/.gitignore -------------------------------------------------------------------------------- /packages/locale_resolver/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/.metadata -------------------------------------------------------------------------------- /packages/locale_resolver/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/locale_resolver/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/locale_resolver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/README.md -------------------------------------------------------------------------------- /packages/locale_resolver/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/analysis_options.yaml -------------------------------------------------------------------------------- /packages/locale_resolver/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/android/.gitignore -------------------------------------------------------------------------------- /packages/locale_resolver/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/android/build.gradle -------------------------------------------------------------------------------- /packages/locale_resolver/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'locale_resolver' 2 | -------------------------------------------------------------------------------- /packages/locale_resolver/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/locale_resolver/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/.gitignore -------------------------------------------------------------------------------- /packages/locale_resolver/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/README.md -------------------------------------------------------------------------------- /packages/locale_resolver/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/.gitignore -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/app/build.gradle.kts -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/build.gradle.kts -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/gradle.properties -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /packages/locale_resolver/example/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/android/settings.gradle.kts -------------------------------------------------------------------------------- /packages/locale_resolver/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/lib/main.dart -------------------------------------------------------------------------------- /packages/locale_resolver/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/locale_resolver/lib/locale_resolver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/lib/locale_resolver.dart -------------------------------------------------------------------------------- /packages/locale_resolver/lib/src/pigeons/locales.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/lib/src/pigeons/locales.g.dart -------------------------------------------------------------------------------- /packages/locale_resolver/pigeons/locales.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/pigeons/locales.dart -------------------------------------------------------------------------------- /packages/locale_resolver/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/locale_resolver/pubspec.yaml -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/.gitignore -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/.metadata -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/README.md -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/analysis_options.yaml -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/android/.gitignore -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/android/build.gradle -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'pluggable_transports_proxy' 2 | -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/lib/pluggable_transports_proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/lib/pluggable_transports_proxy.dart -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/lib/src/data/models/moat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/lib/src/data/models/moat.dart -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/lib/src/data/models/moat.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/lib/src/data/models/moat.g.dart -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/lib/src/data/service/moat_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/lib/src/data/service/moat_api.dart -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/lib/src/data/service/moat_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/lib/src/data/service/moat_service.dart -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/lib/src/pigeons/proxy.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/lib/src/pigeons/proxy.g.dart -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/pigeons/proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/pigeons/proxy.dart -------------------------------------------------------------------------------- /packages/pluggable_transports_proxy/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/pluggable_transports_proxy/pubspec.yaml -------------------------------------------------------------------------------- /packages/simple_intent_receiver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/.gitignore -------------------------------------------------------------------------------- /packages/simple_intent_receiver/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/.metadata -------------------------------------------------------------------------------- /packages/simple_intent_receiver/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/simple_intent_receiver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/LICENSE -------------------------------------------------------------------------------- /packages/simple_intent_receiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/README.md -------------------------------------------------------------------------------- /packages/simple_intent_receiver/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/analysis_options.yaml -------------------------------------------------------------------------------- /packages/simple_intent_receiver/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/android/.gitignore -------------------------------------------------------------------------------- /packages/simple_intent_receiver/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/android/build.gradle -------------------------------------------------------------------------------- /packages/simple_intent_receiver/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'simple_intent_receiver' 2 | -------------------------------------------------------------------------------- /packages/simple_intent_receiver/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/.gitignore -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/README.md -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/android/.gitignore -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/android/app/build.gradle.kts -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/android/build.gradle.kts -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/android/gradle.properties -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/android/settings.gradle.kts -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/lib/main.dart -------------------------------------------------------------------------------- /packages/simple_intent_receiver/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/simple_intent_receiver/lib/simple_intent_receiver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/lib/simple_intent_receiver.dart -------------------------------------------------------------------------------- /packages/simple_intent_receiver/lib/src/intent_receiver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/lib/src/intent_receiver.dart -------------------------------------------------------------------------------- /packages/simple_intent_receiver/lib/src/pigeons/intent.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/lib/src/pigeons/intent.g.dart -------------------------------------------------------------------------------- /packages/simple_intent_receiver/pigeons/intent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/pigeons/intent.dart -------------------------------------------------------------------------------- /packages/simple_intent_receiver/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/simple_intent_receiver/pubspec.yaml -------------------------------------------------------------------------------- /packages/tor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/.gitignore -------------------------------------------------------------------------------- /packages/tor/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/.metadata -------------------------------------------------------------------------------- /packages/tor/.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/.reuse/dep5 -------------------------------------------------------------------------------- /packages/tor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/CHANGELOG.md -------------------------------------------------------------------------------- /packages/tor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/LICENSE -------------------------------------------------------------------------------- /packages/tor/LICENSE.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/LICENSE.license -------------------------------------------------------------------------------- /packages/tor/LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/LICENSES/MIT.txt -------------------------------------------------------------------------------- /packages/tor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/README.md -------------------------------------------------------------------------------- /packages/tor/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/analysis_options.yaml -------------------------------------------------------------------------------- /packages/tor/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/android/.gitignore -------------------------------------------------------------------------------- /packages/tor/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/android/build.gradle -------------------------------------------------------------------------------- /packages/tor/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/android/settings.gradle -------------------------------------------------------------------------------- /packages/tor/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/tor/cargokit/.github/workflows/check_and_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/.github/workflows/check_and_lint.yml -------------------------------------------------------------------------------- /packages/tor/cargokit/.github/workflows/test_example_plugin_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/.github/workflows/test_example_plugin_build.yml -------------------------------------------------------------------------------- /packages/tor/cargokit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/.gitignore -------------------------------------------------------------------------------- /packages/tor/cargokit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/LICENSE -------------------------------------------------------------------------------- /packages/tor/cargokit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/README -------------------------------------------------------------------------------- /packages/tor/cargokit/README.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/README.license -------------------------------------------------------------------------------- /packages/tor/cargokit/build_pod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_pod.sh -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/README.md -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/analysis_options.yaml -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/bin/build_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/bin/build_tool.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/build_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/build_tool.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/android_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/android_environment.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/artifacts_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/artifacts_provider.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/build_cmake.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/build_cmake.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/build_gradle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/build_gradle.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/build_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/build_pod.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/build_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/build_tool.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/builder.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/cargo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/cargo.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/crate_hash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/crate_hash.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/environment.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/logging.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/options.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/precompile_binaries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/precompile_binaries.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/rustup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/rustup.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/target.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/target.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/util.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/lib/src/verify_binaries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/lib/src/verify_binaries.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/pubspec.lock -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/pubspec.lock.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/pubspec.lock.license -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/pubspec.yaml -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/test/builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/test/builder_test.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/test/cargo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/test/cargo_test.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/test/options_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/test/options_test.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/build_tool/test/rustup_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/build_tool/test/rustup_test.dart -------------------------------------------------------------------------------- /packages/tor/cargokit/cmake/cargokit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/cmake/cargokit.cmake -------------------------------------------------------------------------------- /packages/tor/cargokit/cmake/resolve_symlinks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/cmake/resolve_symlinks.ps1 -------------------------------------------------------------------------------- /packages/tor/cargokit/docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/docs/architecture.md -------------------------------------------------------------------------------- /packages/tor/cargokit/docs/precompiled_binaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/docs/precompiled_binaries.md -------------------------------------------------------------------------------- /packages/tor/cargokit/gradle/plugin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/gradle/plugin.gradle -------------------------------------------------------------------------------- /packages/tor/cargokit/run_build_tool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/run_build_tool.cmd -------------------------------------------------------------------------------- /packages/tor/cargokit/run_build_tool.cmd.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/run_build_tool.cmd.license -------------------------------------------------------------------------------- /packages/tor/cargokit/run_build_tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/cargokit/run_build_tool.sh -------------------------------------------------------------------------------- /packages/tor/ios/Classes/tor_ffi_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/ios/Classes/tor_ffi_plugin.c -------------------------------------------------------------------------------- /packages/tor/ios/tor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/ios/tor.podspec -------------------------------------------------------------------------------- /packages/tor/ios/tor.podspec.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/ios/tor.podspec.license -------------------------------------------------------------------------------- /packages/tor/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/justfile -------------------------------------------------------------------------------- /packages/tor/justfile.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/justfile.license -------------------------------------------------------------------------------- /packages/tor/lib/src/generated_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/lib/src/generated_bindings.dart -------------------------------------------------------------------------------- /packages/tor/lib/src/tor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/lib/src/tor.dart -------------------------------------------------------------------------------- /packages/tor/lib/tor.dart: -------------------------------------------------------------------------------- 1 | export 'src/tor.dart'; 2 | -------------------------------------------------------------------------------- /packages/tor/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/linux/CMakeLists.txt -------------------------------------------------------------------------------- /packages/tor/macos/Classes/tor_ffi_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/macos/Classes/tor_ffi_plugin.c -------------------------------------------------------------------------------- /packages/tor/macos/tor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/macos/tor.podspec -------------------------------------------------------------------------------- /packages/tor/macos/tor.podspec.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/macos/tor.podspec.license -------------------------------------------------------------------------------- /packages/tor/pubspec.lock.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/pubspec.lock.license -------------------------------------------------------------------------------- /packages/tor/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/pubspec.yaml -------------------------------------------------------------------------------- /packages/tor/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/Cargo.lock -------------------------------------------------------------------------------- /packages/tor/rust/Cargo.lock.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/Cargo.lock.license -------------------------------------------------------------------------------- /packages/tor/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/Cargo.toml -------------------------------------------------------------------------------- /packages/tor/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/build.rs -------------------------------------------------------------------------------- /packages/tor/rust/rust-toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/rust-toolchain -------------------------------------------------------------------------------- /packages/tor/rust/rust-toolchain.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/rust-toolchain.license -------------------------------------------------------------------------------- /packages/tor/rust/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/src/error.rs -------------------------------------------------------------------------------- /packages/tor/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/src/lib.rs -------------------------------------------------------------------------------- /packages/tor/rust/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/src/util.rs -------------------------------------------------------------------------------- /packages/tor/rust/target/tor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/rust/target/tor.h -------------------------------------------------------------------------------- /packages/tor/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/windows/.gitignore -------------------------------------------------------------------------------- /packages/tor/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/packages/tor/windows/CMakeLists.txt -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /scripts/build-container-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/scripts/build-container-proxy.sh -------------------------------------------------------------------------------- /scripts/build-readability.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/scripts/build-readability.sh -------------------------------------------------------------------------------- /scripts/update-bridges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaFre/WebLibre/HEAD/scripts/update-bridges.sh --------------------------------------------------------------------------------