├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build-android-app.yml │ ├── build-flatpak.yml │ ├── build-ios-app.yml │ ├── deployment-docker.yml │ └── tests.yml ├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── LICENCE ├── README.md ├── READMEold.md ├── analysis_options.yaml ├── android ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── de │ │ │ │ └── lox │ │ │ │ └── dev │ │ │ │ └── camelus │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── launcher_icon.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 ├── fastlane │ ├── Appfile │ ├── Fastfile │ ├── README.md │ └── metadata │ │ └── android │ │ └── en-GB │ │ ├── full_description.txt │ │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1_en-GB.png │ │ │ ├── 2_en-GB.png │ │ │ ├── 3_en-GB.png │ │ │ ├── 4_en-GB.png │ │ │ └── 5_en-GB.png │ │ ├── short_description.txt │ │ ├── title.txt │ │ └── video.txt ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── apipod ├── .github │ └── workflows │ │ ├── deployment-aws.yml │ │ └── deployment-gcp.yml ├── apipod_client │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── analysis_options.yaml │ ├── dartdoc_options.yaml │ ├── doc │ │ └── endpoint.md │ ├── lib │ │ ├── apipod_client.dart │ │ └── src │ │ │ └── protocol │ │ │ ├── app_update_data.dart │ │ │ ├── bloom_filter_data.dart │ │ │ ├── bloom_filter_events.dart │ │ │ ├── bloom_filter_profiles.dart │ │ │ ├── client.dart │ │ │ ├── example.dart │ │ │ ├── nip05 │ │ │ ├── check_name_result_spy.dart │ │ │ ├── nip_05_data_spy.dart │ │ │ └── nip_05_response_spy.dart │ │ │ ├── nostr_band │ │ │ ├── nostr_band_hashtags.dart │ │ │ ├── nostr_band_hastag_info.dart │ │ │ ├── nostr_band_people.dart │ │ │ └── nostr_band_profiles.dart │ │ │ ├── protocol.dart │ │ │ ├── reports_incoming.dart │ │ │ ├── short_links │ │ │ └── short_link_invite_data.dart │ │ │ └── subscription.dart │ └── pubspec.yaml └── apipod_server │ ├── .gcloudignore │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── Dockerfile.prod │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ └── main.dart │ ├── config │ ├── development.yaml │ ├── generator.yaml │ ├── production.yaml │ ├── staging.yaml │ └── test.yaml │ ├── dart_test.yaml │ ├── deploy │ ├── aws │ │ ├── scripts │ │ │ ├── appspec.yml │ │ │ ├── install_dependencies │ │ │ ├── run_serverpod │ │ │ └── start_server │ │ └── terraform │ │ │ ├── balancers-staging.tf │ │ │ ├── balancers.tf │ │ │ ├── cloudfront-web-staging.tf │ │ │ ├── cloudfront-web.tf │ │ │ ├── code-deploy.tf │ │ │ ├── config.auto.tfvars │ │ │ ├── database.tf │ │ │ ├── init-script.sh │ │ │ ├── instances.tf │ │ │ ├── main.tf │ │ │ ├── redis.tf │ │ │ ├── staging.tf │ │ │ ├── storage.tf │ │ │ ├── variables.tf │ │ │ └── vpc.tf │ └── gcp │ │ ├── console_gcr │ │ └── cloud-run-deploy.sh │ │ └── terraform_gce │ │ ├── config.auto.tfvars │ │ ├── main.tf │ │ └── variables.tf │ ├── devtools_options.yaml │ ├── docker-compose.production.yaml │ ├── docker-compose.yaml │ ├── lib │ ├── server.dart │ └── src │ │ ├── config │ │ ├── push_config.dart │ │ └── service_config.dart │ │ ├── endpoints │ │ ├── app_update_endpoint.dart │ │ ├── link_shorter │ │ │ └── link_shorter_endpoint.dart │ │ ├── moderation │ │ │ ├── moderation_endpoint.dart │ │ │ └── process_report.dart │ │ ├── nip05 │ │ │ ├── disallowed_words.dart │ │ │ ├── name_suggestions.dart │ │ │ └── nip05_endpoint.dart │ │ ├── nostr_band │ │ │ └── nostr_band_endpoint.dart │ │ └── push │ │ │ ├── database_operations.dart │ │ │ ├── nostr_push_endpoint.dart │ │ │ ├── nostr_utils.dart │ │ │ ├── relay.dart │ │ │ └── relay_pool.dart │ │ ├── example_util.dart │ │ ├── future_calls │ │ └── example_future_call.dart │ │ ├── generated │ │ ├── app_update_data.dart │ │ ├── bloom_filter_data.dart │ │ ├── bloom_filter_events.dart │ │ ├── bloom_filter_profiles.dart │ │ ├── endpoints.dart │ │ ├── example.dart │ │ ├── nip05 │ │ │ ├── check_name_result_spy.dart │ │ │ ├── nip_05_data_spy.dart │ │ │ └── nip_05_response_spy.dart │ │ ├── nostr_band │ │ │ ├── nostr_band_hashtags.dart │ │ │ ├── nostr_band_hastag_info.dart │ │ │ ├── nostr_band_people.dart │ │ │ └── nostr_band_profiles.dart │ │ ├── protocol.dart │ │ ├── protocol.yaml │ │ ├── reports_incoming.dart │ │ ├── short_links │ │ │ └── short_link_invite_data.dart │ │ └── subscription.dart │ │ ├── models │ │ ├── app_update_data.spy.yaml │ │ ├── bloom_filter_data.spy.yaml │ │ ├── bloom_filter_events.spy.yaml │ │ ├── bloom_filter_profiles.spy.yaml │ │ ├── example.spy.yaml │ │ ├── nip05 │ │ │ ├── check_name_result_spy.yaml │ │ │ ├── nip_05_data_spy.yaml │ │ │ └── nip_05_response_spy.yaml │ │ ├── nostr_band │ │ │ ├── nostr_band_hashtags.spy.yaml │ │ │ ├── nostr_band_hastag_info.spy.yaml │ │ │ ├── nostr_band_people.spy.yaml │ │ │ └── nostr_band_profiles.spy.yaml │ │ ├── reports_incoming.spy.yaml │ │ ├── short_links │ │ │ └── short_link_invite_data.spy.yaml │ │ └── subscription.yaml │ │ └── web │ │ ├── routes │ │ └── root.dart │ │ └── widgets │ │ └── default_page_widget.dart │ ├── migrations │ ├── 20250315093016525 │ │ ├── definition.json │ │ ├── definition.sql │ │ ├── definition_project.json │ │ ├── migration.json │ │ └── migration.sql │ ├── 20250320134010505 │ │ ├── definition.json │ │ ├── definition.sql │ │ ├── definition_project.json │ │ ├── migration.json │ │ └── migration.sql │ ├── 20250324103632861 │ │ ├── definition.json │ │ ├── definition.sql │ │ ├── definition_project.json │ │ ├── migration.json │ │ └── migration.sql │ ├── 20250329152226716 │ │ ├── definition.json │ │ ├── definition.sql │ │ ├── definition_project.json │ │ ├── migration.json │ │ └── migration.sql │ ├── 20250329160105837 │ │ ├── definition.json │ │ ├── definition.sql │ │ ├── definition_project.json │ │ ├── migration.json │ │ └── migration.sql │ ├── 20250611091638781 │ │ ├── definition.json │ │ ├── definition.sql │ │ ├── definition_project.json │ │ ├── migration.json │ │ └── migration.sql │ └── migration_registry.txt │ ├── pgbackrest │ └── pgbackrest.conf │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── repair-migration │ └── 20250329160134665.sql │ ├── test │ ├── integration │ │ └── test_tools │ │ │ └── serverpod_test_tools.dart │ └── unit │ │ └── example_util_test.dart │ └── web │ ├── static │ ├── css │ │ └── style.css │ └── images │ │ ├── background.svg │ │ └── serverpod-logo.svg │ └── templates │ └── default.html ├── assets ├── app_icons │ ├── icon.png │ ├── icon_bg.png │ └── icon_fg.png ├── icons │ ├── arrowBack.svg │ ├── bookmark-simple.svg │ ├── chat-teardrop-text.svg │ ├── eye.svg │ ├── file-video.svg │ ├── heart.svg │ ├── image.svg │ ├── lightning-fill.svg │ ├── lightning.svg │ ├── nostr.svg │ ├── paper-plane-tilt.svg │ ├── pen.svg │ ├── profile.svg │ ├── qr-code.svg │ ├── question.svg │ ├── retweet.svg │ ├── share.svg │ ├── speaker-simple-slash.svg │ ├── sun.svg │ ├── target.svg │ ├── tweetSetting.svg │ ├── user.svg │ ├── x.svg │ └── yin-yang.svg ├── images │ └── list_placeholder.png └── lottie │ └── spinner.json ├── dart_defines.json.example ├── devtools_options.yaml ├── docs ├── README.md └── screenshots │ ├── feed.png │ ├── following.png │ ├── profile_1.png │ ├── profile_2.png │ ├── pull_to_refresh.png │ ├── seed_phrase.png │ ├── thread.png │ └── write_post.png ├── flutter_launcher_icons.yaml ├── fonts └── Poppins │ ├── Poppins-Black.ttf │ ├── Poppins-BlackItalic.ttf │ ├── Poppins-Bold.ttf │ ├── Poppins-BoldItalic.ttf │ ├── Poppins-ExtraBold.ttf │ ├── Poppins-ExtraBoldItalic.ttf │ ├── Poppins-ExtraLight.ttf │ ├── Poppins-ExtraLightItalic.ttf │ ├── Poppins-Italic.ttf │ ├── Poppins-Light.ttf │ ├── Poppins-LightItalic.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-MediumItalic.ttf │ ├── Poppins-Regular.ttf │ ├── Poppins-SemiBold.ttf │ ├── Poppins-SemiBoldItalic.ttf │ ├── Poppins-Thin.ttf │ └── Poppins-ThinItalic.ttf ├── integration_test └── onboarding_test.dart ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Gemfile ├── Matchfile ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-50x50@1x.png │ │ │ ├── Icon-App-50x50@2x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── l10n.yaml ├── lib ├── config │ ├── amber_url.dart │ ├── app_update_config.dart │ ├── camelus_config.dart │ ├── default_blossom.dart │ ├── default_relays.dart │ ├── default_suggestions.dart │ ├── dicebear.dart │ ├── feeds_config.dart │ └── onboard_conf.dart ├── data_layer │ ├── data_sources │ │ ├── api_nostr_band_data_source.dart │ │ ├── blossom_file_upload.dart │ │ ├── dart_ndk_source.dart │ │ ├── http_request_data_source.dart │ │ ├── nostr_build_file_upload.dart │ │ ├── notification_data_source.dart │ │ └── serverpod_data_source.dart │ ├── db │ │ └── object_box_camelus │ │ │ ├── db_camelus.dart │ │ │ ├── db_camelus_init.dart │ │ │ └── schema │ │ │ └── db_key_value.dart │ ├── models │ │ ├── app_update_model.dart │ │ ├── bloom_filter_data_model.dart │ │ ├── contact_list_model.dart │ │ ├── mem_file_model.dart │ │ ├── nip05_model.dart │ │ ├── nip_65_model.dart │ │ ├── nostr_band_hashtags_model.dart │ │ ├── nostr_band_people_model.dart │ │ ├── nostr_lists_model.dart │ │ ├── nostr_note_model.dart │ │ ├── nostr_request.dart │ │ ├── nostr_request_close.dart │ │ ├── nostr_request_query.dart │ │ ├── nostr_tag_model.dart │ │ ├── post_context.dart │ │ ├── tweet_control.dart │ │ └── user_metadata_model.dart │ └── repositories │ │ ├── app_update_repository_impl.dart │ │ ├── database_repository_impl.dart │ │ ├── edit_relays_repository_impl.dart │ │ ├── file_upload_repository_impl.dart │ │ ├── follow_repository_impl.dart │ │ ├── inbox_outbox_repository_impl.dart │ │ ├── metadata_repository_impl.dart │ │ ├── moderation_repository_impl.dart │ │ ├── nip05_repository_impl.dart │ │ ├── nostr_band_repository_impl.dart │ │ ├── nostr_list_repository_impl.dart │ │ ├── note_repository_impl.dart │ │ ├── notifications │ │ └── notifications_repository_impl.dart │ │ └── search_repository_impl.dart ├── domain_layer │ ├── entities │ │ ├── app_update.dart │ │ ├── bloom_filter_data.dart │ │ ├── contact_list.dart │ │ ├── feed_event_view_model.dart │ │ ├── feed_filter.dart │ │ ├── feed_view_model.dart │ │ ├── generated_private_key.dart │ │ ├── invite_data.dart │ │ ├── key_pair.dart │ │ ├── mem_file.dart │ │ ├── nip05.dart │ │ ├── nip_65.dart │ │ ├── nostr_band_hashtags.dart │ │ ├── nostr_band_people.dart │ │ ├── nostr_list.dart │ │ ├── nostr_note.dart │ │ ├── nostr_tag.dart │ │ ├── onboarding_user_info.dart │ │ ├── parsed_post.dart │ │ ├── relay.dart │ │ ├── starter_pack_identifier.dart │ │ ├── stored_account.dart │ │ ├── tree_node.dart │ │ └── user_metadata.dart │ ├── repositories │ │ ├── app_db.dart │ │ ├── app_update_repository.dart │ │ ├── database_repository.dart │ │ ├── edit_relays_repository.dart │ │ ├── follow_repository.dart │ │ ├── inbox_outbox_repository.dart │ │ ├── metadata_repository.dart │ │ ├── moderation_repository.dart │ │ ├── nip05_repository.dart │ │ ├── nostr_band_repository.dart │ │ ├── nostr_list_repository.dart │ │ ├── note_repository.dart │ │ ├── notifications_repository.dart │ │ ├── search_repository.dart │ │ └── upload_file_repository.dart │ └── usecases │ │ ├── app_auth.dart │ │ ├── check_app_update.dart │ │ ├── edit_relays.dart │ │ ├── file_upload.dart │ │ ├── follow.dart │ │ ├── generate_private_key.dart │ │ ├── get_nostr_band_hashtags.dart │ │ ├── get_nostr_lists.dart │ │ ├── get_notes.dart │ │ ├── get_user_metadata.dart │ │ ├── inbox_outbox.dart │ │ ├── initial_route.dart │ │ ├── moderation.dart │ │ ├── notifications.dart │ │ ├── onboard.dart │ │ ├── remove_image_metadata.dart │ │ ├── search.dart │ │ ├── user_reactions.dart │ │ ├── user_reposts.dart │ │ └── verify_nip05.dart ├── firebase_options.dart ├── helpers │ ├── bip340.dart │ ├── bloom_filter.dart │ ├── bloom_filter_prehash.dart │ ├── helpers.dart │ ├── nevent_helper.dart │ ├── nprofile_helper.dart │ └── tlv_helpers.dart ├── l10n │ ├── app_de.arb │ ├── app_en.arb │ ├── app_es.arb │ ├── app_fr.arb │ ├── app_ja.arb │ ├── app_pt.arb │ ├── app_ru.arb │ ├── app_th.arb │ └── app_zh.arb ├── lifecycle │ ├── app_init_shell.dart │ ├── connectivity │ │ └── connectivity.dart │ ├── deeplinks │ │ └── deep_link_service.dart │ └── notifications │ │ ├── background_notifications_thread.dart │ │ ├── init_firebase.dart │ │ ├── notifications_caller.dart │ │ └── process_fcm_msg.dart ├── main.dart ├── objectbox-model.json ├── objectbox.g.dart ├── objectbox_isolate.dart ├── presentation_layer │ ├── atoms │ │ ├── app_logo.dart │ │ ├── back_button_round.dart │ │ ├── camer_upload.dart │ │ ├── crop_avatar.dart │ │ ├── follow_button.dart │ │ ├── hashtag_card.dart │ │ ├── icon_patter.dart │ │ ├── long_button.dart │ │ ├── mnemonic_grid.dart │ │ ├── my_profile_picture.dart │ │ ├── new_posts_available.dart │ │ ├── nip_05_text.dart │ │ ├── overlapting_avatars.dart │ │ ├── picture.dart │ │ ├── refresh_indicator_no_need.dart │ │ ├── round_image_border.dart │ │ ├── rounded_corner_painer.dart │ │ └── spinner_center.dart │ ├── components │ │ ├── app_bottom_navigation_bar │ │ │ └── app_bottom_navigation_bar.dart │ │ ├── bottom_sheet_share.dart │ │ ├── comments_section.dart │ │ ├── drawer │ │ │ ├── nostr_drawer.dart │ │ │ ├── nostr_side_menu.dart │ │ │ ├── nostr_side_menu_post_button.dart │ │ │ └── side_menu_logo.dart │ │ ├── edit_profile.dart │ │ ├── edit_relays_view.dart │ │ ├── enable_notifications.dart │ │ ├── full_screen_loading.dart │ │ ├── generic_feed.dart │ │ ├── images_gallery.dart │ │ ├── images_tile_view.dart │ │ ├── note_card │ │ │ ├── bottom_action_row.dart │ │ │ ├── bottom_sheet_more.dart │ │ │ ├── in_reply_to.dart │ │ │ ├── name_row.dart │ │ │ ├── no_more_notes.dart │ │ │ ├── nostr_parser.dart │ │ │ ├── note_card.dart │ │ │ ├── note_card_container.dart │ │ │ ├── note_card_reference.dart │ │ │ ├── note_card_repost.dart │ │ │ ├── post_content.dart │ │ │ └── skeleton_note.dart │ │ ├── person_card.dart │ │ ├── post_overflow.dart │ │ ├── relays_connectivity_widget.dart │ │ ├── responsive_center.dart │ │ ├── right_sidebar │ │ │ └── right_siedbar.dart │ │ ├── search_bar.dart │ │ ├── starter_packs │ │ │ ├── edit_starter_pack │ │ │ │ ├── edit_starter_pack.dart │ │ │ │ ├── edit_starter_pack_content.dart │ │ │ │ ├── edit_starter_pack_meta.dart │ │ │ │ ├── edit_starter_pack_provider.dart │ │ │ │ └── edit_starter_pack_summary.dart │ │ │ ├── open_starter_pack.dart │ │ │ ├── starter_pack_bottom_sheet_add.dart │ │ │ ├── starter_pack_card.dart │ │ │ ├── starter_packs_list.dart │ │ │ └── trending_starter_packs │ │ │ │ ├── trending_starter_packs.dart │ │ │ │ └── trending_starter_packs_state_provider.dart │ │ ├── trends │ │ │ ├── trending_hashtags_widget.dart │ │ │ └── trending_people_widget.dart │ │ ├── update_check │ │ │ └── update_check.dart │ │ ├── video │ │ │ ├── fullscreen_video_player.dart │ │ │ ├── inline_video_player.dart │ │ │ └── video_player_state_provider.dart │ │ ├── write_post.dart │ │ └── write_post │ │ │ └── post_settings_dialog.dart │ ├── init │ │ └── init_moderation.dart │ ├── layouts │ │ ├── mobile_bottom_menu_layout.dart │ │ ├── responsive_layout.dart │ │ └── three_colum_layout.dart │ ├── physics │ │ └── position_retained_scroll_physics.dart │ ├── providers │ │ ├── app_bar_provider │ │ │ └── app_bottom_bar_provider.dart │ │ ├── app_lifecycle_provider.dart │ │ ├── app_update_provider.dart │ │ ├── db_app_provider.dart │ │ ├── db_ndk_provider.dart │ │ ├── edit_relays_provider.dart │ │ ├── event_feed │ │ │ ├── event_feed_provider.dart │ │ │ └── replies_tree.dart │ │ ├── event_verifier.dart │ │ ├── file_upload_provider.dart │ │ ├── following_contact_state_provider.dart │ │ ├── following_provider.dart │ │ ├── generic_feed_provider.dart │ │ ├── get_notes_provider.dart │ │ ├── inbox_outbox_provider.dart │ │ ├── inital_route_provider.dart │ │ ├── language_provider.dart │ │ ├── link_preview_state_provider.dart │ │ ├── metadata_provider.dart │ │ ├── metadata_state_provider.dart │ │ ├── moderation │ │ │ ├── camelus_bloom_filter_provider.dart │ │ │ ├── moderation_provider.dart │ │ │ └── moderation_state_provider.dart │ │ ├── ndk_provider.dart │ │ ├── nip05_provider.dart │ │ ├── nostr_band_provider.dart │ │ ├── nostr_list_provider.dart │ │ ├── nostr_lists_follow_state_provider.dart │ │ ├── notification_feed_provider.dart │ │ ├── notifications_provider.dart │ │ ├── onboarding_provider.dart │ │ ├── reactions_provider.dart │ │ ├── reactions_state_provider.dart │ │ ├── reposts_provider.dart │ │ ├── reposts_state_provider.dart │ │ ├── search_provider.dart │ │ ├── serverpod_provider.dart │ │ ├── signer_provider.dart │ │ ├── theme_provider.dart │ │ └── write_post_state.provider.dart │ └── routes │ │ ├── deeplink_reciever_page.dart │ │ ├── home_page_desktop.dart │ │ ├── home_page_mobile.dart │ │ ├── nostr │ │ ├── blockedUsers │ │ │ ├── block_page.dart │ │ │ └── blocked_users.dart │ │ ├── bookmarks │ │ │ ├── bookmarks_page.dart │ │ │ ├── bookmarks_provider.dart │ │ │ └── bookmarks_state_provider.dart │ │ ├── event_view │ │ │ └── event_view_page.dart │ │ ├── nostr_page │ │ │ └── perspective_feed_page.dart │ │ ├── onboarding │ │ │ ├── onboarding.dart │ │ │ ├── onboarding_done.dart │ │ │ ├── onboarding_follow_graph │ │ │ │ ├── graph_node_data.dart │ │ │ │ ├── graph_profile.dart │ │ │ │ └── onboarding_follow_graph.dart │ │ │ ├── onboarding_invited_by.dart │ │ │ ├── onboarding_login.dart │ │ │ ├── onboarding_login_amber.dart │ │ │ ├── onboarding_login_bunker.dart │ │ │ ├── onboarding_login_select.dart │ │ │ ├── onboarding_name.dart │ │ │ ├── onboarding_page01.dart │ │ │ ├── onboarding_picture.dart │ │ │ ├── onboarding_profile.dart │ │ │ └── onboarding_starter_pack.dart │ │ ├── profile │ │ │ ├── edit_profile_page.dart │ │ │ ├── edit_relays_page.dart │ │ │ ├── follower_page.dart │ │ │ └── profile_page_2.dart │ │ ├── relays_page.dart │ │ ├── search_feed_page │ │ │ └── search_feed_page.dart │ │ └── settings │ │ │ ├── file_servers │ │ │ ├── file_server_state_provider.dart │ │ │ └── settings_file_servers.dart │ │ │ ├── inital_route │ │ │ └── inital_route_settings.dart │ │ │ ├── locale │ │ │ └── locale_settings.dart │ │ │ ├── moderation │ │ │ └── moderation_settings.dart │ │ │ ├── settings_page.dart │ │ │ └── theme │ │ │ └── theme_settings.dart │ │ ├── notification_page.dart │ │ └── search │ │ ├── search_page.dart │ │ └── search_state_notifier.dart ├── routes.dart └── theme.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── de.lox.dev.camelus.desktop ├── de.lox.dev.camelus.metainfo.xml ├── de.lox.dev.camelus.png ├── de.lox.dev.camelus.yml ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── preferences.json ├── pubspec.lock ├── pubspec.yaml ├── test └── unit_test │ ├── event_feed │ └── tree_test.dart │ └── helpers │ ├── bloom_filter_prehash_test.dart │ ├── bloom_filter_test.dart │ ├── helpers_test.dart │ ├── nevent_helper_test.dart │ ├── nprofile_helper_test.dart │ └── tlv_helpers_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json ├── widget_integration_test └── onboarding_test.dart ├── windows ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── zapstore ├── .gitignore ├── icon.png ├── phoneScreenshots ├── 1_en-GB.png ├── 2_en-GB.png ├── 3_en-GB.png ├── 4_en-GB.png └── 5_en-GB.png ├── release_notes.md └── zapstore.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build-android-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.github/workflows/build-android-app.yml -------------------------------------------------------------------------------- /.github/workflows/build-flatpak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.github/workflows/build-flatpak.yml -------------------------------------------------------------------------------- /.github/workflows/build-ios-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.github/workflows/build-ios-app.yml -------------------------------------------------------------------------------- /.github/workflows/deployment-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.github/workflows/deployment-docker.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/README.md -------------------------------------------------------------------------------- /READMEold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/READMEold.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /android/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/Gemfile.lock -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/de/lox/dev/camelus/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/kotlin/de/lox/dev/camelus/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/Appfile -------------------------------------------------------------------------------- /android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/Fastfile -------------------------------------------------------------------------------- /android/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/README.md -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/full_description.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/images/featureGraphic.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/images/icon.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/images/phoneScreenshots/5_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/images/phoneScreenshots/5_en-GB.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/fastlane/metadata/android/en-GB/short_description.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/title.txt: -------------------------------------------------------------------------------- 1 | camelus -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-GB/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /apipod/.github/workflows/deployment-aws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/.github/workflows/deployment-aws.yml -------------------------------------------------------------------------------- /apipod/.github/workflows/deployment-gcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/.github/workflows/deployment-gcp.yml -------------------------------------------------------------------------------- /apipod/apipod_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/.gitignore -------------------------------------------------------------------------------- /apipod/apipod_client/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version, created by Stagehand 4 | -------------------------------------------------------------------------------- /apipod/apipod_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/README.md -------------------------------------------------------------------------------- /apipod/apipod_client/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/analysis_options.yaml -------------------------------------------------------------------------------- /apipod/apipod_client/dartdoc_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/dartdoc_options.yaml -------------------------------------------------------------------------------- /apipod/apipod_client/doc/endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/doc/endpoint.md -------------------------------------------------------------------------------- /apipod/apipod_client/lib/apipod_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/apipod_client.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/app_update_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/app_update_data.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/bloom_filter_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/bloom_filter_data.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/bloom_filter_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/bloom_filter_events.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/bloom_filter_profiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/bloom_filter_profiles.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/client.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/example.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/nip05/check_name_result_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/nip05/check_name_result_spy.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/nip05/nip_05_data_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/nip05/nip_05_data_spy.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/nip05/nip_05_response_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/nip05/nip_05_response_spy.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/nostr_band/nostr_band_hashtags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/nostr_band/nostr_band_hashtags.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/nostr_band/nostr_band_hastag_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/nostr_band/nostr_band_hastag_info.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/nostr_band/nostr_band_people.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/nostr_band/nostr_band_people.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/nostr_band/nostr_band_profiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/nostr_band/nostr_band_profiles.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/protocol.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/protocol.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/reports_incoming.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/reports_incoming.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/short_links/short_link_invite_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/short_links/short_link_invite_data.dart -------------------------------------------------------------------------------- /apipod/apipod_client/lib/src/protocol/subscription.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/lib/src/protocol/subscription.dart -------------------------------------------------------------------------------- /apipod/apipod_client/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_client/pubspec.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/.gcloudignore -------------------------------------------------------------------------------- /apipod/apipod_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/.gitignore -------------------------------------------------------------------------------- /apipod/apipod_server/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version, created by Stagehand 4 | -------------------------------------------------------------------------------- /apipod/apipod_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/Dockerfile -------------------------------------------------------------------------------- /apipod/apipod_server/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/Dockerfile.prod -------------------------------------------------------------------------------- /apipod/apipod_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/README.md -------------------------------------------------------------------------------- /apipod/apipod_server/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/analysis_options.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/bin/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/bin/main.dart -------------------------------------------------------------------------------- /apipod/apipod_server/config/development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/config/development.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/config/generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/config/generator.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/config/production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/config/production.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/config/staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/config/staging.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/config/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/config/test.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/dart_test.yaml: -------------------------------------------------------------------------------- 1 | tags: 2 | integration: {} 3 | -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/scripts/appspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/scripts/appspec.yml -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/scripts/install_dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/scripts/install_dependencies -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/scripts/run_serverpod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/scripts/run_serverpod -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/scripts/start_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/scripts/start_server -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/balancers-staging.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/balancers-staging.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/balancers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/balancers.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/cloudfront-web-staging.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/cloudfront-web-staging.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/cloudfront-web.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/cloudfront-web.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/code-deploy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/code-deploy.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/config.auto.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/config.auto.tfvars -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/database.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/database.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/init-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/init-script.sh -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/instances.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/instances.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/main.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/redis.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/redis.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/staging.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/staging.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/storage.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/variables.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/aws/terraform/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/aws/terraform/vpc.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/gcp/console_gcr/cloud-run-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/gcp/console_gcr/cloud-run-deploy.sh -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/gcp/terraform_gce/config.auto.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/gcp/terraform_gce/config.auto.tfvars -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/gcp/terraform_gce/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/gcp/terraform_gce/main.tf -------------------------------------------------------------------------------- /apipod/apipod_server/deploy/gcp/terraform_gce/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/deploy/gcp/terraform_gce/variables.tf -------------------------------------------------------------------------------- /apipod/apipod_server/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/devtools_options.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/docker-compose.production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/docker-compose.production.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/docker-compose.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/server.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/config/push_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/config/push_config.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/config/service_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/config/service_config.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/app_update_endpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/app_update_endpoint.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/link_shorter/link_shorter_endpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/link_shorter/link_shorter_endpoint.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/moderation/moderation_endpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/moderation/moderation_endpoint.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/moderation/process_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/moderation/process_report.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/nip05/disallowed_words.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/nip05/disallowed_words.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/nip05/name_suggestions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/nip05/name_suggestions.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/nip05/nip05_endpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/nip05/nip05_endpoint.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/nostr_band/nostr_band_endpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/nostr_band/nostr_band_endpoint.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/push/database_operations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/push/database_operations.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/push/nostr_push_endpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/push/nostr_push_endpoint.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/push/nostr_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/push/nostr_utils.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/push/relay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/push/relay.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/endpoints/push/relay_pool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/endpoints/push/relay_pool.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/example_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/example_util.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/future_calls/example_future_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/future_calls/example_future_call.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/app_update_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/app_update_data.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/bloom_filter_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/bloom_filter_data.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/bloom_filter_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/bloom_filter_events.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/bloom_filter_profiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/bloom_filter_profiles.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/endpoints.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/endpoints.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/example.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/nip05/check_name_result_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/nip05/check_name_result_spy.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/nip05/nip_05_data_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/nip05/nip_05_data_spy.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/nip05/nip_05_response_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/nip05/nip_05_response_spy.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/nostr_band/nostr_band_hashtags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/nostr_band/nostr_band_hashtags.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/nostr_band/nostr_band_hastag_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/nostr_band/nostr_band_hastag_info.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/nostr_band/nostr_band_people.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/nostr_band/nostr_band_people.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/nostr_band/nostr_band_profiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/nostr_band/nostr_band_profiles.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/protocol.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/protocol.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/protocol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/protocol.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/reports_incoming.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/reports_incoming.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/short_links/short_link_invite_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/short_links/short_link_invite_data.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/generated/subscription.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/generated/subscription.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/app_update_data.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/app_update_data.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/bloom_filter_data.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/bloom_filter_data.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/bloom_filter_events.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/bloom_filter_events.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/bloom_filter_profiles.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/bloom_filter_profiles.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/example.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/example.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/nip05/check_name_result_spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/nip05/check_name_result_spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/nip05/nip_05_data_spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/nip05/nip_05_data_spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/nip05/nip_05_response_spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/nip05/nip_05_response_spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/nostr_band/nostr_band_hashtags.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/nostr_band/nostr_band_hashtags.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/nostr_band/nostr_band_hastag_info.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/nostr_band/nostr_band_hastag_info.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/nostr_band/nostr_band_people.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/nostr_band/nostr_band_people.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/nostr_band/nostr_band_profiles.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/nostr_band/nostr_band_profiles.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/reports_incoming.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/reports_incoming.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/short_links/short_link_invite_data.spy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/short_links/short_link_invite_data.spy.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/models/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/models/subscription.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/web/routes/root.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/web/routes/root.dart -------------------------------------------------------------------------------- /apipod/apipod_server/lib/src/web/widgets/default_page_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/lib/src/web/widgets/default_page_widget.dart -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250315093016525/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250315093016525/definition.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250315093016525/definition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250315093016525/definition.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250315093016525/definition_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250315093016525/definition_project.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250315093016525/migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250315093016525/migration.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250315093016525/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250315093016525/migration.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250320134010505/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250320134010505/definition.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250320134010505/definition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250320134010505/definition.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250320134010505/definition_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250320134010505/definition_project.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250320134010505/migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250320134010505/migration.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250320134010505/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250320134010505/migration.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250324103632861/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250324103632861/definition.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250324103632861/definition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250324103632861/definition.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250324103632861/definition_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250324103632861/definition_project.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250324103632861/migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250324103632861/migration.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250324103632861/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250324103632861/migration.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329152226716/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329152226716/definition.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329152226716/definition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329152226716/definition.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329152226716/definition_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329152226716/definition_project.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329152226716/migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329152226716/migration.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329152226716/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329152226716/migration.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329160105837/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329160105837/definition.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329160105837/definition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329160105837/definition.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329160105837/definition_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329160105837/definition_project.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329160105837/migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329160105837/migration.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250329160105837/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250329160105837/migration.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250611091638781/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250611091638781/definition.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250611091638781/definition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250611091638781/definition.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250611091638781/definition_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250611091638781/definition_project.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250611091638781/migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250611091638781/migration.json -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/20250611091638781/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/20250611091638781/migration.sql -------------------------------------------------------------------------------- /apipod/apipod_server/migrations/migration_registry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/migrations/migration_registry.txt -------------------------------------------------------------------------------- /apipod/apipod_server/pgbackrest/pgbackrest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/pgbackrest/pgbackrest.conf -------------------------------------------------------------------------------- /apipod/apipod_server/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/pubspec.lock -------------------------------------------------------------------------------- /apipod/apipod_server/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/pubspec.yaml -------------------------------------------------------------------------------- /apipod/apipod_server/repair-migration/20250329160134665.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/repair-migration/20250329160134665.sql -------------------------------------------------------------------------------- /apipod/apipod_server/test/integration/test_tools/serverpod_test_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/test/integration/test_tools/serverpod_test_tools.dart -------------------------------------------------------------------------------- /apipod/apipod_server/test/unit/example_util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/test/unit/example_util_test.dart -------------------------------------------------------------------------------- /apipod/apipod_server/web/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/web/static/css/style.css -------------------------------------------------------------------------------- /apipod/apipod_server/web/static/images/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/web/static/images/background.svg -------------------------------------------------------------------------------- /apipod/apipod_server/web/static/images/serverpod-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/web/static/images/serverpod-logo.svg -------------------------------------------------------------------------------- /apipod/apipod_server/web/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/apipod/apipod_server/web/templates/default.html -------------------------------------------------------------------------------- /assets/app_icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/app_icons/icon.png -------------------------------------------------------------------------------- /assets/app_icons/icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/app_icons/icon_bg.png -------------------------------------------------------------------------------- /assets/app_icons/icon_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/app_icons/icon_fg.png -------------------------------------------------------------------------------- /assets/icons/arrowBack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/arrowBack.svg -------------------------------------------------------------------------------- /assets/icons/bookmark-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/bookmark-simple.svg -------------------------------------------------------------------------------- /assets/icons/chat-teardrop-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/chat-teardrop-text.svg -------------------------------------------------------------------------------- /assets/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/eye.svg -------------------------------------------------------------------------------- /assets/icons/file-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/file-video.svg -------------------------------------------------------------------------------- /assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/heart.svg -------------------------------------------------------------------------------- /assets/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/image.svg -------------------------------------------------------------------------------- /assets/icons/lightning-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/lightning-fill.svg -------------------------------------------------------------------------------- /assets/icons/lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/lightning.svg -------------------------------------------------------------------------------- /assets/icons/nostr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/nostr.svg -------------------------------------------------------------------------------- /assets/icons/paper-plane-tilt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/paper-plane-tilt.svg -------------------------------------------------------------------------------- /assets/icons/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/pen.svg -------------------------------------------------------------------------------- /assets/icons/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/profile.svg -------------------------------------------------------------------------------- /assets/icons/qr-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/qr-code.svg -------------------------------------------------------------------------------- /assets/icons/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/question.svg -------------------------------------------------------------------------------- /assets/icons/retweet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/retweet.svg -------------------------------------------------------------------------------- /assets/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/share.svg -------------------------------------------------------------------------------- /assets/icons/speaker-simple-slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/speaker-simple-slash.svg -------------------------------------------------------------------------------- /assets/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/sun.svg -------------------------------------------------------------------------------- /assets/icons/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/target.svg -------------------------------------------------------------------------------- /assets/icons/tweetSetting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/tweetSetting.svg -------------------------------------------------------------------------------- /assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/user.svg -------------------------------------------------------------------------------- /assets/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/x.svg -------------------------------------------------------------------------------- /assets/icons/yin-yang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/icons/yin-yang.svg -------------------------------------------------------------------------------- /assets/images/list_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/images/list_placeholder.png -------------------------------------------------------------------------------- /assets/lottie/spinner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/assets/lottie/spinner.json -------------------------------------------------------------------------------- /dart_defines.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/dart_defines.json.example -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/screenshots/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/screenshots/feed.png -------------------------------------------------------------------------------- /docs/screenshots/following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/screenshots/following.png -------------------------------------------------------------------------------- /docs/screenshots/profile_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/screenshots/profile_1.png -------------------------------------------------------------------------------- /docs/screenshots/profile_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/screenshots/profile_2.png -------------------------------------------------------------------------------- /docs/screenshots/pull_to_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/screenshots/pull_to_refresh.png -------------------------------------------------------------------------------- /docs/screenshots/seed_phrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/screenshots/seed_phrase.png -------------------------------------------------------------------------------- /docs/screenshots/thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/screenshots/thread.png -------------------------------------------------------------------------------- /docs/screenshots/write_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/docs/screenshots/write_post.png -------------------------------------------------------------------------------- /flutter_launcher_icons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/flutter_launcher_icons.yaml -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /fonts/Poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/fonts/Poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /integration_test/onboarding_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/integration_test/onboarding_test.dart -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Gemfile -------------------------------------------------------------------------------- /ios/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Matchfile -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/config/amber_url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/amber_url.dart -------------------------------------------------------------------------------- /lib/config/app_update_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/app_update_config.dart -------------------------------------------------------------------------------- /lib/config/camelus_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/camelus_config.dart -------------------------------------------------------------------------------- /lib/config/default_blossom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/default_blossom.dart -------------------------------------------------------------------------------- /lib/config/default_relays.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/default_relays.dart -------------------------------------------------------------------------------- /lib/config/default_suggestions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/default_suggestions.dart -------------------------------------------------------------------------------- /lib/config/dicebear.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/dicebear.dart -------------------------------------------------------------------------------- /lib/config/feeds_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/feeds_config.dart -------------------------------------------------------------------------------- /lib/config/onboard_conf.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/config/onboard_conf.dart -------------------------------------------------------------------------------- /lib/data_layer/data_sources/api_nostr_band_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/data_sources/api_nostr_band_data_source.dart -------------------------------------------------------------------------------- /lib/data_layer/data_sources/blossom_file_upload.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/data_layer/data_sources/dart_ndk_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/data_sources/dart_ndk_source.dart -------------------------------------------------------------------------------- /lib/data_layer/data_sources/http_request_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/data_sources/http_request_data_source.dart -------------------------------------------------------------------------------- /lib/data_layer/data_sources/nostr_build_file_upload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/data_sources/nostr_build_file_upload.dart -------------------------------------------------------------------------------- /lib/data_layer/data_sources/notification_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/data_sources/notification_data_source.dart -------------------------------------------------------------------------------- /lib/data_layer/data_sources/serverpod_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/data_sources/serverpod_data_source.dart -------------------------------------------------------------------------------- /lib/data_layer/db/object_box_camelus/db_camelus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/db/object_box_camelus/db_camelus.dart -------------------------------------------------------------------------------- /lib/data_layer/db/object_box_camelus/db_camelus_init.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/db/object_box_camelus/db_camelus_init.dart -------------------------------------------------------------------------------- /lib/data_layer/db/object_box_camelus/schema/db_key_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/db/object_box_camelus/schema/db_key_value.dart -------------------------------------------------------------------------------- /lib/data_layer/models/app_update_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/app_update_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/bloom_filter_data_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/bloom_filter_data_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/contact_list_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/contact_list_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/mem_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/mem_file_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nip05_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nip05_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nip_65_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nip_65_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nostr_band_hashtags_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nostr_band_hashtags_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nostr_band_people_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nostr_band_people_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nostr_lists_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nostr_lists_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nostr_note_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nostr_note_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nostr_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nostr_request.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nostr_request_close.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nostr_request_close.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nostr_request_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nostr_request_query.dart -------------------------------------------------------------------------------- /lib/data_layer/models/nostr_tag_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/nostr_tag_model.dart -------------------------------------------------------------------------------- /lib/data_layer/models/post_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/post_context.dart -------------------------------------------------------------------------------- /lib/data_layer/models/tweet_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/tweet_control.dart -------------------------------------------------------------------------------- /lib/data_layer/models/user_metadata_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/models/user_metadata_model.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/app_update_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/app_update_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/database_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/database_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/edit_relays_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/edit_relays_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/file_upload_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/file_upload_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/follow_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/follow_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/inbox_outbox_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/inbox_outbox_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/metadata_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/metadata_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/moderation_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/moderation_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/nip05_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/nip05_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/nostr_band_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/nostr_band_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/nostr_list_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/nostr_list_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/note_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/note_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/notifications/notifications_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/notifications/notifications_repository_impl.dart -------------------------------------------------------------------------------- /lib/data_layer/repositories/search_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/data_layer/repositories/search_repository_impl.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/app_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/app_update.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/bloom_filter_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/bloom_filter_data.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/contact_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/contact_list.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/feed_event_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/feed_event_view_model.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/feed_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/feed_filter.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/feed_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/feed_view_model.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/generated_private_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/generated_private_key.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/invite_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/invite_data.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/key_pair.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/key_pair.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/mem_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/mem_file.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/nip05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/nip05.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/nip_65.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/nip_65.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/nostr_band_hashtags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/nostr_band_hashtags.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/nostr_band_people.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/nostr_band_people.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/nostr_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/nostr_list.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/nostr_note.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/nostr_note.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/nostr_tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/nostr_tag.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/onboarding_user_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/onboarding_user_info.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/parsed_post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/parsed_post.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/relay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/relay.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/starter_pack_identifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/starter_pack_identifier.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/stored_account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/stored_account.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/tree_node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/tree_node.dart -------------------------------------------------------------------------------- /lib/domain_layer/entities/user_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/entities/user_metadata.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/app_db.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/app_db.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/app_update_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/app_update_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/database_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/database_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/edit_relays_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/edit_relays_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/follow_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/follow_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/inbox_outbox_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/inbox_outbox_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/metadata_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/metadata_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/moderation_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/moderation_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/nip05_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/nip05_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/nostr_band_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/nostr_band_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/nostr_list_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/nostr_list_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/note_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/note_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/notifications_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/notifications_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/search_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/search_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/repositories/upload_file_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/repositories/upload_file_repository.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/app_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/app_auth.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/check_app_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/check_app_update.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/edit_relays.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/edit_relays.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/file_upload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/file_upload.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/follow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/follow.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/generate_private_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/generate_private_key.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/get_nostr_band_hashtags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/get_nostr_band_hashtags.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/get_nostr_lists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/get_nostr_lists.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/get_notes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/get_notes.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/get_user_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/get_user_metadata.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/inbox_outbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/inbox_outbox.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/initial_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/initial_route.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/moderation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/moderation.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/notifications.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/onboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/onboard.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/remove_image_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/remove_image_metadata.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/search.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/user_reactions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/user_reactions.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/user_reposts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/user_reposts.dart -------------------------------------------------------------------------------- /lib/domain_layer/usecases/verify_nip05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/domain_layer/usecases/verify_nip05.dart -------------------------------------------------------------------------------- /lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/firebase_options.dart -------------------------------------------------------------------------------- /lib/helpers/bip340.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/helpers/bip340.dart -------------------------------------------------------------------------------- /lib/helpers/bloom_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/helpers/bloom_filter.dart -------------------------------------------------------------------------------- /lib/helpers/bloom_filter_prehash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/helpers/bloom_filter_prehash.dart -------------------------------------------------------------------------------- /lib/helpers/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/helpers/helpers.dart -------------------------------------------------------------------------------- /lib/helpers/nevent_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/helpers/nevent_helper.dart -------------------------------------------------------------------------------- /lib/helpers/nprofile_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/helpers/nprofile_helper.dart -------------------------------------------------------------------------------- /lib/helpers/tlv_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/helpers/tlv_helpers.dart -------------------------------------------------------------------------------- /lib/l10n/app_de.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_de.arb -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_es.arb -------------------------------------------------------------------------------- /lib/l10n/app_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_fr.arb -------------------------------------------------------------------------------- /lib/l10n/app_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_ja.arb -------------------------------------------------------------------------------- /lib/l10n/app_pt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_pt.arb -------------------------------------------------------------------------------- /lib/l10n/app_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_ru.arb -------------------------------------------------------------------------------- /lib/l10n/app_th.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_th.arb -------------------------------------------------------------------------------- /lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/l10n/app_zh.arb -------------------------------------------------------------------------------- /lib/lifecycle/app_init_shell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/lifecycle/app_init_shell.dart -------------------------------------------------------------------------------- /lib/lifecycle/connectivity/connectivity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/lifecycle/connectivity/connectivity.dart -------------------------------------------------------------------------------- /lib/lifecycle/deeplinks/deep_link_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/lifecycle/deeplinks/deep_link_service.dart -------------------------------------------------------------------------------- /lib/lifecycle/notifications/background_notifications_thread.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/lifecycle/notifications/background_notifications_thread.dart -------------------------------------------------------------------------------- /lib/lifecycle/notifications/init_firebase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/lifecycle/notifications/init_firebase.dart -------------------------------------------------------------------------------- /lib/lifecycle/notifications/notifications_caller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/lifecycle/notifications/notifications_caller.dart -------------------------------------------------------------------------------- /lib/lifecycle/notifications/process_fcm_msg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/lifecycle/notifications/process_fcm_msg.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/objectbox-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/objectbox-model.json -------------------------------------------------------------------------------- /lib/objectbox.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/objectbox.g.dart -------------------------------------------------------------------------------- /lib/objectbox_isolate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/objectbox_isolate.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/app_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/app_logo.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/back_button_round.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/back_button_round.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/camer_upload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/camer_upload.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/crop_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/crop_avatar.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/follow_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/follow_button.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/hashtag_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/hashtag_card.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/icon_patter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/icon_patter.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/long_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/long_button.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/mnemonic_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/mnemonic_grid.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/my_profile_picture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/my_profile_picture.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/new_posts_available.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/new_posts_available.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/nip_05_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/nip_05_text.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/overlapting_avatars.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/overlapting_avatars.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/picture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/picture.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/refresh_indicator_no_need.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/refresh_indicator_no_need.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/round_image_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/round_image_border.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/rounded_corner_painer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/rounded_corner_painer.dart -------------------------------------------------------------------------------- /lib/presentation_layer/atoms/spinner_center.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/atoms/spinner_center.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/app_bottom_navigation_bar/app_bottom_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/app_bottom_navigation_bar/app_bottom_navigation_bar.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/bottom_sheet_share.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/bottom_sheet_share.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/comments_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/comments_section.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/drawer/nostr_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/drawer/nostr_drawer.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/drawer/nostr_side_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/drawer/nostr_side_menu.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/drawer/nostr_side_menu_post_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/drawer/nostr_side_menu_post_button.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/drawer/side_menu_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/drawer/side_menu_logo.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/edit_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/edit_profile.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/edit_relays_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/edit_relays_view.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/enable_notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/enable_notifications.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/full_screen_loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/full_screen_loading.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/generic_feed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/generic_feed.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/images_gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/images_gallery.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/images_tile_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/images_tile_view.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/bottom_action_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/bottom_action_row.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/bottom_sheet_more.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/bottom_sheet_more.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/in_reply_to.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/in_reply_to.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/name_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/name_row.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/no_more_notes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/no_more_notes.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/nostr_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/nostr_parser.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/note_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/note_card.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/note_card_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/note_card_container.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/note_card_reference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/note_card_reference.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/note_card_repost.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/note_card_repost.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/post_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/post_content.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/note_card/skeleton_note.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/note_card/skeleton_note.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/person_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/person_card.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/post_overflow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/post_overflow.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/relays_connectivity_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/relays_connectivity_widget.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/responsive_center.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/responsive_center.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/right_sidebar/right_siedbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/right_sidebar/right_siedbar.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/search_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/search_bar.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack_content.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack_meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack_meta.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack_summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/edit_starter_pack/edit_starter_pack_summary.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/open_starter_pack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/open_starter_pack.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/starter_pack_bottom_sheet_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/starter_pack_bottom_sheet_add.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/starter_pack_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/starter_pack_card.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/starter_packs_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/starter_packs_list.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/trending_starter_packs/trending_starter_packs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/trending_starter_packs/trending_starter_packs.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/starter_packs/trending_starter_packs/trending_starter_packs_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/starter_packs/trending_starter_packs/trending_starter_packs_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/trends/trending_hashtags_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/trends/trending_hashtags_widget.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/trends/trending_people_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/trends/trending_people_widget.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/update_check/update_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/update_check/update_check.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/video/fullscreen_video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/video/fullscreen_video_player.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/video/inline_video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/video/inline_video_player.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/video/video_player_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/video/video_player_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/write_post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/write_post.dart -------------------------------------------------------------------------------- /lib/presentation_layer/components/write_post/post_settings_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/components/write_post/post_settings_dialog.dart -------------------------------------------------------------------------------- /lib/presentation_layer/init/init_moderation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/init/init_moderation.dart -------------------------------------------------------------------------------- /lib/presentation_layer/layouts/mobile_bottom_menu_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/layouts/mobile_bottom_menu_layout.dart -------------------------------------------------------------------------------- /lib/presentation_layer/layouts/responsive_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/layouts/responsive_layout.dart -------------------------------------------------------------------------------- /lib/presentation_layer/layouts/three_colum_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/layouts/three_colum_layout.dart -------------------------------------------------------------------------------- /lib/presentation_layer/physics/position_retained_scroll_physics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/physics/position_retained_scroll_physics.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/app_bar_provider/app_bottom_bar_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/app_bar_provider/app_bottom_bar_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/app_lifecycle_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/app_lifecycle_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/app_update_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/app_update_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/db_app_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/db_app_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/db_ndk_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/db_ndk_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/edit_relays_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/edit_relays_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/event_feed/event_feed_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/event_feed/event_feed_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/event_feed/replies_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/event_feed/replies_tree.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/event_verifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/event_verifier.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/file_upload_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/file_upload_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/following_contact_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/following_contact_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/following_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/following_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/generic_feed_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/generic_feed_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/get_notes_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/get_notes_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/inbox_outbox_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/inbox_outbox_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/inital_route_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/inital_route_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/language_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/language_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/link_preview_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/link_preview_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/metadata_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/metadata_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/metadata_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/metadata_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/moderation/camelus_bloom_filter_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/moderation/camelus_bloom_filter_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/moderation/moderation_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/moderation/moderation_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/moderation/moderation_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/moderation/moderation_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/ndk_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/ndk_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/nip05_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/nip05_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/nostr_band_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/nostr_band_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/nostr_list_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/nostr_list_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/nostr_lists_follow_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/nostr_lists_follow_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/notification_feed_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/notification_feed_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/notifications_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/notifications_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/onboarding_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/onboarding_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/reactions_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/reactions_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/reactions_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/reactions_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/reposts_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/reposts_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/reposts_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/reposts_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/search_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/search_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/serverpod_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/serverpod_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/signer_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/signer_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/theme_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/theme_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/providers/write_post_state.provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/providers/write_post_state.provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/deeplink_reciever_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/deeplink_reciever_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/home_page_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/home_page_desktop.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/home_page_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/home_page_mobile.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/blockedUsers/block_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/blockedUsers/block_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/blockedUsers/blocked_users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/blockedUsers/blocked_users.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/bookmarks/bookmarks_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/bookmarks/bookmarks_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/bookmarks/bookmarks_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/bookmarks/bookmarks_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/bookmarks/bookmarks_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/bookmarks/bookmarks_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/event_view/event_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/event_view/event_view_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/nostr_page/perspective_feed_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/nostr_page/perspective_feed_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_done.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_done.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_follow_graph/graph_node_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_follow_graph/graph_node_data.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_follow_graph/graph_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_follow_graph/graph_profile.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_follow_graph/onboarding_follow_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_follow_graph/onboarding_follow_graph.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_invited_by.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_invited_by.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_login.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_login_amber.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_login_amber.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_login_bunker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_login_bunker.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_login_select.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_login_select.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_name.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_page01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_page01.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_picture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_picture.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_profile.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/onboarding/onboarding_starter_pack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/onboarding/onboarding_starter_pack.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/profile/edit_profile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/profile/edit_profile_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/profile/edit_relays_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/profile/edit_relays_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/profile/follower_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/profile/follower_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/profile/profile_page_2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/profile/profile_page_2.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/relays_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/relays_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/search_feed_page/search_feed_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/search_feed_page/search_feed_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/settings/file_servers/file_server_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/settings/file_servers/file_server_state_provider.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/settings/file_servers/settings_file_servers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/settings/file_servers/settings_file_servers.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/settings/inital_route/inital_route_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/settings/inital_route/inital_route_settings.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/settings/locale/locale_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/settings/locale/locale_settings.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/settings/moderation/moderation_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/settings/moderation/moderation_settings.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/settings/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/settings/settings_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/nostr/settings/theme/theme_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/nostr/settings/theme/theme_settings.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/notification_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/notification_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/search/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/search/search_page.dart -------------------------------------------------------------------------------- /lib/presentation_layer/routes/search/search_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/presentation_layer/routes/search/search_state_notifier.dart -------------------------------------------------------------------------------- /lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/routes.dart -------------------------------------------------------------------------------- /lib/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/lib/theme.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/de.lox.dev.camelus.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/de.lox.dev.camelus.desktop -------------------------------------------------------------------------------- /linux/de.lox.dev.camelus.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/de.lox.dev.camelus.metainfo.xml -------------------------------------------------------------------------------- /linux/de.lox.dev.camelus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/de.lox.dev.camelus.png -------------------------------------------------------------------------------- /linux/de.lox.dev.camelus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/de.lox.dev.camelus.yml -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /preferences.json: -------------------------------------------------------------------------------- 1 | {"nip05":"{}"} -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/unit_test/event_feed/tree_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/test/unit_test/event_feed/tree_test.dart -------------------------------------------------------------------------------- /test/unit_test/helpers/bloom_filter_prehash_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/test/unit_test/helpers/bloom_filter_prehash_test.dart -------------------------------------------------------------------------------- /test/unit_test/helpers/bloom_filter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/test/unit_test/helpers/bloom_filter_test.dart -------------------------------------------------------------------------------- /test/unit_test/helpers/helpers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/test/unit_test/helpers/helpers_test.dart -------------------------------------------------------------------------------- /test/unit_test/helpers/nevent_helper_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/test/unit_test/helpers/nevent_helper_test.dart -------------------------------------------------------------------------------- /test/unit_test/helpers/nprofile_helper_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/test/unit_test/helpers/nprofile_helper_test.dart -------------------------------------------------------------------------------- /test/unit_test/helpers/tlv_helpers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/test/unit_test/helpers/tlv_helpers_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/web/manifest.json -------------------------------------------------------------------------------- /widget_integration_test/onboarding_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/widget_integration_test/onboarding_test.dart -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/windows/runner/win32_window.h -------------------------------------------------------------------------------- /zapstore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/.gitignore -------------------------------------------------------------------------------- /zapstore/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/icon.png -------------------------------------------------------------------------------- /zapstore/phoneScreenshots/1_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/phoneScreenshots/1_en-GB.png -------------------------------------------------------------------------------- /zapstore/phoneScreenshots/2_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/phoneScreenshots/2_en-GB.png -------------------------------------------------------------------------------- /zapstore/phoneScreenshots/3_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/phoneScreenshots/3_en-GB.png -------------------------------------------------------------------------------- /zapstore/phoneScreenshots/4_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/phoneScreenshots/4_en-GB.png -------------------------------------------------------------------------------- /zapstore/phoneScreenshots/5_en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/phoneScreenshots/5_en-GB.png -------------------------------------------------------------------------------- /zapstore/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/release_notes.md -------------------------------------------------------------------------------- /zapstore/zapstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camelus-hq/camelus/HEAD/zapstore/zapstore.yaml --------------------------------------------------------------------------------