├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── benchmark.yml │ ├── build.yml │ ├── integration-test.yml │ ├── release.yml │ └── static-analysis.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── commet ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ ├── google-services.json │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── chat │ │ │ │ │ └── commet │ │ │ │ │ └── commet │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── UnifiedPushService.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── notification_icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── notification_icon.png │ │ │ │ ├── drawable-v21 │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── notification_icon.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── notification_icon.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── ic_bg_service_small.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── notification_icon.png │ │ │ │ ├── drawable │ │ │ │ ├── background.png │ │ │ │ ├── ic_launcher_monochrome.xml │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.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-v31 │ │ │ │ └── styles.xml │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ ├── values-v31 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── profile │ │ │ └── AndroidManifest.xml │ │ │ └── release │ │ │ └── google-services.json │ ├── build.gradle │ ├── build │ │ └── reports │ │ │ └── problems │ │ │ └── problems-report.html │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── config │ │ └── global_config.json │ ├── emoji_data │ │ ├── data.json │ │ ├── readme.md │ │ └── shortcodes │ │ │ └── en.json │ ├── font │ │ ├── code │ │ │ ├── JetBrainsMono-Regular.ttf │ │ │ └── OFL.txt │ │ ├── emoji-font │ │ │ ├── README.md │ │ │ └── TwemojiCOLR.otf │ │ ├── jellee │ │ │ ├── Jellee-Bold.ttf │ │ │ └── Jellee-OFL.txt │ │ └── roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ ├── images │ │ ├── app_icon │ │ │ ├── app_icon_filled.png │ │ │ ├── app_icon_rounded.png │ │ │ ├── app_icon_transparent.png │ │ │ ├── app_icon_transparent_cropped.png │ │ │ └── icon.svg │ │ └── effects │ │ │ └── particles │ │ │ ├── confetti.webp │ │ │ ├── fluent-emoji-alien-monster.png │ │ │ ├── fluent-emoji-eyes.webp │ │ │ ├── fluent-emoji-smile-with-hearts.webp │ │ │ ├── fluent-emoji-snowflake.webp │ │ │ └── fluent-emoji-source.txt │ ├── js │ │ └── package │ │ │ └── .gitkeep │ ├── l10n │ │ ├── intl_be.arb │ │ ├── intl_de.arb │ │ ├── intl_en.arb │ │ ├── intl_es.arb │ │ ├── intl_et.arb │ │ ├── intl_eu.arb │ │ ├── intl_fa.arb │ │ ├── intl_fr.arb │ │ ├── intl_ja.arb │ │ ├── intl_ko.arb │ │ ├── intl_nb.arb │ │ ├── intl_pl.arb │ │ ├── intl_pt.arb │ │ ├── intl_pt_BR.arb │ │ ├── intl_ru.arb │ │ ├── intl_ta.arb │ │ ├── intl_uk.arb │ │ └── intl_zh.arb │ ├── shader │ │ ├── star_trails.frag │ │ └── texture_coordinate.frag │ ├── sound │ │ ├── joined_call.ogg │ │ ├── left_call.ogg │ │ ├── ringtone_in.ogg │ │ └── ringtone_out.ogg │ └── vodozemac │ │ └── .gitkeep ├── build.yaml ├── devtools_options.yaml ├── firebase.json ├── integration_test │ ├── README.md │ ├── benchmark │ │ ├── benchmark.dart │ │ └── benchmarks │ │ │ └── timeline_viewer_benchmark.dart │ ├── extensions │ │ ├── common_flows.dart │ │ └── wait_for.dart │ ├── matrix │ │ ├── change_space_name_test.dart │ │ ├── create_space_test.dart │ │ ├── key_verification_test.dart │ │ ├── login_test.dart │ │ └── multi_account_test.dart │ ├── runner.dart │ └── synapse │ │ └── data │ │ ├── homeserver.yaml │ │ ├── localhost.log.config │ │ └── localhost.signing.key ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── 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 ├── l10n.yaml ├── lib │ ├── cache │ │ ├── cache_file_provider.dart │ │ ├── drift_file_cache.dart │ │ ├── file_cache.dart │ │ ├── file_cache_stub.dart │ │ └── file_provider.dart │ ├── client │ │ ├── alert.dart │ │ ├── attachment.dart │ │ ├── auth.dart │ │ ├── call_manager.dart │ │ ├── client.dart │ │ ├── client_manager.dart │ │ ├── components │ │ │ ├── account_switch_prefix │ │ │ │ └── account_switch_prefix.dart │ │ │ ├── command │ │ │ │ └── command_component.dart │ │ │ ├── component.dart │ │ │ ├── component_registry.dart │ │ │ ├── direct_messages │ │ │ │ ├── direct_message_aggregator.dart │ │ │ │ └── direct_message_component.dart │ │ │ ├── emoticon │ │ │ │ ├── emoji_pack.dart │ │ │ │ ├── emoticon.dart │ │ │ │ └── emoticon_component.dart │ │ │ ├── event_search │ │ │ │ └── event_search_component.dart │ │ │ ├── gif │ │ │ │ ├── gif_component.dart │ │ │ │ └── gif_search_result.dart │ │ │ ├── invitation │ │ │ │ ├── invitation.dart │ │ │ │ └── invitation_component.dart │ │ │ ├── message_effects │ │ │ │ ├── message_effect_component.dart │ │ │ │ └── message_effect_particles.dart │ │ │ ├── photo_album_room │ │ │ │ ├── photo.dart │ │ │ │ ├── photo_album_room_component.dart │ │ │ │ └── photo_album_timeline.dart │ │ │ ├── pinned_messages │ │ │ │ └── pinned_messages_component.dart │ │ │ ├── push_notification │ │ │ │ ├── android │ │ │ │ │ ├── android_notifier.dart │ │ │ │ │ ├── firebase_push_notifier.dart │ │ │ │ │ └── unified_push_notifier.dart │ │ │ │ ├── linux │ │ │ │ │ └── linux_notifier.dart │ │ │ │ ├── modifiers │ │ │ │ │ ├── do_not_disturb.dart │ │ │ │ │ ├── hide_content.dart │ │ │ │ │ ├── linux_notification_formatting.dart │ │ │ │ │ ├── notification_modifiers.dart │ │ │ │ │ ├── suppress_active_room.dart │ │ │ │ │ └── suppress_other_device_active.dart │ │ │ │ ├── notification_content.dart │ │ │ │ ├── notification_manager.dart │ │ │ │ ├── notifier.dart │ │ │ │ ├── push_notification_component.dart │ │ │ │ └── windows │ │ │ │ │ └── windows_notifier.dart │ │ │ ├── read_receipts │ │ │ │ └── read_receipt_component.dart │ │ │ ├── room_component.dart │ │ │ ├── rtc_data_channel │ │ │ │ └── rtc_data_channel_component.dart │ │ │ ├── rtc_screen_share_annotation │ │ │ │ └── rtc_screen_share_annotation_component.dart │ │ │ ├── space_color_scheme │ │ │ │ └── space_color_scheme_component.dart │ │ │ ├── space_component.dart │ │ │ ├── threads │ │ │ │ └── thread_component.dart │ │ │ ├── typing_indicators │ │ │ │ └── typing_indicator_component.dart │ │ │ ├── url_preview │ │ │ │ └── url_preview_component.dart │ │ │ ├── user_presence │ │ │ │ ├── user_presence_component.dart │ │ │ │ └── user_presence_lifecycle_watcher.dart │ │ │ ├── voip │ │ │ │ ├── voip_component.dart │ │ │ │ ├── voip_session.dart │ │ │ │ ├── voip_stream.dart │ │ │ │ └── webrtc_screencapture_source.dart │ │ │ └── voip_room │ │ │ │ └── voip_room_component.dart │ │ ├── error_profile.dart │ │ ├── matrix │ │ │ ├── auth │ │ │ │ ├── matrix_sso_login_flow.dart │ │ │ │ └── matrix_username_password_login_flow.dart │ │ │ ├── components │ │ │ │ ├── account_switch_prefix │ │ │ │ │ └── matrix_account_switch_prefix.dart │ │ │ │ ├── command_component │ │ │ │ │ └── matrix_command_component.dart │ │ │ │ ├── direct_messages │ │ │ │ │ └── matrix_direct_messages_component.dart │ │ │ │ ├── emoticon │ │ │ │ │ ├── matrix_emoticon.dart │ │ │ │ │ ├── matrix_emoticon_component.dart │ │ │ │ │ ├── matrix_emoticon_pack.dart │ │ │ │ │ ├── matrix_emoticon_state_manager.dart │ │ │ │ │ ├── matrix_import_emoticon_pack_task.dart │ │ │ │ │ ├── matrix_room_emoticon_component.dart │ │ │ │ │ └── matrix_space_emoticon_component.dart │ │ │ │ ├── event_search │ │ │ │ │ └── matrix_event_search_component.dart │ │ │ │ ├── gif │ │ │ │ │ └── matrix_gif_component.dart │ │ │ │ ├── invitation │ │ │ │ │ └── matrix_invitation_component.dart │ │ │ │ ├── matrix_sync_listener.dart │ │ │ │ ├── message_effects │ │ │ │ │ └── matrix_message_effects_component.dart │ │ │ │ ├── photo_album_room │ │ │ │ │ ├── matrix_photo.dart │ │ │ │ │ ├── matrix_photo_album_room_component.dart │ │ │ │ │ ├── matrix_photo_album_timeline.dart │ │ │ │ │ └── matrix_upload_photos_task.dart │ │ │ │ ├── pinned_messages │ │ │ │ │ └── matrix_pinned_messages_component.dart │ │ │ │ ├── push_notifications │ │ │ │ │ └── matrix_push_notification_component.dart │ │ │ │ ├── read_receipts │ │ │ │ │ └── matrix_read_receipt_component.dart │ │ │ │ ├── rtc_data_channel │ │ │ │ │ ├── matrix_rtc_data_channel.dart │ │ │ │ │ ├── matrix_rtc_data_channel_component.dart │ │ │ │ │ └── matrix_rtc_data_media_stream.dart │ │ │ │ ├── rtc_screen_share_annotation │ │ │ │ │ └── matrix_rtc_screen_share_annotation_component.dart │ │ │ │ ├── space_color_scheme │ │ │ │ │ └── matrix_space_color_scheme_component.dart │ │ │ │ ├── threads │ │ │ │ │ ├── matrix_thread_timeline.dart │ │ │ │ │ └── matrix_threads_component.dart │ │ │ │ ├── typing_indicators │ │ │ │ │ └── matrix_typing_indicators_component.dart │ │ │ │ ├── url_preview │ │ │ │ │ └── matrix_url_preview_component.dart │ │ │ │ ├── user_presence │ │ │ │ │ └── matrix_user_presence.dart │ │ │ │ ├── voip │ │ │ │ │ ├── matrix_voip_component.dart │ │ │ │ │ ├── matrix_voip_session.dart │ │ │ │ │ └── matrix_voip_stream.dart │ │ │ │ └── voip_room │ │ │ │ │ ├── matrix_livekit_android_screencapture_source.dart │ │ │ │ │ ├── matrix_livekit_backend.dart │ │ │ │ │ ├── matrix_livekit_voip_session.dart │ │ │ │ │ ├── matrix_livekit_voip_stream.dart │ │ │ │ │ └── matrix_voip_room_component.dart │ │ │ ├── database │ │ │ │ ├── matrix_database.dart │ │ │ │ ├── matrix_database_html.dart │ │ │ │ ├── matrix_database_io.dart │ │ │ │ └── matrix_database_stub.dart │ │ │ ├── extensions │ │ │ │ ├── matrix_client_extensions.dart │ │ │ │ └── matrix_event_extensions.dart │ │ │ ├── matrix_attachment.dart │ │ │ ├── matrix_client.dart │ │ │ ├── matrix_member.dart │ │ │ ├── matrix_mxc_file_provider.dart │ │ │ ├── matrix_mxc_image_provider.dart │ │ │ ├── matrix_native_implementations.dart │ │ │ ├── matrix_peer.dart │ │ │ ├── matrix_profile.dart │ │ │ ├── matrix_role.dart │ │ │ ├── matrix_room.dart │ │ │ ├── matrix_room_permissions.dart │ │ │ ├── matrix_room_preview.dart │ │ │ ├── matrix_space.dart │ │ │ ├── matrix_timeline.dart │ │ │ └── timeline_events │ │ │ │ ├── matrix_timeline_event.dart │ │ │ │ ├── matrix_timeline_event_add_reaction.dart │ │ │ │ ├── matrix_timeline_event_call.dart │ │ │ │ ├── matrix_timeline_event_edit.dart │ │ │ │ ├── matrix_timeline_event_emote.dart │ │ │ │ ├── matrix_timeline_event_encrypted.dart │ │ │ │ ├── matrix_timeline_event_membership.dart │ │ │ │ ├── matrix_timeline_event_message.dart │ │ │ │ ├── matrix_timeline_event_mixin_reactions.dart │ │ │ │ ├── matrix_timeline_event_mixin_related.dart │ │ │ │ ├── matrix_timeline_event_pinned_messages.dart │ │ │ │ ├── matrix_timeline_event_redaction.dart │ │ │ │ ├── matrix_timeline_event_sticker.dart │ │ │ │ └── matrix_timeline_event_unknown.dart │ │ ├── matrix_background │ │ │ ├── matrix_background_client.dart │ │ │ ├── matrix_background_direct_messages_component.dart │ │ │ ├── matrix_background_events.dart │ │ │ ├── matrix_background_member.dart │ │ │ └── matrix_background_room.dart │ │ ├── member.dart │ │ ├── peer.dart │ │ ├── permissions.dart │ │ ├── profile.dart │ │ ├── role.dart │ │ ├── room.dart │ │ ├── room_preview.dart │ │ ├── space.dart │ │ ├── stale_info.dart │ │ ├── tasks │ │ │ └── client_connection_status_task.dart │ │ ├── timeline.dart │ │ └── timeline_events │ │ │ ├── timeline_event.dart │ │ │ ├── timeline_event_add_reaction.dart │ │ │ ├── timeline_event_edit.dart │ │ │ ├── timeline_event_emote.dart │ │ │ ├── timeline_event_encrypted.dart │ │ │ ├── timeline_event_feature_reactions.dart │ │ │ ├── timeline_event_feature_related.dart │ │ │ ├── timeline_event_generic.dart │ │ │ ├── timeline_event_message.dart │ │ │ ├── timeline_event_redaction.dart │ │ │ ├── timeline_event_sticker.dart │ │ │ └── timeline_event_unknown.dart │ ├── config │ │ ├── app_config.dart │ │ ├── build_config.dart │ │ ├── experiments.dart │ │ ├── global_config.dart │ │ ├── layout_config.dart │ │ ├── platform_utils.dart │ │ ├── preferences.dart │ │ └── theme_config.dart │ ├── debug │ │ ├── l10n_debug_lookup.dart │ │ └── log.dart │ ├── diagnostic │ │ ├── benchmark_values.dart │ │ ├── diagnostics.dart │ │ └── mocks │ │ │ └── matrix_client_component_mocks.dart │ ├── firebase_options.dart │ ├── generator │ │ ├── builder.dart │ │ └── unicode_emoji_generator.dart │ ├── main.dart │ ├── service │ │ ├── background_service.dart │ │ ├── background_service_notifications │ │ │ ├── background_service_task_notification.dart │ │ │ └── background_service_task_notification2.dart │ │ └── background_service_task.dart │ ├── ui │ │ ├── atoms │ │ │ ├── adaptive_context_menu.dart │ │ │ ├── blurred_image_background.dart │ │ │ ├── code_block.dart │ │ │ ├── dot_indicator.dart │ │ │ ├── drag_drop_file_target.dart │ │ │ ├── emoji_reaction.dart │ │ │ ├── emoji_widget.dart │ │ │ ├── floating_tile.dart │ │ │ ├── gradient_background.dart │ │ │ ├── icon_button.dart │ │ │ ├── keyboard_adaptor.dart │ │ │ ├── lightbox.dart │ │ │ ├── message_attachment.dart │ │ │ ├── notification_badge.dart │ │ │ ├── pill.dart │ │ │ ├── rich_text │ │ │ │ ├── matrix_html_parser.dart │ │ │ │ └── spans │ │ │ │ │ └── link.dart │ │ │ ├── rich_text_field.dart │ │ │ ├── role_view.dart │ │ │ ├── room_created.dart │ │ │ ├── room_header.dart │ │ │ ├── room_panel.dart │ │ │ ├── room_preview.dart │ │ │ ├── room_text_button.dart │ │ │ ├── scaled_safe_area.dart │ │ │ ├── shader │ │ │ │ └── star_trails.dart │ │ │ ├── shimmer_loading.dart │ │ │ ├── space_header.dart │ │ │ ├── space_icon.dart │ │ │ ├── space_list.dart │ │ │ ├── thread_reply_footer.dart │ │ │ └── tiny_pill.dart │ │ ├── layout │ │ │ └── bento.dart │ │ ├── molecules │ │ │ ├── account_selector.dart │ │ │ ├── alert_view.dart │ │ │ ├── attachment_icon.dart │ │ │ ├── direct_message_list.dart │ │ │ ├── editable_label.dart │ │ │ ├── emoji_picker.dart │ │ │ ├── emoticon_picker.dart │ │ │ ├── file_preview.dart │ │ │ ├── gif_picker.dart │ │ │ ├── image_picker.dart │ │ │ ├── invitation_display.dart │ │ │ ├── message.dart │ │ │ ├── message_input.dart │ │ │ ├── overlapping_panels.dart │ │ │ ├── popup_icon_menu.dart │ │ │ ├── profile │ │ │ │ └── mini_profile_view.dart │ │ │ ├── read_indicator.dart │ │ │ ├── room_timeline_widget │ │ │ │ ├── room_timeline_overlay.dart │ │ │ │ ├── room_timeline_overlay_button.dart │ │ │ │ ├── room_timeline_widget.dart │ │ │ │ └── room_timeline_widget_view.dart │ │ │ ├── settings_entry_bool.dart │ │ │ ├── space_selector.dart │ │ │ ├── space_viewer.dart │ │ │ ├── sticker_picker.dart │ │ │ ├── timeline_events │ │ │ │ ├── events │ │ │ │ │ ├── timeline_event_view_attachments.dart │ │ │ │ │ ├── timeline_event_view_generic.dart │ │ │ │ │ ├── timeline_event_view_message.dart │ │ │ │ │ ├── timeline_event_view_reactions.dart │ │ │ │ │ ├── timeline_event_view_reply.dart │ │ │ │ │ ├── timeline_event_view_sticker.dart │ │ │ │ │ ├── timeline_event_view_thread.dart │ │ │ │ │ └── timeline_event_view_url_previews.dart │ │ │ │ ├── layouts │ │ │ │ │ └── timeline_event_layout_message.dart │ │ │ │ ├── timeline_event_date_time_marker.dart │ │ │ │ ├── timeline_event_layout.dart │ │ │ │ ├── timeline_event_menu.dart │ │ │ │ ├── timeline_event_menu_dialog.dart │ │ │ │ ├── timeline_event_view_single.dart │ │ │ │ └── timeline_view_entry.dart │ │ │ ├── typing_indicators_widget.dart │ │ │ ├── url_preview_widget.dart │ │ │ ├── user_list.dart │ │ │ ├── user_panel.dart │ │ │ └── video_player │ │ │ │ ├── video_player.dart │ │ │ │ ├── video_player_controller.dart │ │ │ │ └── video_player_implementation.dart │ │ ├── navigation │ │ │ ├── adaptive_dialog.dart │ │ │ ├── adaptive_text_dialog.dart │ │ │ └── navigation_utils.dart │ │ ├── organisms │ │ │ ├── attachment_processor │ │ │ │ └── attachment_processor.dart │ │ │ ├── background_task_view │ │ │ │ ├── background_task_view.dart │ │ │ │ └── background_task_view_container.dart │ │ │ ├── call_view │ │ │ │ ├── call.dart │ │ │ │ ├── call_view.dart │ │ │ │ ├── screen_capture_source_dialog.dart │ │ │ │ ├── screen_capture_source_widget.dart │ │ │ │ ├── voip_fullscreen_stream_view.dart │ │ │ │ └── voip_stream_view.dart │ │ │ ├── chat │ │ │ │ ├── chat.dart │ │ │ │ └── chat_view.dart │ │ │ ├── home_screen │ │ │ │ ├── home_screen.dart │ │ │ │ └── home_screen_view.dart │ │ │ ├── invitation_view │ │ │ │ ├── incoming_invitations_view.dart │ │ │ │ ├── send_invitation.dart │ │ │ │ └── single_invitation_component_view.dart │ │ │ ├── mini_call_menu │ │ │ │ ├── mini_call_menu.dart │ │ │ │ ├── mini_call_menu_connected.dart │ │ │ │ └── mini_call_menu_incoming.dart │ │ │ ├── particle_player │ │ │ │ ├── particle_player.dart │ │ │ │ ├── particle_system_confetti.dart │ │ │ │ ├── particle_system_eyes.dart │ │ │ │ ├── particle_system_hug.dart │ │ │ │ ├── particle_system_snow.dart │ │ │ │ └── particle_system_space_invaders.dart │ │ │ ├── photo_albums │ │ │ │ ├── photo_album_view.dart │ │ │ │ └── photos_upload_view.dart │ │ │ ├── room_event_search │ │ │ │ └── room_event_search_widget.dart │ │ │ ├── room_members_list │ │ │ │ └── room_members_list.dart │ │ │ ├── room_pinned_messages │ │ │ │ └── room_pinned_messages_widget.dart │ │ │ ├── room_quick_access_menu │ │ │ │ ├── room_quick_access_menu.dart │ │ │ │ ├── room_quick_access_menu_desktop.dart │ │ │ │ └── room_quick_access_menu_mobile.dart │ │ │ ├── room_side_panel │ │ │ │ └── room_side_panel.dart │ │ │ ├── side_navigation_bar │ │ │ │ ├── side_navigation_bar.dart │ │ │ │ └── side_navigation_bar_direct_messages.dart │ │ │ ├── sidebar_call_icon │ │ │ │ ├── sidebar_call_icon.dart │ │ │ │ ├── sidebar_call_icon_view.dart │ │ │ │ └── sidebar_calls_list.dart │ │ │ ├── space_summary │ │ │ │ ├── space_summary.dart │ │ │ │ └── space_summary_view.dart │ │ │ ├── user_profile │ │ │ │ ├── user_profile.dart │ │ │ │ └── user_profile_view.dart │ │ │ └── voip_room_view │ │ │ │ └── voip_room_view.dart │ │ └── pages │ │ │ ├── add_space_or_room │ │ │ ├── add_space_or_room.dart │ │ │ └── add_space_or_room_view.dart │ │ │ ├── bubble │ │ │ └── bubble_page.dart │ │ │ ├── developer │ │ │ └── benchmarks │ │ │ │ ├── benchmark_utils.dart │ │ │ │ └── timeline_viewer_benchmark.dart │ │ │ ├── fatal_error │ │ │ └── fatal_error_page.dart │ │ │ ├── login │ │ │ ├── login_page.dart │ │ │ └── login_page_view.dart │ │ │ ├── main │ │ │ ├── main_page.dart │ │ │ ├── main_page_view_desktop.dart │ │ │ ├── main_page_view_mobile.dart │ │ │ └── room_primary_view.dart │ │ │ ├── matrix │ │ │ ├── authentication │ │ │ │ ├── matrix_uia_request.dart │ │ │ │ └── matrix_uia_request_view.dart │ │ │ ├── room_address_settings │ │ │ │ ├── matrix_room_add_local_alias_view.dart │ │ │ │ ├── matrix_room_address_settings.dart │ │ │ │ └── matrix_room_address_settings_view.dart │ │ │ └── verification │ │ │ │ ├── matrix_verification_page.dart │ │ │ │ └── matrix_verification_view.dart │ │ │ ├── settings │ │ │ ├── app_settings_page.dart │ │ │ ├── categories │ │ │ │ ├── about │ │ │ │ │ └── settings_category_about.dart │ │ │ │ ├── account │ │ │ │ │ ├── account_emoji │ │ │ │ │ │ ├── account_emoji_tab.dart │ │ │ │ │ │ └── account_emoji_view.dart │ │ │ │ │ ├── account_management │ │ │ │ │ │ └── account_management_tab.dart │ │ │ │ │ ├── account_state │ │ │ │ │ │ └── account_state_tab.dart │ │ │ │ │ ├── profile │ │ │ │ │ │ ├── profile_edit_tab.dart │ │ │ │ │ │ └── profile_edit_view.dart │ │ │ │ │ ├── security │ │ │ │ │ │ ├── matrix │ │ │ │ │ │ │ ├── cross_signing │ │ │ │ │ │ │ │ ├── cross_signing_page.dart │ │ │ │ │ │ │ │ └── cross_signing_view.dart │ │ │ │ │ │ │ ├── matrix_security_tab.dart │ │ │ │ │ │ │ └── session │ │ │ │ │ │ │ │ ├── matrix_session.dart │ │ │ │ │ │ │ │ └── matrix_session_view.dart │ │ │ │ │ │ └── security_tab.dart │ │ │ │ │ └── settings_category_account.dart │ │ │ │ ├── app │ │ │ │ │ ├── advanced_settings_page.dart │ │ │ │ │ ├── appearance_settings_page.dart │ │ │ │ │ ├── experiments_settings_page.dart │ │ │ │ │ ├── general_settings_page.dart │ │ │ │ │ ├── notification_settings │ │ │ │ │ │ ├── notification_settings_page.dart │ │ │ │ │ │ ├── notifier_component_view │ │ │ │ │ │ │ ├── matrix_notifier_component_view.dart │ │ │ │ │ │ │ └── notifier_component_view.dart │ │ │ │ │ │ └── notifier_debug_view.dart │ │ │ │ │ ├── settings_category_app.dart │ │ │ │ │ ├── theme_settings │ │ │ │ │ │ └── theme_settings_widget.dart │ │ │ │ │ ├── voip_settings │ │ │ │ │ │ ├── voip_debug_matrix_client.dart │ │ │ │ │ │ ├── voip_debug_settings.dart │ │ │ │ │ │ ├── voip_settings_page.dart │ │ │ │ │ │ └── voip_turn_fallback_dialog.dart │ │ │ │ │ └── window_settings.dart │ │ │ │ ├── developer │ │ │ │ │ ├── cumulative_diagnostics_widget.dart │ │ │ │ │ ├── developer_settings_page.dart │ │ │ │ │ └── log_page.dart │ │ │ │ ├── room │ │ │ │ │ ├── appearance │ │ │ │ │ │ ├── room_appearance_settings_page.dart │ │ │ │ │ │ └── room_appearance_settings_view.dart │ │ │ │ │ ├── developer │ │ │ │ │ │ └── room_developer_settings_view.dart │ │ │ │ │ ├── emoji_packs │ │ │ │ │ │ ├── bulk_import_view.dart │ │ │ │ │ │ ├── room_emoji_pack_settings_page.dart │ │ │ │ │ │ └── room_emoji_pack_settings_view.dart │ │ │ │ │ ├── general │ │ │ │ │ │ ├── room_general_settings_page.dart │ │ │ │ │ │ └── room_general_settings_view.dart │ │ │ │ │ ├── permissions │ │ │ │ │ │ └── matrix │ │ │ │ │ │ │ ├── matrix_room_permissions_page.dart │ │ │ │ │ │ │ └── matrix_room_permissions_view.dart │ │ │ │ │ ├── security │ │ │ │ │ │ ├── room_security_settings_page.dart │ │ │ │ │ │ └── room_security_settings_view.dart │ │ │ │ │ └── settings_category_room.dart │ │ │ │ └── space │ │ │ │ │ ├── settings_category_space.dart │ │ │ │ │ ├── space_appearance_settings_page.dart │ │ │ │ │ ├── space_developer_settings_view.dart │ │ │ │ │ ├── space_emoji_pack_settings.dart │ │ │ │ │ └── space_general_settings_page.dart │ │ │ ├── desktop_settings_page.dart │ │ │ ├── mobile_settings_page.dart │ │ │ ├── room_settings_page.dart │ │ │ ├── settings_button.dart │ │ │ ├── settings_category.dart │ │ │ ├── settings_page.dart │ │ │ ├── settings_tab.dart │ │ │ └── space_settings_page.dart │ │ │ └── setup │ │ │ ├── menus │ │ │ └── unified_push_setup.dart │ │ │ ├── setup_menu.dart │ │ │ └── setup_page.dart │ └── utils │ │ ├── android_intent_helper.dart │ │ ├── animation │ │ ├── ring_shaker.dart │ │ └── ripple.dart │ │ ├── autofill_utils.dart │ │ ├── background_tasks │ │ ├── background_task_manager.dart │ │ └── mock_tasks.dart │ │ ├── common_animation.dart │ │ ├── common_strings.dart │ │ ├── custom_uri.dart │ │ ├── database │ │ ├── database_server.dart │ │ ├── database_server_io.dart │ │ ├── database_server_stub.dart │ │ └── multiple_database_server.dart │ │ ├── debounce.dart │ │ ├── download_utils.dart │ │ ├── emoji │ │ ├── emoji_matcher.dart │ │ ├── unicode_emoji.dart │ │ └── unicode_emoji_data.dart │ │ ├── event_bus.dart │ │ ├── file_utils.dart │ │ ├── first_time_setup.dart │ │ ├── image │ │ └── lod_image.dart │ │ ├── image_utils.dart │ │ ├── link_utils.dart │ │ ├── list_extension.dart │ │ ├── mime.dart │ │ ├── notifying_list.dart │ │ ├── rng.dart │ │ ├── scaled_app.dart │ │ ├── shortcuts_manager.dart │ │ ├── stored_stream_controller.dart │ │ ├── task_scheduler.dart │ │ ├── text_utils.dart │ │ └── window_management.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── debian │ │ ├── DEBIAN │ │ │ ├── control-ubuntu-22.04 │ │ │ └── control-ubuntu-24.04 │ │ └── usr │ │ │ ├── lib │ │ │ └── .gitkeep │ │ │ └── share │ │ │ ├── applications │ │ │ └── chat.commet.commetapp.desktop │ │ │ └── icons │ │ │ └── hicolor │ │ │ ├── 128x128 │ │ │ └── apps │ │ │ │ └── commet-desktop.png │ │ │ ├── 16x16 │ │ │ └── apps │ │ │ │ └── commet-desktop.png │ │ │ ├── 256x256 │ │ │ └── apps │ │ │ │ └── commet-desktop.png │ │ │ ├── 32x32 │ │ │ └── apps │ │ │ │ └── commet-desktop.png │ │ │ ├── 512x512 │ │ │ └── apps │ │ │ │ └── commet-desktop.png │ │ │ └── 64x64 │ │ │ └── apps │ │ │ └── commet-desktop.png │ ├── flatpak │ │ ├── chat.commet.commetapp.desktop │ │ ├── chat.commet.commetapp.metainfo.xml │ │ ├── chat.commet.commetapp.yaml │ │ ├── flathub.json │ │ └── icon.png │ ├── 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 │ ├── 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 ├── pubspec.lock ├── pubspec.yaml ├── scripts │ ├── apply_google_services.patch │ ├── build_release.dart │ ├── codegen.dart │ ├── extract_strings.dart │ ├── generate-from-arb.sh │ ├── integration-prepare-homeserver.sh │ ├── integration-server-synapse.sh │ ├── integration-test.sh │ ├── prepare-web.sh │ ├── run_widgetbook.sh │ ├── setup-env.sh │ ├── setup_android_release.dart │ └── unit-test.sh ├── test_driver │ └── benchmark_driver.dart ├── unit_test │ ├── notifying_list_test.dart │ └── password_validator_test.dart ├── web │ ├── auth.html │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ ├── manifest.json │ ├── splash │ │ └── img │ │ │ ├── dark-1x.png │ │ │ ├── dark-2x.png │ │ │ ├── dark-3x.png │ │ │ ├── dark-4x.png │ │ │ ├── light-1x.png │ │ │ ├── light-2x.png │ │ │ ├── light-3x.png │ │ │ └── light-4x.png │ └── static │ │ └── _headers └── 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 ├── flake.lock ├── flake.nix └── tiamat ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── tiamat │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── font │ ├── code │ │ └── RobotoMono.ttf │ ├── emoji-font │ │ ├── LICENSE │ │ └── NotoColorEmoji.ttf │ └── roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── Roboto-ThinItalic.ttf ├── images │ └── placeholder │ │ └── generic │ │ ├── License.txt │ │ ├── checker_dark.png │ │ ├── checker_green.png │ │ ├── checker_orange.png │ │ ├── checker_purple.png │ │ └── checker_red.png └── shader │ └── texture_coordinate.frag ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── atoms │ ├── avatar.dart │ ├── button.dart │ ├── checkbox.dart │ ├── circle_button.dart │ ├── context_menu.dart │ ├── dropdown_selector.dart │ ├── dropdown_text_field.dart │ ├── foundation.dart │ ├── glass_tile.dart │ ├── icon_button.dart │ ├── icon_toggle.dart │ ├── image_button.dart │ ├── panel.dart │ ├── popup_dialog.dart │ ├── radio_button.dart │ ├── seperator.dart │ ├── shader_background.dart │ ├── slider.dart │ ├── switch.dart │ ├── text.dart │ ├── text_button.dart │ ├── text_button_expander.dart │ ├── text_input.dart │ ├── texture_coordinate_painter.dart │ ├── tile.dart │ ├── toggleable_list.dart │ └── tooltip.dart ├── config │ ├── config.dart │ └── style │ │ ├── theme_amoled.dart │ │ ├── theme_base.dart │ │ ├── theme_changer.dart │ │ ├── theme_common.dart │ │ ├── theme_dark.dart │ │ ├── theme_extensions.dart │ │ ├── theme_json_converter.dart │ │ ├── theme_light.dart │ │ └── theme_you.dart ├── tiamat.dart └── widgetbook.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── 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 ├── pubspec.lock ├── pubspec.yaml ├── scripts └── codegen.sh ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── 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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /commet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/.gitignore -------------------------------------------------------------------------------- /commet/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/.metadata -------------------------------------------------------------------------------- /commet/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/.vscode/launch.json -------------------------------------------------------------------------------- /commet/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/analysis_options.yaml -------------------------------------------------------------------------------- /commet/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/.gitignore -------------------------------------------------------------------------------- /commet/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/build.gradle -------------------------------------------------------------------------------- /commet/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/google-services.json -------------------------------------------------------------------------------- /commet/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /commet/android/app/src/debug/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/debug/google-services.json -------------------------------------------------------------------------------- /commet/android/app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/kotlin/chat/commet/commet/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/kotlin/chat/commet/commet/MainActivity.kt -------------------------------------------------------------------------------- /commet/android/app/src/main/kotlin/chat/commet/commet/UnifiedPushService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/kotlin/chat/commet/commet/UnifiedPushService.kt -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-hdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-hdpi/notification_icon.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-mdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-mdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-mdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-mdpi/notification_icon.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xhdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xhdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xhdpi/notification_icon.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xxhdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xxhdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xxhdpi/notification_icon.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xxxhdpi/ic_bg_service_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xxxhdpi/ic_bg_service_small.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable-xxxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable-xxxhdpi/notification_icon.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /commet/android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /commet/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /commet/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /commet/android/app/src/release/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/app/src/release/google-services.json -------------------------------------------------------------------------------- /commet/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/build.gradle -------------------------------------------------------------------------------- /commet/android/build/reports/problems/problems-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/build/reports/problems/problems-report.html -------------------------------------------------------------------------------- /commet/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/gradle.properties -------------------------------------------------------------------------------- /commet/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /commet/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/android/settings.gradle -------------------------------------------------------------------------------- /commet/assets/config/global_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "default_homeserver": "matrix.org" 3 | } -------------------------------------------------------------------------------- /commet/assets/emoji_data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/emoji_data/data.json -------------------------------------------------------------------------------- /commet/assets/emoji_data/readme.md: -------------------------------------------------------------------------------- 1 | This data is from https://github.com/milesj/emojibase -------------------------------------------------------------------------------- /commet/assets/emoji_data/shortcodes/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/emoji_data/shortcodes/en.json -------------------------------------------------------------------------------- /commet/assets/font/code/JetBrainsMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/code/JetBrainsMono-Regular.ttf -------------------------------------------------------------------------------- /commet/assets/font/code/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/code/OFL.txt -------------------------------------------------------------------------------- /commet/assets/font/emoji-font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/emoji-font/README.md -------------------------------------------------------------------------------- /commet/assets/font/emoji-font/TwemojiCOLR.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/emoji-font/TwemojiCOLR.otf -------------------------------------------------------------------------------- /commet/assets/font/jellee/Jellee-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/jellee/Jellee-Bold.ttf -------------------------------------------------------------------------------- /commet/assets/font/jellee/Jellee-OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/jellee/Jellee-OFL.txt -------------------------------------------------------------------------------- /commet/assets/font/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/LICENSE.txt -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /commet/assets/font/roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/font/roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /commet/assets/images/app_icon/app_icon_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/app_icon/app_icon_filled.png -------------------------------------------------------------------------------- /commet/assets/images/app_icon/app_icon_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/app_icon/app_icon_rounded.png -------------------------------------------------------------------------------- /commet/assets/images/app_icon/app_icon_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/app_icon/app_icon_transparent.png -------------------------------------------------------------------------------- /commet/assets/images/app_icon/app_icon_transparent_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/app_icon/app_icon_transparent_cropped.png -------------------------------------------------------------------------------- /commet/assets/images/app_icon/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/app_icon/icon.svg -------------------------------------------------------------------------------- /commet/assets/images/effects/particles/confetti.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/effects/particles/confetti.webp -------------------------------------------------------------------------------- /commet/assets/images/effects/particles/fluent-emoji-alien-monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/effects/particles/fluent-emoji-alien-monster.png -------------------------------------------------------------------------------- /commet/assets/images/effects/particles/fluent-emoji-eyes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/effects/particles/fluent-emoji-eyes.webp -------------------------------------------------------------------------------- /commet/assets/images/effects/particles/fluent-emoji-smile-with-hearts.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/effects/particles/fluent-emoji-smile-with-hearts.webp -------------------------------------------------------------------------------- /commet/assets/images/effects/particles/fluent-emoji-snowflake.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/effects/particles/fluent-emoji-snowflake.webp -------------------------------------------------------------------------------- /commet/assets/images/effects/particles/fluent-emoji-source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/images/effects/particles/fluent-emoji-source.txt -------------------------------------------------------------------------------- /commet/assets/js/package/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commet/assets/l10n/intl_be.arb: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /commet/assets/l10n/intl_de.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_de.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_en.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_es.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_et.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_et.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_eu.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_eu.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_fa.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_fa.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_fr.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_ja.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_ko.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_ko.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_nb.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_nb.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_pl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_pl.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_pt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_pt.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_pt_BR.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_pt_BR.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_ru.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_ta.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_ta.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_uk.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_uk.arb -------------------------------------------------------------------------------- /commet/assets/l10n/intl_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/l10n/intl_zh.arb -------------------------------------------------------------------------------- /commet/assets/shader/star_trails.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/shader/star_trails.frag -------------------------------------------------------------------------------- /commet/assets/shader/texture_coordinate.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/shader/texture_coordinate.frag -------------------------------------------------------------------------------- /commet/assets/sound/joined_call.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/sound/joined_call.ogg -------------------------------------------------------------------------------- /commet/assets/sound/left_call.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/sound/left_call.ogg -------------------------------------------------------------------------------- /commet/assets/sound/ringtone_in.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/sound/ringtone_in.ogg -------------------------------------------------------------------------------- /commet/assets/sound/ringtone_out.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/assets/sound/ringtone_out.ogg -------------------------------------------------------------------------------- /commet/assets/vodozemac/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commet/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/build.yaml -------------------------------------------------------------------------------- /commet/devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /commet/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/firebase.json -------------------------------------------------------------------------------- /commet/integration_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/README.md -------------------------------------------------------------------------------- /commet/integration_test/benchmark/benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/benchmark/benchmark.dart -------------------------------------------------------------------------------- /commet/integration_test/benchmark/benchmarks/timeline_viewer_benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/benchmark/benchmarks/timeline_viewer_benchmark.dart -------------------------------------------------------------------------------- /commet/integration_test/extensions/common_flows.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/extensions/common_flows.dart -------------------------------------------------------------------------------- /commet/integration_test/extensions/wait_for.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/extensions/wait_for.dart -------------------------------------------------------------------------------- /commet/integration_test/matrix/change_space_name_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/matrix/change_space_name_test.dart -------------------------------------------------------------------------------- /commet/integration_test/matrix/create_space_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/matrix/create_space_test.dart -------------------------------------------------------------------------------- /commet/integration_test/matrix/key_verification_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/matrix/key_verification_test.dart -------------------------------------------------------------------------------- /commet/integration_test/matrix/login_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/matrix/login_test.dart -------------------------------------------------------------------------------- /commet/integration_test/matrix/multi_account_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/matrix/multi_account_test.dart -------------------------------------------------------------------------------- /commet/integration_test/runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/runner.dart -------------------------------------------------------------------------------- /commet/integration_test/synapse/data/homeserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/synapse/data/homeserver.yaml -------------------------------------------------------------------------------- /commet/integration_test/synapse/data/localhost.log.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/integration_test/synapse/data/localhost.log.config -------------------------------------------------------------------------------- /commet/integration_test/synapse/data/localhost.signing.key: -------------------------------------------------------------------------------- 1 | ed25519 a_SLrz 0Ho/81rZZve88zdRxhaXWHUT6K3OqzmP35rNMZBUr6I 2 | -------------------------------------------------------------------------------- /commet/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/.gitignore -------------------------------------------------------------------------------- /commet/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /commet/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /commet/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /commet/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /commet/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /commet/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /commet/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /commet/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /commet/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /commet/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /commet/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /commet/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /commet/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/ios/Runner/Info.plist -------------------------------------------------------------------------------- /commet/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /commet/l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/l10n.yaml -------------------------------------------------------------------------------- /commet/lib/cache/cache_file_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/cache/cache_file_provider.dart -------------------------------------------------------------------------------- /commet/lib/cache/drift_file_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/cache/drift_file_cache.dart -------------------------------------------------------------------------------- /commet/lib/cache/file_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/cache/file_cache.dart -------------------------------------------------------------------------------- /commet/lib/cache/file_cache_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/cache/file_cache_stub.dart -------------------------------------------------------------------------------- /commet/lib/cache/file_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/cache/file_provider.dart -------------------------------------------------------------------------------- /commet/lib/client/alert.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/alert.dart -------------------------------------------------------------------------------- /commet/lib/client/attachment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/attachment.dart -------------------------------------------------------------------------------- /commet/lib/client/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/auth.dart -------------------------------------------------------------------------------- /commet/lib/client/call_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/call_manager.dart -------------------------------------------------------------------------------- /commet/lib/client/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/client.dart -------------------------------------------------------------------------------- /commet/lib/client/client_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/client_manager.dart -------------------------------------------------------------------------------- /commet/lib/client/components/command/command_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/command/command_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/component_registry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/component_registry.dart -------------------------------------------------------------------------------- /commet/lib/client/components/direct_messages/direct_message_aggregator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/direct_messages/direct_message_aggregator.dart -------------------------------------------------------------------------------- /commet/lib/client/components/direct_messages/direct_message_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/direct_messages/direct_message_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/emoticon/emoji_pack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/emoticon/emoji_pack.dart -------------------------------------------------------------------------------- /commet/lib/client/components/emoticon/emoticon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/emoticon/emoticon.dart -------------------------------------------------------------------------------- /commet/lib/client/components/emoticon/emoticon_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/emoticon/emoticon_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/event_search/event_search_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/event_search/event_search_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/gif/gif_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/gif/gif_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/gif/gif_search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/gif/gif_search_result.dart -------------------------------------------------------------------------------- /commet/lib/client/components/invitation/invitation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/invitation/invitation.dart -------------------------------------------------------------------------------- /commet/lib/client/components/invitation/invitation_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/invitation/invitation_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/message_effects/message_effect_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/message_effects/message_effect_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/message_effects/message_effect_particles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/message_effects/message_effect_particles.dart -------------------------------------------------------------------------------- /commet/lib/client/components/photo_album_room/photo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/photo_album_room/photo.dart -------------------------------------------------------------------------------- /commet/lib/client/components/photo_album_room/photo_album_timeline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/photo_album_room/photo_album_timeline.dart -------------------------------------------------------------------------------- /commet/lib/client/components/pinned_messages/pinned_messages_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/pinned_messages/pinned_messages_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/push_notification/linux/linux_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/push_notification/linux/linux_notifier.dart -------------------------------------------------------------------------------- /commet/lib/client/components/push_notification/modifiers/hide_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/push_notification/modifiers/hide_content.dart -------------------------------------------------------------------------------- /commet/lib/client/components/push_notification/notification_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/push_notification/notification_content.dart -------------------------------------------------------------------------------- /commet/lib/client/components/push_notification/notification_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/push_notification/notification_manager.dart -------------------------------------------------------------------------------- /commet/lib/client/components/push_notification/notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/push_notification/notifier.dart -------------------------------------------------------------------------------- /commet/lib/client/components/read_receipts/read_receipt_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/read_receipts/read_receipt_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/room_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/room_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/space_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/space_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/threads/thread_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/threads/thread_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/url_preview/url_preview_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/url_preview/url_preview_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/user_presence/user_presence_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/user_presence/user_presence_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/voip/voip_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/voip/voip_component.dart -------------------------------------------------------------------------------- /commet/lib/client/components/voip/voip_session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/voip/voip_session.dart -------------------------------------------------------------------------------- /commet/lib/client/components/voip/voip_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/voip/voip_stream.dart -------------------------------------------------------------------------------- /commet/lib/client/components/voip/webrtc_screencapture_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/voip/webrtc_screencapture_source.dart -------------------------------------------------------------------------------- /commet/lib/client/components/voip_room/voip_room_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/components/voip_room/voip_room_component.dart -------------------------------------------------------------------------------- /commet/lib/client/error_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/error_profile.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/auth/matrix_sso_login_flow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/auth/matrix_sso_login_flow.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/auth/matrix_username_password_login_flow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/auth/matrix_username_password_login_flow.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/emoticon/matrix_emoticon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/emoticon/matrix_emoticon.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/emoticon/matrix_emoticon_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/emoticon/matrix_emoticon_component.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/emoticon/matrix_emoticon_pack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/emoticon/matrix_emoticon_pack.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/gif/matrix_gif_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/gif/matrix_gif_component.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/matrix_sync_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/matrix_sync_listener.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/photo_album_room/matrix_photo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/photo_album_room/matrix_photo.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/threads/matrix_thread_timeline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/threads/matrix_thread_timeline.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/threads/matrix_threads_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/threads/matrix_threads_component.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/user_presence/matrix_user_presence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/user_presence/matrix_user_presence.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/voip/matrix_voip_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/voip/matrix_voip_component.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/voip/matrix_voip_session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/voip/matrix_voip_session.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/voip/matrix_voip_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/voip/matrix_voip_stream.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/components/voip_room/matrix_livekit_backend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/components/voip_room/matrix_livekit_backend.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/database/matrix_database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/database/matrix_database.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/database/matrix_database_html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/database/matrix_database_html.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/database/matrix_database_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/database/matrix_database_io.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/database/matrix_database_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/database/matrix_database_stub.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/extensions/matrix_client_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/extensions/matrix_client_extensions.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/extensions/matrix_event_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/extensions/matrix_event_extensions.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_attachment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_attachment.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_client.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_member.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_member.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_mxc_file_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_mxc_file_provider.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_mxc_image_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_mxc_image_provider.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_native_implementations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_native_implementations.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_peer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_peer.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_profile.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_role.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_role.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_room.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_room.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_room_permissions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_room_permissions.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_room_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_room_preview.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_space.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_space.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/matrix_timeline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/matrix_timeline.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/timeline_events/matrix_timeline_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/timeline_events/matrix_timeline_event.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/timeline_events/matrix_timeline_event_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/timeline_events/matrix_timeline_event_call.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/timeline_events/matrix_timeline_event_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/timeline_events/matrix_timeline_event_edit.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/timeline_events/matrix_timeline_event_emote.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/timeline_events/matrix_timeline_event_emote.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/timeline_events/matrix_timeline_event_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/timeline_events/matrix_timeline_event_message.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/timeline_events/matrix_timeline_event_sticker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/timeline_events/matrix_timeline_event_sticker.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix/timeline_events/matrix_timeline_event_unknown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix/timeline_events/matrix_timeline_event_unknown.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix_background/matrix_background_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix_background/matrix_background_client.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix_background/matrix_background_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix_background/matrix_background_events.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix_background/matrix_background_member.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix_background/matrix_background_member.dart -------------------------------------------------------------------------------- /commet/lib/client/matrix_background/matrix_background_room.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/matrix_background/matrix_background_room.dart -------------------------------------------------------------------------------- /commet/lib/client/member.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/member.dart -------------------------------------------------------------------------------- /commet/lib/client/peer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/peer.dart -------------------------------------------------------------------------------- /commet/lib/client/permissions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/permissions.dart -------------------------------------------------------------------------------- /commet/lib/client/profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/profile.dart -------------------------------------------------------------------------------- /commet/lib/client/role.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/role.dart -------------------------------------------------------------------------------- /commet/lib/client/room.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/room.dart -------------------------------------------------------------------------------- /commet/lib/client/room_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/room_preview.dart -------------------------------------------------------------------------------- /commet/lib/client/space.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/space.dart -------------------------------------------------------------------------------- /commet/lib/client/stale_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/stale_info.dart -------------------------------------------------------------------------------- /commet/lib/client/tasks/client_connection_status_task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/tasks/client_connection_status_task.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_add_reaction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_add_reaction.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_edit.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_emote.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_emote.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_encrypted.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_encrypted.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_feature_reactions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_feature_reactions.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_feature_related.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_feature_related.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_generic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_generic.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_message.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_redaction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_redaction.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_sticker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_sticker.dart -------------------------------------------------------------------------------- /commet/lib/client/timeline_events/timeline_event_unknown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/client/timeline_events/timeline_event_unknown.dart -------------------------------------------------------------------------------- /commet/lib/config/app_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/config/app_config.dart -------------------------------------------------------------------------------- /commet/lib/config/build_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/config/build_config.dart -------------------------------------------------------------------------------- /commet/lib/config/experiments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/config/experiments.dart -------------------------------------------------------------------------------- /commet/lib/config/global_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/config/global_config.dart -------------------------------------------------------------------------------- /commet/lib/config/layout_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/config/layout_config.dart -------------------------------------------------------------------------------- /commet/lib/config/platform_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/config/platform_utils.dart -------------------------------------------------------------------------------- /commet/lib/config/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/config/preferences.dart -------------------------------------------------------------------------------- /commet/lib/config/theme_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/config/theme_config.dart -------------------------------------------------------------------------------- /commet/lib/debug/l10n_debug_lookup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/debug/l10n_debug_lookup.dart -------------------------------------------------------------------------------- /commet/lib/debug/log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/debug/log.dart -------------------------------------------------------------------------------- /commet/lib/diagnostic/benchmark_values.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/diagnostic/benchmark_values.dart -------------------------------------------------------------------------------- /commet/lib/diagnostic/diagnostics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/diagnostic/diagnostics.dart -------------------------------------------------------------------------------- /commet/lib/diagnostic/mocks/matrix_client_component_mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/diagnostic/mocks/matrix_client_component_mocks.dart -------------------------------------------------------------------------------- /commet/lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/firebase_options.dart -------------------------------------------------------------------------------- /commet/lib/generator/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/generator/builder.dart -------------------------------------------------------------------------------- /commet/lib/generator/unicode_emoji_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/generator/unicode_emoji_generator.dart -------------------------------------------------------------------------------- /commet/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/main.dart -------------------------------------------------------------------------------- /commet/lib/service/background_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/service/background_service.dart -------------------------------------------------------------------------------- /commet/lib/service/background_service_task.dart: -------------------------------------------------------------------------------- 1 | abstract class BackgroundServiceTask {} 2 | -------------------------------------------------------------------------------- /commet/lib/ui/atoms/adaptive_context_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/adaptive_context_menu.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/blurred_image_background.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/blurred_image_background.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/code_block.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/code_block.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/dot_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/dot_indicator.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/drag_drop_file_target.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/drag_drop_file_target.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/emoji_reaction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/emoji_reaction.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/emoji_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/emoji_widget.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/floating_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/floating_tile.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/gradient_background.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/gradient_background.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/icon_button.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/keyboard_adaptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/keyboard_adaptor.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/lightbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/lightbox.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/message_attachment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/message_attachment.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/notification_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/notification_badge.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/pill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/pill.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/rich_text/matrix_html_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/rich_text/matrix_html_parser.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/rich_text/spans/link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/rich_text/spans/link.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/rich_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/rich_text_field.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/role_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/role_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/room_created.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/room_created.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/room_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/room_header.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/room_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/room_panel.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/room_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/room_preview.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/room_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/room_text_button.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/scaled_safe_area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/scaled_safe_area.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/shader/star_trails.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/shader/star_trails.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/shimmer_loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/shimmer_loading.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/space_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/space_header.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/space_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/space_icon.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/space_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/space_list.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/thread_reply_footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/thread_reply_footer.dart -------------------------------------------------------------------------------- /commet/lib/ui/atoms/tiny_pill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/atoms/tiny_pill.dart -------------------------------------------------------------------------------- /commet/lib/ui/layout/bento.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/layout/bento.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/account_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/account_selector.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/alert_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/alert_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/attachment_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/attachment_icon.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/direct_message_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/direct_message_list.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/editable_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/editable_label.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/emoji_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/emoji_picker.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/emoticon_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/emoticon_picker.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/file_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/file_preview.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/gif_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/gif_picker.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/image_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/image_picker.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/invitation_display.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/invitation_display.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/message.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/message_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/message_input.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/overlapping_panels.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/overlapping_panels.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/popup_icon_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/popup_icon_menu.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/profile/mini_profile_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/profile/mini_profile_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/read_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/read_indicator.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/room_timeline_widget/room_timeline_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/room_timeline_widget/room_timeline_overlay.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/room_timeline_widget/room_timeline_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/room_timeline_widget/room_timeline_widget.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/room_timeline_widget/room_timeline_widget_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/room_timeline_widget/room_timeline_widget_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/settings_entry_bool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/settings_entry_bool.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/space_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/space_selector.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/space_viewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/space_viewer.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/sticker_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/sticker_picker.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/timeline_events/timeline_event_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/timeline_events/timeline_event_layout.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/timeline_events/timeline_event_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/timeline_events/timeline_event_menu.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/timeline_events/timeline_event_menu_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/timeline_events/timeline_event_menu_dialog.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/timeline_events/timeline_event_view_single.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/timeline_events/timeline_event_view_single.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/timeline_events/timeline_view_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/timeline_events/timeline_view_entry.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/typing_indicators_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/typing_indicators_widget.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/url_preview_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/url_preview_widget.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/user_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/user_list.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/user_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/user_panel.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/video_player/video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/video_player/video_player.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/video_player/video_player_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/video_player/video_player_controller.dart -------------------------------------------------------------------------------- /commet/lib/ui/molecules/video_player/video_player_implementation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/molecules/video_player/video_player_implementation.dart -------------------------------------------------------------------------------- /commet/lib/ui/navigation/adaptive_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/navigation/adaptive_dialog.dart -------------------------------------------------------------------------------- /commet/lib/ui/navigation/adaptive_text_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/navigation/adaptive_text_dialog.dart -------------------------------------------------------------------------------- /commet/lib/ui/navigation/navigation_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/navigation/navigation_utils.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/attachment_processor/attachment_processor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/attachment_processor/attachment_processor.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/background_task_view/background_task_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/background_task_view/background_task_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/call_view/call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/call_view/call.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/call_view/call_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/call_view/call_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/call_view/screen_capture_source_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/call_view/screen_capture_source_dialog.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/call_view/screen_capture_source_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/call_view/screen_capture_source_widget.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/call_view/voip_fullscreen_stream_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/call_view/voip_fullscreen_stream_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/call_view/voip_stream_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/call_view/voip_stream_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/chat/chat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/chat/chat.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/chat/chat_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/chat/chat_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/home_screen/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/home_screen/home_screen.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/home_screen/home_screen_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/home_screen/home_screen_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/invitation_view/incoming_invitations_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/invitation_view/incoming_invitations_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/invitation_view/send_invitation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/invitation_view/send_invitation.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/mini_call_menu/mini_call_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/mini_call_menu/mini_call_menu.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/mini_call_menu/mini_call_menu_connected.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/mini_call_menu/mini_call_menu_connected.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/mini_call_menu/mini_call_menu_incoming.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/mini_call_menu/mini_call_menu_incoming.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/particle_player/particle_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/particle_player/particle_player.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/particle_player/particle_system_confetti.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/particle_player/particle_system_confetti.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/particle_player/particle_system_eyes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/particle_player/particle_system_eyes.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/particle_player/particle_system_hug.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/particle_player/particle_system_hug.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/particle_player/particle_system_snow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/particle_player/particle_system_snow.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/particle_player/particle_system_space_invaders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/particle_player/particle_system_space_invaders.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/photo_albums/photo_album_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/photo_albums/photo_album_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/photo_albums/photos_upload_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/photo_albums/photos_upload_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/room_event_search/room_event_search_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/room_event_search/room_event_search_widget.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/room_members_list/room_members_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/room_members_list/room_members_list.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/room_quick_access_menu/room_quick_access_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/room_quick_access_menu/room_quick_access_menu.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/room_side_panel/room_side_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/room_side_panel/room_side_panel.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/side_navigation_bar/side_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/side_navigation_bar/side_navigation_bar.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/sidebar_call_icon/sidebar_call_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/sidebar_call_icon/sidebar_call_icon.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/sidebar_call_icon/sidebar_call_icon_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/sidebar_call_icon/sidebar_call_icon_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/sidebar_call_icon/sidebar_calls_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/sidebar_call_icon/sidebar_calls_list.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/space_summary/space_summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/space_summary/space_summary.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/space_summary/space_summary_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/space_summary/space_summary_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/user_profile/user_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/user_profile/user_profile.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/user_profile/user_profile_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/user_profile/user_profile_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/organisms/voip_room_view/voip_room_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/organisms/voip_room_view/voip_room_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/add_space_or_room/add_space_or_room.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/add_space_or_room/add_space_or_room.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/add_space_or_room/add_space_or_room_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/add_space_or_room/add_space_or_room_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/bubble/bubble_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/bubble/bubble_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/developer/benchmarks/benchmark_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/developer/benchmarks/benchmark_utils.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/developer/benchmarks/timeline_viewer_benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/developer/benchmarks/timeline_viewer_benchmark.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/fatal_error/fatal_error_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/fatal_error/fatal_error_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/login/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/login/login_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/login/login_page_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/login/login_page_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/main/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/main/main_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/main/main_page_view_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/main/main_page_view_desktop.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/main/main_page_view_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/main/main_page_view_mobile.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/main/room_primary_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/main/room_primary_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/matrix/authentication/matrix_uia_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/matrix/authentication/matrix_uia_request.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/matrix/authentication/matrix_uia_request_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/matrix/authentication/matrix_uia_request_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/matrix/verification/matrix_verification_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/matrix/verification/matrix_verification_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/matrix/verification/matrix_verification_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/matrix/verification/matrix_verification_view.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/app_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/app_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/about/settings_category_about.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/about/settings_category_about.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/account/security/security_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/account/security/security_tab.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/app/advanced_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/app/advanced_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/app/appearance_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/app/appearance_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/app/experiments_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/app/experiments_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/app/general_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/app/general_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/app/settings_category_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/app/settings_category_app.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/app/window_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/app/window_settings.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/developer/log_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/developer/log_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/room/settings_category_room.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/room/settings_category_room.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/categories/space/settings_category_space.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/categories/space/settings_category_space.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/desktop_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/desktop_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/mobile_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/mobile_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/room_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/room_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/settings_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/settings_button.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/settings_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/settings_category.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/settings_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/settings_tab.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/settings/space_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/settings/space_settings_page.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/setup/menus/unified_push_setup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/setup/menus/unified_push_setup.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/setup/setup_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/setup/setup_menu.dart -------------------------------------------------------------------------------- /commet/lib/ui/pages/setup/setup_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/ui/pages/setup/setup_page.dart -------------------------------------------------------------------------------- /commet/lib/utils/android_intent_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/android_intent_helper.dart -------------------------------------------------------------------------------- /commet/lib/utils/animation/ring_shaker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/animation/ring_shaker.dart -------------------------------------------------------------------------------- /commet/lib/utils/animation/ripple.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/animation/ripple.dart -------------------------------------------------------------------------------- /commet/lib/utils/autofill_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/autofill_utils.dart -------------------------------------------------------------------------------- /commet/lib/utils/background_tasks/background_task_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/background_tasks/background_task_manager.dart -------------------------------------------------------------------------------- /commet/lib/utils/background_tasks/mock_tasks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/background_tasks/mock_tasks.dart -------------------------------------------------------------------------------- /commet/lib/utils/common_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/common_animation.dart -------------------------------------------------------------------------------- /commet/lib/utils/common_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/common_strings.dart -------------------------------------------------------------------------------- /commet/lib/utils/custom_uri.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/custom_uri.dart -------------------------------------------------------------------------------- /commet/lib/utils/database/database_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/database/database_server.dart -------------------------------------------------------------------------------- /commet/lib/utils/database/database_server_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/database/database_server_io.dart -------------------------------------------------------------------------------- /commet/lib/utils/database/database_server_stub.dart: -------------------------------------------------------------------------------- 1 | Future? initDatabaseServerImpl() => null; 2 | -------------------------------------------------------------------------------- /commet/lib/utils/database/multiple_database_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/database/multiple_database_server.dart -------------------------------------------------------------------------------- /commet/lib/utils/debounce.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/debounce.dart -------------------------------------------------------------------------------- /commet/lib/utils/download_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/download_utils.dart -------------------------------------------------------------------------------- /commet/lib/utils/emoji/emoji_matcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/emoji/emoji_matcher.dart -------------------------------------------------------------------------------- /commet/lib/utils/emoji/unicode_emoji.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/emoji/unicode_emoji.dart -------------------------------------------------------------------------------- /commet/lib/utils/emoji/unicode_emoji_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/emoji/unicode_emoji_data.dart -------------------------------------------------------------------------------- /commet/lib/utils/event_bus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/event_bus.dart -------------------------------------------------------------------------------- /commet/lib/utils/file_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/file_utils.dart -------------------------------------------------------------------------------- /commet/lib/utils/first_time_setup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/first_time_setup.dart -------------------------------------------------------------------------------- /commet/lib/utils/image/lod_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/image/lod_image.dart -------------------------------------------------------------------------------- /commet/lib/utils/image_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/image_utils.dart -------------------------------------------------------------------------------- /commet/lib/utils/link_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/link_utils.dart -------------------------------------------------------------------------------- /commet/lib/utils/list_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/list_extension.dart -------------------------------------------------------------------------------- /commet/lib/utils/mime.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/mime.dart -------------------------------------------------------------------------------- /commet/lib/utils/notifying_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/notifying_list.dart -------------------------------------------------------------------------------- /commet/lib/utils/rng.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/rng.dart -------------------------------------------------------------------------------- /commet/lib/utils/scaled_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/scaled_app.dart -------------------------------------------------------------------------------- /commet/lib/utils/shortcuts_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/shortcuts_manager.dart -------------------------------------------------------------------------------- /commet/lib/utils/stored_stream_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/stored_stream_controller.dart -------------------------------------------------------------------------------- /commet/lib/utils/task_scheduler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/task_scheduler.dart -------------------------------------------------------------------------------- /commet/lib/utils/text_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/text_utils.dart -------------------------------------------------------------------------------- /commet/lib/utils/window_management.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/lib/utils/window_management.dart -------------------------------------------------------------------------------- /commet/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /commet/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/CMakeLists.txt -------------------------------------------------------------------------------- /commet/linux/debian/DEBIAN/control-ubuntu-22.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/DEBIAN/control-ubuntu-22.04 -------------------------------------------------------------------------------- /commet/linux/debian/DEBIAN/control-ubuntu-24.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/DEBIAN/control-ubuntu-24.04 -------------------------------------------------------------------------------- /commet/linux/debian/usr/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commet/linux/debian/usr/share/applications/chat.commet.commetapp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/usr/share/applications/chat.commet.commetapp.desktop -------------------------------------------------------------------------------- /commet/linux/debian/usr/share/icons/hicolor/128x128/apps/commet-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/usr/share/icons/hicolor/128x128/apps/commet-desktop.png -------------------------------------------------------------------------------- /commet/linux/debian/usr/share/icons/hicolor/16x16/apps/commet-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/usr/share/icons/hicolor/16x16/apps/commet-desktop.png -------------------------------------------------------------------------------- /commet/linux/debian/usr/share/icons/hicolor/256x256/apps/commet-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/usr/share/icons/hicolor/256x256/apps/commet-desktop.png -------------------------------------------------------------------------------- /commet/linux/debian/usr/share/icons/hicolor/32x32/apps/commet-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/usr/share/icons/hicolor/32x32/apps/commet-desktop.png -------------------------------------------------------------------------------- /commet/linux/debian/usr/share/icons/hicolor/512x512/apps/commet-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/usr/share/icons/hicolor/512x512/apps/commet-desktop.png -------------------------------------------------------------------------------- /commet/linux/debian/usr/share/icons/hicolor/64x64/apps/commet-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/debian/usr/share/icons/hicolor/64x64/apps/commet-desktop.png -------------------------------------------------------------------------------- /commet/linux/flatpak/chat.commet.commetapp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flatpak/chat.commet.commetapp.desktop -------------------------------------------------------------------------------- /commet/linux/flatpak/chat.commet.commetapp.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flatpak/chat.commet.commetapp.metainfo.xml -------------------------------------------------------------------------------- /commet/linux/flatpak/chat.commet.commetapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flatpak/chat.commet.commetapp.yaml -------------------------------------------------------------------------------- /commet/linux/flatpak/flathub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flatpak/flathub.json -------------------------------------------------------------------------------- /commet/linux/flatpak/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flatpak/icon.png -------------------------------------------------------------------------------- /commet/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /commet/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /commet/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /commet/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /commet/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/main.cc -------------------------------------------------------------------------------- /commet/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/my_application.cc -------------------------------------------------------------------------------- /commet/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/linux/my_application.h -------------------------------------------------------------------------------- /commet/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/.gitignore -------------------------------------------------------------------------------- /commet/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /commet/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /commet/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /commet/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /commet/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /commet/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /commet/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /commet/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /commet/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /commet/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /commet/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /commet/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /commet/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /commet/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /commet/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Info.plist -------------------------------------------------------------------------------- /commet/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /commet/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /commet/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/pubspec.lock -------------------------------------------------------------------------------- /commet/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/pubspec.yaml -------------------------------------------------------------------------------- /commet/scripts/apply_google_services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/apply_google_services.patch -------------------------------------------------------------------------------- /commet/scripts/build_release.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/build_release.dart -------------------------------------------------------------------------------- /commet/scripts/codegen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/codegen.dart -------------------------------------------------------------------------------- /commet/scripts/extract_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/extract_strings.dart -------------------------------------------------------------------------------- /commet/scripts/generate-from-arb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/generate-from-arb.sh -------------------------------------------------------------------------------- /commet/scripts/integration-prepare-homeserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/integration-prepare-homeserver.sh -------------------------------------------------------------------------------- /commet/scripts/integration-server-synapse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/integration-server-synapse.sh -------------------------------------------------------------------------------- /commet/scripts/integration-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/integration-test.sh -------------------------------------------------------------------------------- /commet/scripts/prepare-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/prepare-web.sh -------------------------------------------------------------------------------- /commet/scripts/run_widgetbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/run_widgetbook.sh -------------------------------------------------------------------------------- /commet/scripts/setup-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/setup-env.sh -------------------------------------------------------------------------------- /commet/scripts/setup_android_release.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/setup_android_release.dart -------------------------------------------------------------------------------- /commet/scripts/unit-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/scripts/unit-test.sh -------------------------------------------------------------------------------- /commet/test_driver/benchmark_driver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/test_driver/benchmark_driver.dart -------------------------------------------------------------------------------- /commet/unit_test/notifying_list_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/unit_test/notifying_list_test.dart -------------------------------------------------------------------------------- /commet/unit_test/password_validator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/unit_test/password_validator_test.dart -------------------------------------------------------------------------------- /commet/web/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/auth.html -------------------------------------------------------------------------------- /commet/web/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/favicon-16x16.png -------------------------------------------------------------------------------- /commet/web/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/favicon-32x32.png -------------------------------------------------------------------------------- /commet/web/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/favicon-96x96.png -------------------------------------------------------------------------------- /commet/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/icons/Icon-192.png -------------------------------------------------------------------------------- /commet/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/icons/Icon-512.png -------------------------------------------------------------------------------- /commet/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /commet/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /commet/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/index.html -------------------------------------------------------------------------------- /commet/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/manifest.json -------------------------------------------------------------------------------- /commet/web/splash/img/dark-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/splash/img/dark-1x.png -------------------------------------------------------------------------------- /commet/web/splash/img/dark-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/splash/img/dark-2x.png -------------------------------------------------------------------------------- /commet/web/splash/img/dark-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/splash/img/dark-3x.png -------------------------------------------------------------------------------- /commet/web/splash/img/dark-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/splash/img/dark-4x.png -------------------------------------------------------------------------------- /commet/web/splash/img/light-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/splash/img/light-1x.png -------------------------------------------------------------------------------- /commet/web/splash/img/light-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/splash/img/light-2x.png -------------------------------------------------------------------------------- /commet/web/splash/img/light-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/splash/img/light-3x.png -------------------------------------------------------------------------------- /commet/web/splash/img/light-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/splash/img/light-4x.png -------------------------------------------------------------------------------- /commet/web/static/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/web/static/_headers -------------------------------------------------------------------------------- /commet/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/.gitignore -------------------------------------------------------------------------------- /commet/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/CMakeLists.txt -------------------------------------------------------------------------------- /commet/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /commet/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /commet/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /commet/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /commet/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /commet/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/Runner.rc -------------------------------------------------------------------------------- /commet/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /commet/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /commet/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/main.cpp -------------------------------------------------------------------------------- /commet/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/resource.h -------------------------------------------------------------------------------- /commet/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /commet/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /commet/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/utils.cpp -------------------------------------------------------------------------------- /commet/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/utils.h -------------------------------------------------------------------------------- /commet/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /commet/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/commet/windows/runner/win32_window.h -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/flake.nix -------------------------------------------------------------------------------- /tiamat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/.gitignore -------------------------------------------------------------------------------- /tiamat/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/.metadata -------------------------------------------------------------------------------- /tiamat/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/.vscode/launch.json -------------------------------------------------------------------------------- /tiamat/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/analysis_options.yaml -------------------------------------------------------------------------------- /tiamat/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/.gitignore -------------------------------------------------------------------------------- /tiamat/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/build.gradle -------------------------------------------------------------------------------- /tiamat/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /tiamat/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tiamat/android/app/src/main/kotlin/com/example/tiamat/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/kotlin/com/example/tiamat/MainActivity.kt -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /tiamat/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /tiamat/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /tiamat/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/build.gradle -------------------------------------------------------------------------------- /tiamat/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/gradle.properties -------------------------------------------------------------------------------- /tiamat/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /tiamat/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/android/settings.gradle -------------------------------------------------------------------------------- /tiamat/assets/font/code/RobotoMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/code/RobotoMono.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/emoji-font/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/emoji-font/LICENSE -------------------------------------------------------------------------------- /tiamat/assets/font/emoji-font/NotoColorEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/emoji-font/NotoColorEmoji.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/LICENSE.txt -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /tiamat/assets/font/roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/font/roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /tiamat/assets/images/placeholder/generic/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/images/placeholder/generic/License.txt -------------------------------------------------------------------------------- /tiamat/assets/images/placeholder/generic/checker_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/images/placeholder/generic/checker_dark.png -------------------------------------------------------------------------------- /tiamat/assets/images/placeholder/generic/checker_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/images/placeholder/generic/checker_green.png -------------------------------------------------------------------------------- /tiamat/assets/images/placeholder/generic/checker_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/images/placeholder/generic/checker_orange.png -------------------------------------------------------------------------------- /tiamat/assets/images/placeholder/generic/checker_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/images/placeholder/generic/checker_purple.png -------------------------------------------------------------------------------- /tiamat/assets/images/placeholder/generic/checker_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/images/placeholder/generic/checker_red.png -------------------------------------------------------------------------------- /tiamat/assets/shader/texture_coordinate.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/assets/shader/texture_coordinate.frag -------------------------------------------------------------------------------- /tiamat/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/.gitignore -------------------------------------------------------------------------------- /tiamat/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /tiamat/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /tiamat/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /tiamat/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tiamat/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tiamat/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /tiamat/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tiamat/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tiamat/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /tiamat/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /tiamat/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /tiamat/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tiamat/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tiamat/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/ios/Runner/Info.plist -------------------------------------------------------------------------------- /tiamat/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /tiamat/lib/atoms/avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/avatar.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/button.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/checkbox.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/circle_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/circle_button.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/context_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/context_menu.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/dropdown_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/dropdown_selector.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/dropdown_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/dropdown_text_field.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/foundation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/foundation.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/glass_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/glass_tile.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/icon_button.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/icon_toggle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/icon_toggle.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/image_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/image_button.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/panel.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/popup_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/popup_dialog.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/radio_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/radio_button.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/seperator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/seperator.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/shader_background.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/shader_background.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/slider.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/switch.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/text.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/text_button.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/text_button_expander.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/text_button_expander.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/text_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/text_input.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/texture_coordinate_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/texture_coordinate_painter.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/tile.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/toggleable_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/toggleable_list.dart -------------------------------------------------------------------------------- /tiamat/lib/atoms/tooltip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/atoms/tooltip.dart -------------------------------------------------------------------------------- /tiamat/lib/config/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/config.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_amoled.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_amoled.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_base.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_changer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_changer.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_common.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_dark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_dark.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_extensions.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_json_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_json_converter.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_light.dart -------------------------------------------------------------------------------- /tiamat/lib/config/style/theme_you.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/config/style/theme_you.dart -------------------------------------------------------------------------------- /tiamat/lib/tiamat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/tiamat.dart -------------------------------------------------------------------------------- /tiamat/lib/widgetbook.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/lib/widgetbook.dart -------------------------------------------------------------------------------- /tiamat/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /tiamat/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/linux/CMakeLists.txt -------------------------------------------------------------------------------- /tiamat/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /tiamat/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /tiamat/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /tiamat/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /tiamat/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/linux/main.cc -------------------------------------------------------------------------------- /tiamat/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/linux/my_application.cc -------------------------------------------------------------------------------- /tiamat/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/linux/my_application.h -------------------------------------------------------------------------------- /tiamat/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/.gitignore -------------------------------------------------------------------------------- /tiamat/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /tiamat/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /tiamat/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /tiamat/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tiamat/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /tiamat/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tiamat/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tiamat/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /tiamat/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /tiamat/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /tiamat/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /tiamat/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /tiamat/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /tiamat/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /tiamat/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Info.plist -------------------------------------------------------------------------------- /tiamat/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /tiamat/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /tiamat/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/pubspec.lock -------------------------------------------------------------------------------- /tiamat/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/pubspec.yaml -------------------------------------------------------------------------------- /tiamat/scripts/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/scripts/codegen.sh -------------------------------------------------------------------------------- /tiamat/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/web/favicon.png -------------------------------------------------------------------------------- /tiamat/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/web/icons/Icon-192.png -------------------------------------------------------------------------------- /tiamat/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/web/icons/Icon-512.png -------------------------------------------------------------------------------- /tiamat/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /tiamat/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /tiamat/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/web/index.html -------------------------------------------------------------------------------- /tiamat/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/web/manifest.json -------------------------------------------------------------------------------- /tiamat/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/.gitignore -------------------------------------------------------------------------------- /tiamat/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/CMakeLists.txt -------------------------------------------------------------------------------- /tiamat/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /tiamat/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /tiamat/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /tiamat/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /tiamat/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /tiamat/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/Runner.rc -------------------------------------------------------------------------------- /tiamat/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /tiamat/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /tiamat/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/main.cpp -------------------------------------------------------------------------------- /tiamat/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/resource.h -------------------------------------------------------------------------------- /tiamat/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /tiamat/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /tiamat/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/utils.cpp -------------------------------------------------------------------------------- /tiamat/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/utils.h -------------------------------------------------------------------------------- /tiamat/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /tiamat/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commetchat/commet/HEAD/tiamat/windows/runner/win32_window.h --------------------------------------------------------------------------------