├── .commitlintrc.json ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── pages.yml │ ├── release.yml │ └── webpack.yml ├── .gitignore ├── .husky └── commit-msg ├── .lintstagedrc.json ├── .stylelintrc.json ├── .tool-versions ├── .vscode ├── extensions.json ├── settings.json └── soapbox.code-snippets ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── application.ts ├── fonts │ ├── OpenDyslexic │ │ ├── LICENSE │ │ ├── OpenDyslexic-Bold-Italic.woff2 │ │ ├── OpenDyslexic-Bold.woff2 │ │ ├── OpenDyslexic-Italic.woff2 │ │ └── OpenDyslexic-Regular.woff2 │ └── soapbox │ │ ├── soapbox.eot │ │ ├── soapbox.svg │ │ ├── soapbox.ttf │ │ └── soapbox.woff ├── icons │ ├── COPYING.md │ ├── fediverse.svg │ ├── mangane-dark-full-horizontal.svg │ ├── mangane-dark-full.svg │ ├── mangane-dark.svg │ ├── mangane-full-horizontal.svg │ ├── mangane-full.svg │ ├── mangane.svg │ └── verified.svg ├── images │ ├── audio-placeholder.png │ ├── avatar-missing.png │ ├── avatar-missing.svg │ ├── halloween │ │ ├── clouds.png │ │ ├── halloween-emblem.svg │ │ ├── spider.svg │ │ ├── spiderweb.svg │ │ ├── starfield.png │ │ └── twinkle.svg │ ├── header-missing.png │ ├── mangane-logo.svg │ ├── reticle.png │ ├── sprite-post-functions.png │ ├── video-placeholder.png │ ├── void.png │ └── web-push │ │ ├── web-push-icon_expand.png │ │ ├── web-push-icon_favourite.png │ │ └── web-push-icon_reblog.png ├── index.ejs ├── instance │ ├── about.example │ │ ├── dmca.html │ │ ├── index.html │ │ ├── privacy.html │ │ └── tos.html │ └── soapbox.example.json ├── manifest.json ├── soapbox │ ├── __fixtures__ │ │ ├── account-moved.json │ │ ├── account-with-emojis.json │ │ ├── accounts.json │ │ ├── accounts_counter_follow.json │ │ ├── accounts_counter_initial.json │ │ ├── accounts_counter_unfollow.json │ │ ├── admin_api_frontend_config.json │ │ ├── announcements.json │ │ ├── app.json │ │ ├── blocks.json │ │ ├── config_db.json │ │ ├── fedibird-account.json │ │ ├── fedibird-instance.json │ │ ├── fedibird-quote-of-quote-post.json │ │ ├── fedibird-quote-post.json │ │ ├── friendica-instance.json │ │ ├── friendica-status.json │ │ ├── gotosocial-account.json │ │ ├── gotosocial-instance.json │ │ ├── gotosocial-status.json │ │ ├── intlMessages.json │ │ ├── lain.json │ │ ├── markers.json │ │ ├── mastodon-3.0.0-instance.json │ │ ├── mastodon-account.json │ │ ├── mastodon-instance-rc.json │ │ ├── mastodon-instance.json │ │ ├── mastodon-reply-to-self.json │ │ ├── mastodon_initial_state.json │ │ ├── mitra-context.json │ │ ├── mitra-instance.json │ │ ├── mitra-status-with-attachments.json │ │ ├── mk.json │ │ ├── notification-favourite.json │ │ ├── notification-follow.json │ │ ├── notification-follow_request.json │ │ ├── notification-mention.json │ │ ├── notification-move.json │ │ ├── notification-pleroma-chat_mention.json │ │ ├── notification-pleroma-emoji_reaction.json │ │ ├── notification-poll.json │ │ ├── notification-reblog.json │ │ ├── notification.json │ │ ├── notifications.json │ │ ├── patron-instance.json │ │ ├── patron-user.json │ │ ├── pixelfed-instance.json │ │ ├── pleroma-2.2.2-account.json │ │ ├── pleroma-account.json │ │ ├── pleroma-admin-config.json │ │ ├── pleroma-instance.json │ │ ├── pleroma-notification-move.json │ │ ├── pleroma-quote-of-quote-post.json │ │ ├── pleroma-quote-post.json │ │ ├── pleroma-status-deleted.json │ │ ├── pleroma-status-reply-with-mentions.json │ │ ├── pleroma-status-vertical-video-without-metadata.json │ │ ├── pleroma-status-with-attachments.json │ │ ├── pleroma-status-with-poll-with-emojis.json │ │ ├── pleroma-status-with-poll.json │ │ ├── pleroma_initial_results.json │ │ ├── realDonaldTrump.json │ │ ├── relationship.json │ │ ├── rules.json │ │ ├── soapbox.json │ │ ├── spinster-soapbox.json │ │ ├── status-custom-emoji.json │ │ ├── status-cw.json │ │ ├── status-unordered-mentions.json │ │ ├── status-with-card.json │ │ ├── status-with-poll.json │ │ ├── truthsocial-account.json │ │ ├── truthsocial-status-with-external-video.json │ │ └── user.json │ ├── __mocks__ │ │ └── api.ts │ ├── __tests__ │ │ └── compare_id.test.ts │ ├── actions │ │ ├── __tests__ │ │ │ ├── about.test.ts │ │ │ ├── account-notes.test.ts │ │ │ ├── accounts.test.ts │ │ │ ├── alerts.test.ts │ │ │ ├── announcements.test.ts │ │ │ ├── blocks.test.ts │ │ │ ├── compose.test.ts │ │ │ ├── me.test.ts │ │ │ ├── notifications.test.ts │ │ │ ├── onboarding.test.ts │ │ │ ├── preload.test.ts │ │ │ ├── rules.test.ts │ │ │ ├── soapbox.test.ts │ │ │ ├── statuses.test.ts │ │ │ └── suggestions.test.ts │ │ ├── about.ts │ │ ├── account-notes.ts │ │ ├── accounts.ts │ │ ├── admin.ts │ │ ├── alerts.ts │ │ ├── aliases.ts │ │ ├── announcements.ts │ │ ├── apps.ts │ │ ├── auth.ts │ │ ├── backups.ts │ │ ├── blocks.ts │ │ ├── bookmarks.ts │ │ ├── bundles.ts │ │ ├── chats.ts │ │ ├── compose.ts │ │ ├── consumer-auth.ts │ │ ├── conversations.ts │ │ ├── custom_emojis.ts │ │ ├── directory.ts │ │ ├── domain_blocks.ts │ │ ├── dropdown_menu.ts │ │ ├── email_list.ts │ │ ├── emoji_reacts.ts │ │ ├── emojis.ts │ │ ├── export_data.ts │ │ ├── external_auth.ts │ │ ├── familiar_followers.ts │ │ ├── favourites.ts │ │ ├── filters.ts │ │ ├── group_editor.ts │ │ ├── groups.ts │ │ ├── history.ts │ │ ├── import_data.ts │ │ ├── importer │ │ │ └── index.ts │ │ ├── instance.ts │ │ ├── interactions.ts │ │ ├── lists.ts │ │ ├── markers.ts │ │ ├── me.ts │ │ ├── media.ts │ │ ├── mfa.ts │ │ ├── mobile.ts │ │ ├── modals.ts │ │ ├── moderation.tsx │ │ ├── mrf.ts │ │ ├── mutes.ts │ │ ├── notifications.ts │ │ ├── oauth.ts │ │ ├── onboarding.ts │ │ ├── patron.ts │ │ ├── pin_statuses.ts │ │ ├── polls.ts │ │ ├── preload.ts │ │ ├── profile_hover_card.ts │ │ ├── push_notifications │ │ │ ├── index.ts │ │ │ ├── registerer.ts │ │ │ └── setter.ts │ │ ├── push_subscriptions.ts │ │ ├── remote_timeline.ts │ │ ├── reports.ts │ │ ├── rules.ts │ │ ├── scheduled_statuses.ts │ │ ├── search.ts │ │ ├── security.ts │ │ ├── settings.ts │ │ ├── sidebar.ts │ │ ├── snackbar.ts │ │ ├── soapbox.ts │ │ ├── status-hover-card.ts │ │ ├── statuses.ts │ │ ├── streaming.ts │ │ ├── suggestions.ts │ │ ├── sw.ts │ │ ├── tags.ts │ │ ├── timelines.ts │ │ ├── trending_statuses.ts │ │ ├── trends.ts │ │ └── verification.ts │ ├── api.ts │ ├── base_polyfills.ts │ ├── build_config.js │ ├── compare_id.ts │ ├── components │ │ ├── __mocks__ │ │ │ └── react-inlinesvg.tsx │ │ ├── __tests__ │ │ │ ├── account.test.tsx │ │ │ ├── autosuggest_emoji.test.tsx │ │ │ ├── avatar.test.tsx │ │ │ ├── avatar_overlay.test.tsx │ │ │ ├── badge.test.tsx │ │ │ ├── display_name.test.tsx │ │ │ ├── quoted-status.test.tsx │ │ │ ├── scroll-top-button.test.tsx │ │ │ └── validation-checkmark.test.tsx │ │ ├── account.tsx │ │ ├── account_search.tsx │ │ ├── animated-number.tsx │ │ ├── announcements │ │ │ ├── announcement-content.tsx │ │ │ ├── announcement.tsx │ │ │ ├── announcements-panel.tsx │ │ │ ├── emoji.tsx │ │ │ ├── reaction.tsx │ │ │ └── reactions-bar.tsx │ │ ├── attachment-thumbs.tsx │ │ ├── autosuggest_account_input.tsx │ │ ├── autosuggest_emoji.tsx │ │ ├── autosuggest_input.tsx │ │ ├── autosuggest_textarea.tsx │ │ ├── avatar.tsx │ │ ├── avatar_overlay.tsx │ │ ├── badge.tsx │ │ ├── birthday-panel.tsx │ │ ├── birthday_input.tsx │ │ ├── blurhash.tsx │ │ ├── column_header.js │ │ ├── display-name.tsx │ │ ├── domain.tsx │ │ ├── dropdown_menu.tsx │ │ ├── emoji-button-wrapper.tsx │ │ ├── emoji_picker.tsx │ │ ├── error_boundary.tsx │ │ ├── extended_video_player.js │ │ ├── filter_bar.js │ │ ├── fork_awesome_icon.tsx │ │ ├── gdpr-banner.tsx │ │ ├── hashtag.tsx │ │ ├── helmet.tsx │ │ ├── hover-status-wrapper.tsx │ │ ├── hover_ref_wrapper.tsx │ │ ├── icon.tsx │ │ ├── icon_button.js │ │ ├── icon_with_counter.tsx │ │ ├── landing-gradient.tsx │ │ ├── list.tsx │ │ ├── load_gap.tsx │ │ ├── load_more.tsx │ │ ├── loading-screen.tsx │ │ ├── media_gallery.js │ │ ├── missing_indicator.tsx │ │ ├── modal_root.js │ │ ├── permalink.tsx │ │ ├── polls │ │ │ ├── __tests__ │ │ │ │ └── poll-footer.test.tsx │ │ │ ├── poll-footer.tsx │ │ │ ├── poll-option.tsx │ │ │ └── poll.tsx │ │ ├── profile-hover-card.tsx │ │ ├── progress_circle.tsx │ │ ├── pull-to-refresh.tsx │ │ ├── pullable.tsx │ │ ├── quoted-status.tsx │ │ ├── radio_button.tsx │ │ ├── relative_timestamp.js │ │ ├── scroll-top-button.tsx │ │ ├── scrollable_list.tsx │ │ ├── setting_text.js │ │ ├── sidebar-navigation-link.tsx │ │ ├── sidebar-navigation.tsx │ │ ├── sidebar_menu.tsx │ │ ├── site-logo.tsx │ │ ├── status-action-bar.tsx │ │ ├── status-action-button.tsx │ │ ├── status-hover-card.tsx │ │ ├── status-media.tsx │ │ ├── status-reply-mentions.tsx │ │ ├── status.tsx │ │ ├── status_content.tsx │ │ ├── status_list.tsx │ │ ├── sticky.tsx │ │ ├── still_image.tsx │ │ ├── sub_navigation.tsx │ │ ├── svg_icon.tsx │ │ ├── thumb_navigation-link.tsx │ │ ├── thumb_navigation.tsx │ │ ├── timeline_settings.tsx │ │ ├── tombstone.tsx │ │ ├── ui │ │ │ ├── avatar │ │ │ │ ├── __tests__ │ │ │ │ │ └── avatar.test.tsx │ │ │ │ └── avatar.tsx │ │ │ ├── banner │ │ │ │ └── banner.tsx │ │ │ ├── button │ │ │ │ ├── __tests__ │ │ │ │ │ └── button.test.tsx │ │ │ │ ├── button.tsx │ │ │ │ └── useButtonStyles.ts │ │ │ ├── card │ │ │ │ ├── __tests__ │ │ │ │ │ └── card.test.tsx │ │ │ │ └── card.tsx │ │ │ ├── checkbox │ │ │ │ └── checkbox.tsx │ │ │ ├── column │ │ │ │ ├── __tests__ │ │ │ │ │ └── column.test.tsx │ │ │ │ └── column.tsx │ │ │ ├── counter │ │ │ │ └── counter.tsx │ │ │ ├── datepicker │ │ │ │ ├── __tests__ │ │ │ │ │ └── datepicker.test.tsx │ │ │ │ └── datepicker.tsx │ │ │ ├── divider │ │ │ │ ├── __tests__ │ │ │ │ │ └── divider.test.tsx │ │ │ │ └── divider.tsx │ │ │ ├── emoji-react │ │ │ │ └── emoji-react.tsx │ │ │ ├── emoji-selector │ │ │ │ └── emoji-selector.tsx │ │ │ ├── emoji │ │ │ │ ├── __tests__ │ │ │ │ │ └── emoji.test.tsx │ │ │ │ └── emoji.tsx │ │ │ ├── file-input │ │ │ │ └── file-input.tsx │ │ │ ├── form-actions │ │ │ │ ├── __tests__ │ │ │ │ │ └── form-actions.test.tsx │ │ │ │ └── form-actions.tsx │ │ │ ├── form-group │ │ │ │ ├── __tests__ │ │ │ │ │ └── form-group.test.tsx │ │ │ │ └── form-group.tsx │ │ │ ├── form │ │ │ │ ├── __tests__ │ │ │ │ │ └── form.test.tsx │ │ │ │ └── form.tsx │ │ │ ├── hstack │ │ │ │ └── hstack.tsx │ │ │ ├── icon-button │ │ │ │ └── icon-button.tsx │ │ │ ├── icon │ │ │ │ ├── __tests__ │ │ │ │ │ └── svg-icon.test.tsx │ │ │ │ ├── icon.tsx │ │ │ │ └── svg-icon.tsx │ │ │ ├── index.ts │ │ │ ├── input │ │ │ │ └── input.tsx │ │ │ ├── layout │ │ │ │ └── layout.tsx │ │ │ ├── menu │ │ │ │ ├── menu.css │ │ │ │ └── menu.tsx │ │ │ ├── modal │ │ │ │ ├── __tests__ │ │ │ │ │ └── modal.test.tsx │ │ │ │ └── modal.tsx │ │ │ ├── phone-input │ │ │ │ ├── country-code-dropdown.tsx │ │ │ │ └── phone-input.tsx │ │ │ ├── progress-bar │ │ │ │ └── progress-bar.tsx │ │ │ ├── select │ │ │ │ └── select.tsx │ │ │ ├── spinner │ │ │ │ ├── spinner.css │ │ │ │ └── spinner.tsx │ │ │ ├── stack │ │ │ │ └── stack.tsx │ │ │ ├── streamfield │ │ │ │ └── streamfield.tsx │ │ │ ├── tabs │ │ │ │ ├── tabs.css │ │ │ │ └── tabs.tsx │ │ │ ├── text │ │ │ │ └── text.tsx │ │ │ ├── textarea │ │ │ │ └── textarea.tsx │ │ │ ├── toggle │ │ │ │ └── toggle.tsx │ │ │ ├── tooltip │ │ │ │ ├── tooltip.css │ │ │ │ └── tooltip.tsx │ │ │ └── widget │ │ │ │ └── widget.tsx │ │ ├── upload-progress.tsx │ │ ├── validation-checkmark.tsx │ │ └── verification_badge.tsx │ ├── containers │ │ ├── account_container.js │ │ ├── dropdown_menu_container.ts │ │ ├── emoji_picker_dropdown_container.js │ │ ├── soapbox.tsx │ │ └── status_container.tsx │ ├── custom.ts │ ├── extra_polyfills.ts │ ├── features │ │ ├── about │ │ │ └── index.tsx │ │ ├── account │ │ │ └── components │ │ │ │ └── header.tsx │ │ ├── account_gallery │ │ │ ├── components │ │ │ │ └── media_item.tsx │ │ │ └── index.tsx │ │ ├── account_timeline │ │ │ ├── components │ │ │ │ └── moved_note.tsx │ │ │ └── index.tsx │ │ ├── admin │ │ │ ├── components │ │ │ │ ├── admin-tabs.tsx │ │ │ │ ├── latest_accounts_panel.tsx │ │ │ │ ├── registration_mode_picker.tsx │ │ │ │ ├── report.tsx │ │ │ │ ├── report_status.tsx │ │ │ │ └── unapproved_account.tsx │ │ │ ├── index.tsx │ │ │ ├── moderation_log.tsx │ │ │ ├── tabs │ │ │ │ ├── awaiting-approval.tsx │ │ │ │ ├── dashboard.tsx │ │ │ │ └── reports.tsx │ │ │ └── user_index.js │ │ ├── aliases │ │ │ ├── components │ │ │ │ ├── account.tsx │ │ │ │ └── search.tsx │ │ │ └── index.tsx │ │ ├── audio │ │ │ ├── index.js │ │ │ └── visualizer.ts │ │ ├── auth_layout │ │ │ └── index.tsx │ │ ├── auth_login │ │ │ └── components │ │ │ │ ├── __tests__ │ │ │ │ ├── captcha.test.tsx │ │ │ │ ├── login_form.test.tsx │ │ │ │ ├── login_page.test.tsx │ │ │ │ ├── otp_auth_form.test.tsx │ │ │ │ └── password_reset_confirm.test.tsx │ │ │ │ ├── captcha.tsx │ │ │ │ ├── consumer-button.tsx │ │ │ │ ├── consumers-list.tsx │ │ │ │ ├── login_form.tsx │ │ │ │ ├── login_page.tsx │ │ │ │ ├── logout.tsx │ │ │ │ ├── otp_auth_form.tsx │ │ │ │ ├── password_reset.tsx │ │ │ │ ├── password_reset_confirm.tsx │ │ │ │ └── registration_form.tsx │ │ ├── auth_token_list │ │ │ └── index.tsx │ │ ├── authorize_interaction │ │ │ └── index.tsx │ │ ├── backups │ │ │ └── index.tsx │ │ ├── birthdays │ │ │ ├── account.tsx │ │ │ └── date_picker.ts │ │ ├── blocks │ │ │ └── index.tsx │ │ ├── bookmarks │ │ │ └── index.tsx │ │ ├── bubble_timeline │ │ │ └── index.tsx │ │ ├── chats │ │ │ ├── chat-room.tsx │ │ │ ├── components │ │ │ │ ├── audio-toggle.tsx │ │ │ │ ├── chat-box.tsx │ │ │ │ ├── chat-list.tsx │ │ │ │ ├── chat-message-list.tsx │ │ │ │ ├── chat-panes.tsx │ │ │ │ ├── chat-window.tsx │ │ │ │ └── chat.tsx │ │ │ └── index.tsx │ │ ├── community_timeline │ │ │ └── index.tsx │ │ ├── compose │ │ │ ├── components │ │ │ │ ├── __tests__ │ │ │ │ │ └── search.test.tsx │ │ │ │ ├── autosuggest_account.tsx │ │ │ │ ├── compose_form.js │ │ │ │ ├── compose_form_button.tsx │ │ │ │ ├── language_dropdown.tsx │ │ │ │ ├── markdown_button.tsx │ │ │ │ ├── poll_button.tsx │ │ │ │ ├── polls │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── duration-selector.test.tsx │ │ │ │ │ ├── duration-selector.tsx │ │ │ │ │ └── poll-form.tsx │ │ │ │ ├── privacy_dropdown.tsx │ │ │ │ ├── reply_indicator.tsx │ │ │ │ ├── reply_mentions.tsx │ │ │ │ ├── schedule_button.tsx │ │ │ │ ├── schedule_form.tsx │ │ │ │ ├── search.tsx │ │ │ │ ├── search_results.tsx │ │ │ │ ├── sensitive-button.tsx │ │ │ │ ├── spoiler_button.tsx │ │ │ │ ├── text_character_counter.tsx │ │ │ │ ├── upload-progress.tsx │ │ │ │ ├── upload.tsx │ │ │ │ ├── upload_button.tsx │ │ │ │ ├── upload_form.tsx │ │ │ │ ├── visual_character_counter.tsx │ │ │ │ └── warning.tsx │ │ │ ├── containers │ │ │ │ ├── compose_form_container.ts │ │ │ │ ├── language_dropdown_container.ts │ │ │ │ ├── markdown_button_container.js │ │ │ │ ├── poll_button_container.js │ │ │ │ ├── privacy_dropdown_container.js │ │ │ │ ├── quoted_status_container.tsx │ │ │ │ ├── reply_indicator_container.js │ │ │ │ ├── schedule_button_container.js │ │ │ │ ├── schedule_form_container.js │ │ │ │ ├── spoiler_button_container.js │ │ │ │ ├── upload_button_container.js │ │ │ │ ├── upload_container.js │ │ │ │ └── warning_container.js │ │ │ └── util │ │ │ │ ├── counter.ts │ │ │ │ └── url_regex.ts │ │ ├── conversations │ │ │ ├── components │ │ │ │ ├── conversation.tsx │ │ │ │ └── conversations_list.tsx │ │ │ └── index.tsx │ │ ├── crypto_donate │ │ │ ├── components │ │ │ │ ├── crypto_address.tsx │ │ │ │ ├── crypto_donate_panel.tsx │ │ │ │ ├── crypto_icon.tsx │ │ │ │ ├── detailed_crypto_address.tsx │ │ │ │ └── site_wallet.tsx │ │ │ ├── index.tsx │ │ │ └── utils │ │ │ │ ├── block_explorer.ts │ │ │ │ ├── block_explorers.json │ │ │ │ ├── coin_db.ts │ │ │ │ └── manifest_map.ts │ │ ├── delete_account │ │ │ └── index.tsx │ │ ├── developers │ │ │ ├── apps │ │ │ │ └── create.tsx │ │ │ ├── developers-challenge.tsx │ │ │ ├── developers-menu.tsx │ │ │ ├── index.tsx │ │ │ └── settings-store.tsx │ │ ├── direct_timeline │ │ │ └── index.tsx │ │ ├── directory │ │ │ ├── components │ │ │ │ └── account_card.tsx │ │ │ └── index.tsx │ │ ├── domain_blocks │ │ │ └── index.tsx │ │ ├── edit_email │ │ │ └── index.tsx │ │ ├── edit_password │ │ │ └── index.tsx │ │ ├── edit_profile │ │ │ ├── components │ │ │ │ └── profile-preview.tsx │ │ │ └── index.tsx │ │ ├── email_confirmation │ │ │ └── index.tsx │ │ ├── emoji │ │ │ ├── __tests__ │ │ │ │ ├── emoji.test.ts │ │ │ │ └── emoji_index.test.ts │ │ │ ├── emoji.js │ │ │ ├── emoji_compressed.js │ │ │ ├── emoji_map.json │ │ │ ├── emoji_mart_data_light.ts │ │ │ ├── emoji_mart_search_light.js │ │ │ ├── emoji_unicode_mapping_light.js │ │ │ ├── emoji_utils.js │ │ │ ├── unicode_to_filename.js │ │ │ └── unicode_to_unified_name.js │ │ ├── export_data │ │ │ ├── components │ │ │ │ └── csv_exporter.tsx │ │ │ └── index.tsx │ │ ├── external_login │ │ │ ├── components │ │ │ │ └── external-login-form.tsx │ │ │ └── index.tsx │ │ ├── favourited_statuses │ │ │ └── index.js │ │ ├── federation_restrictions │ │ │ ├── components │ │ │ │ ├── instance_restrictions.js │ │ │ │ └── restricted_instance.tsx │ │ │ └── index.tsx │ │ ├── feed-filtering │ │ │ ├── __tests__ │ │ │ │ └── feed-carousel.test.tsx │ │ │ └── feed-carousel.tsx │ │ ├── feed-suggestions │ │ │ └── feed-suggestions.tsx │ │ ├── filters │ │ │ └── index.tsx │ │ ├── follow-recommendations │ │ │ └── index.tsx │ │ ├── follow_requests │ │ │ ├── components │ │ │ │ └── account_authorize.tsx │ │ │ └── index.tsx │ │ ├── followed_tags │ │ │ └── index.tsx │ │ ├── followers │ │ │ └── index.js │ │ ├── following │ │ │ └── index.js │ │ ├── forms │ │ │ └── index.tsx │ │ ├── generic_not_found │ │ │ └── index.tsx │ │ ├── groups │ │ │ ├── create │ │ │ │ └── index.js │ │ │ ├── edit │ │ │ │ └── index.js │ │ │ ├── index │ │ │ │ ├── card.js │ │ │ │ └── index.js │ │ │ ├── members │ │ │ │ └── index.js │ │ │ ├── removed_accounts │ │ │ │ └── index.js │ │ │ ├── sidebar_panel │ │ │ │ ├── index.js │ │ │ │ └── item.js │ │ │ └── timeline │ │ │ │ ├── components │ │ │ │ └── panel.js │ │ │ │ └── index.js │ │ ├── hashtag_timeline │ │ │ └── index.tsx │ │ ├── home_timeline │ │ │ ├── components │ │ │ │ └── column_settings.js │ │ │ ├── containers │ │ │ │ └── column_settings_container.js │ │ │ └── index.tsx │ │ ├── import_data │ │ │ ├── components │ │ │ │ └── csv_importer.tsx │ │ │ └── index.tsx │ │ ├── intentional_error │ │ │ └── index.tsx │ │ ├── landing_page │ │ │ ├── __tests__ │ │ │ │ └── landing_page.test.tsx │ │ │ └── index.tsx │ │ ├── list_adder │ │ │ ├── components │ │ │ │ ├── account.tsx │ │ │ │ └── list.tsx │ │ │ └── index.tsx │ │ ├── list_editor │ │ │ ├── components │ │ │ │ ├── account.tsx │ │ │ │ ├── edit_list_form.tsx │ │ │ │ └── search.tsx │ │ │ └── index.tsx │ │ ├── list_timeline │ │ │ └── index.tsx │ │ ├── lists │ │ │ ├── components │ │ │ │ └── new_list_form.tsx │ │ │ └── index.tsx │ │ ├── migration │ │ │ └── index.js │ │ ├── mobile │ │ │ └── index.js │ │ ├── mutes │ │ │ └── index.tsx │ │ ├── new_status │ │ │ └── index.tsx │ │ ├── notifications │ │ │ ├── components │ │ │ │ ├── __tests__ │ │ │ │ │ └── notification.test.tsx │ │ │ │ ├── clear_column_button.tsx │ │ │ │ ├── column_settings.js │ │ │ │ ├── filter_bar.tsx │ │ │ │ ├── follow_request.js │ │ │ │ ├── multi_setting_toggle.js │ │ │ │ ├── notification.tsx │ │ │ │ └── setting_toggle.tsx │ │ │ ├── containers │ │ │ │ ├── column_settings_container.js │ │ │ │ └── follow_request_container.js │ │ │ └── index.tsx │ │ ├── onboarding │ │ │ ├── onboarding-wizard.tsx │ │ │ └── steps │ │ │ │ ├── avatar-selection-step.tsx │ │ │ │ ├── bio-step.tsx │ │ │ │ ├── completed-step.tsx │ │ │ │ ├── cover-photo-selection-step.tsx │ │ │ │ ├── display-name-step.tsx │ │ │ │ ├── feeds.tsx │ │ │ │ ├── how-it-works.tsx │ │ │ │ ├── privacy.tsx │ │ │ │ ├── suggested-accounts-step.tsx │ │ │ │ └── welcome.tsx │ │ ├── pinned_statuses │ │ │ └── index.tsx │ │ ├── placeholder │ │ │ ├── components │ │ │ │ ├── placeholder_account.tsx │ │ │ │ ├── placeholder_avatar.tsx │ │ │ │ ├── placeholder_card.tsx │ │ │ │ ├── placeholder_chat.tsx │ │ │ │ ├── placeholder_display_name.tsx │ │ │ │ ├── placeholder_hashtag.tsx │ │ │ │ ├── placeholder_media_gallery.js │ │ │ │ ├── placeholder_notification.tsx │ │ │ │ ├── placeholder_status.tsx │ │ │ │ └── placeholder_status_content.tsx │ │ │ └── utils.js │ │ ├── preferences │ │ │ └── index.tsx │ │ ├── profile_fields │ │ │ └── index.tsx │ │ ├── public_layout │ │ │ ├── components │ │ │ │ ├── footer.tsx │ │ │ │ ├── header.tsx │ │ │ │ └── sonar.tsx │ │ │ └── index.tsx │ │ ├── public_timeline │ │ │ ├── components │ │ │ │ └── column_settings.js │ │ │ └── index.tsx │ │ ├── register_invite │ │ │ └── index.tsx │ │ ├── remote_timeline │ │ │ ├── components │ │ │ │ └── button-pin.tsx │ │ │ └── index.tsx │ │ ├── reply_mentions │ │ │ └── account.tsx │ │ ├── report │ │ │ └── components │ │ │ │ └── status_check_box.tsx │ │ ├── scheduled_statuses │ │ │ ├── builder.tsx │ │ │ ├── components │ │ │ │ ├── scheduled_status.tsx │ │ │ │ └── scheduled_status_action_bar.tsx │ │ │ └── index.tsx │ │ ├── search │ │ │ └── index.tsx │ │ ├── security │ │ │ ├── mfa │ │ │ │ ├── disable_otp_form.tsx │ │ │ │ ├── enable_otp_form.tsx │ │ │ │ └── otp_confirm_form.tsx │ │ │ └── mfa_form.tsx │ │ ├── server_info │ │ │ └── index.tsx │ │ ├── settings │ │ │ ├── index.tsx │ │ │ └── media_display.tsx │ │ ├── share │ │ │ └── index.tsx │ │ ├── soapbox_config │ │ │ ├── components │ │ │ │ ├── color-picker.tsx │ │ │ │ ├── color-with-picker.tsx │ │ │ │ ├── footer-link-input.tsx │ │ │ │ ├── icon-picker.tsx │ │ │ │ ├── promo-panel-input.tsx │ │ │ │ └── site-preview.tsx │ │ │ ├── forkawesome.json │ │ │ └── index.tsx │ │ ├── status │ │ │ ├── components │ │ │ │ ├── card.tsx │ │ │ │ ├── detailed-status.tsx │ │ │ │ ├── status-interaction-bar.tsx │ │ │ │ ├── thread-login-cta.tsx │ │ │ │ └── thread-status.tsx │ │ │ ├── containers │ │ │ │ └── quoted_status_container.tsx │ │ │ └── index.tsx │ │ ├── test_timeline │ │ │ └── index.tsx │ │ ├── ui │ │ │ ├── __tests__ │ │ │ │ └── index.test.tsx │ │ │ ├── components │ │ │ │ ├── __tests__ │ │ │ │ │ ├── compose-button.test.tsx │ │ │ │ │ ├── cta-banner.test.tsx │ │ │ │ │ ├── subscribe-button.test.tsx │ │ │ │ │ ├── trends-panel.test.tsx │ │ │ │ │ └── who-to-follow-panel.test.tsx │ │ │ │ ├── accordion.tsx │ │ │ │ ├── account_note_modal.tsx │ │ │ │ ├── action-button.tsx │ │ │ │ ├── actions_modal.tsx │ │ │ │ ├── background_shapes.tsx │ │ │ │ ├── better_column.js │ │ │ │ ├── birthdays_modal.tsx │ │ │ │ ├── boost_modal.tsx │ │ │ │ ├── bundle.tsx │ │ │ │ ├── bundle_column_error.tsx │ │ │ │ ├── bundle_modal_error.tsx │ │ │ │ ├── column.tsx │ │ │ │ ├── column_forbidden.tsx │ │ │ │ ├── column_header.tsx │ │ │ │ ├── column_loading.tsx │ │ │ │ ├── columns_area.tsx │ │ │ │ ├── compare_history_modal.tsx │ │ │ │ ├── component_modal.tsx │ │ │ │ ├── compose-button.tsx │ │ │ │ ├── compose_modal.tsx │ │ │ │ ├── confirmation_modal.tsx │ │ │ │ ├── crypto_donate_modal.tsx │ │ │ │ ├── cta-banner.tsx │ │ │ │ ├── edit_federation_modal.tsx │ │ │ │ ├── embed_modal.tsx │ │ │ │ ├── familiar_followers_modal.tsx │ │ │ │ ├── favourites_modal.tsx │ │ │ │ ├── focal_point_modal.js │ │ │ │ ├── funding_panel.tsx │ │ │ │ ├── hotkeys_modal.tsx │ │ │ │ ├── image_loader.js │ │ │ │ ├── instance_info_panel.tsx │ │ │ │ ├── instance_moderation_panel.tsx │ │ │ │ ├── instance_pin_panel.tsx │ │ │ │ ├── link_footer.tsx │ │ │ │ ├── media_modal.js │ │ │ │ ├── mentions_modal.tsx │ │ │ │ ├── missing_description_modal.tsx │ │ │ │ ├── modal_loading.tsx │ │ │ │ ├── modal_root.js │ │ │ │ ├── modals │ │ │ │ │ ├── landing-page-modal.tsx │ │ │ │ │ ├── report-modal │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── report-modal.test.tsx │ │ │ │ │ │ ├── report-modal.tsx │ │ │ │ │ │ └── steps │ │ │ │ │ │ │ ├── confirmation-step.tsx │ │ │ │ │ │ │ ├── other-actions-step.tsx │ │ │ │ │ │ │ └── reason-step.tsx │ │ │ │ │ └── verify-sms-modal.tsx │ │ │ │ ├── mute_modal.tsx │ │ │ │ ├── navbar.tsx │ │ │ │ ├── panels │ │ │ │ │ └── sign-up-panel.tsx │ │ │ │ ├── pending_status.tsx │ │ │ │ ├── pinned_accounts_panel.tsx │ │ │ │ ├── poll_preview.tsx │ │ │ │ ├── profile-dropdown.tsx │ │ │ │ ├── profile_familiar_followers.tsx │ │ │ │ ├── profile_fields_panel.tsx │ │ │ │ ├── profile_info_panel.tsx │ │ │ │ ├── profile_media_panel.tsx │ │ │ │ ├── profile_stats.tsx │ │ │ │ ├── promo_panel.tsx │ │ │ │ ├── reactions_modal.tsx │ │ │ │ ├── reblogs_modal.tsx │ │ │ │ ├── reply_mentions_modal.tsx │ │ │ │ ├── subscription-button.tsx │ │ │ │ ├── theme-selector.tsx │ │ │ │ ├── theme-toggle.tsx │ │ │ │ ├── timeline.tsx │ │ │ │ ├── trends-panel.tsx │ │ │ │ ├── unauthorized_modal.tsx │ │ │ │ ├── upload_area.tsx │ │ │ │ ├── user_panel.tsx │ │ │ │ ├── video_modal.tsx │ │ │ │ ├── who-to-follow-panel.tsx │ │ │ │ └── zoomable_image.js │ │ │ ├── containers │ │ │ │ ├── bundle_container.js │ │ │ │ ├── modal_container.js │ │ │ │ └── notifications_container.tsx │ │ │ ├── index.tsx │ │ │ └── util │ │ │ │ ├── async-components.ts │ │ │ │ ├── fullscreen.js │ │ │ │ ├── optional_motion.tsx │ │ │ │ ├── pending_status_builder.ts │ │ │ │ ├── react_router_helpers.tsx │ │ │ │ └── reduced_motion.tsx │ │ ├── verification │ │ │ ├── __tests__ │ │ │ │ ├── index.test.tsx │ │ │ │ └── registration.test.tsx │ │ │ ├── components │ │ │ │ └── password-indicator.tsx │ │ │ ├── email_passthru.tsx │ │ │ ├── index.tsx │ │ │ ├── registration.tsx │ │ │ ├── steps │ │ │ │ ├── __tests__ │ │ │ │ │ ├── age-verification.test.tsx │ │ │ │ │ ├── email-verification.test.tsx │ │ │ │ │ └── sms-verification.test.tsx │ │ │ │ ├── age-verification.tsx │ │ │ │ ├── email-verification.tsx │ │ │ │ └── sms-verification.tsx │ │ │ └── waitlist_page.tsx │ │ └── video │ │ │ └── index.js │ ├── globals.ts │ ├── hooks │ │ ├── __tests__ │ │ │ └── useDimensions.test.ts │ │ ├── index.ts │ │ ├── useAccount.ts │ │ ├── useApi.ts │ │ ├── useAppDispatch.ts │ │ ├── useAppSelector.ts │ │ ├── useDimensions.ts │ │ ├── useFeatures.ts │ │ ├── useLocale.ts │ │ ├── useLogo.ts │ │ ├── useOnScreen.ts │ │ ├── useOwnAccount.ts │ │ ├── useRefEventHandler.ts │ │ ├── useSettings.ts │ │ ├── useSoapboxConfig.ts │ │ ├── useSystemTheme.ts │ │ └── useTheme.ts │ ├── is_mobile.ts │ ├── load_polyfills.ts │ ├── locales │ │ ├── ar.json │ │ ├── ast.json │ │ ├── bg.json │ │ ├── bn.json │ │ ├── br.json │ │ ├── ca.json │ │ ├── co.json │ │ ├── cs.json │ │ ├── cy.json │ │ ├── da.json │ │ ├── de.json │ │ ├── defaultMessages.json │ │ ├── el.json │ │ ├── en-Shaw.json │ │ ├── en.json │ │ ├── eo.json │ │ ├── es-AR.json │ │ ├── es.json │ │ ├── et.json │ │ ├── eu.json │ │ ├── fa.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── ga.json │ │ ├── gl.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hr.json │ │ ├── hu.json │ │ ├── hy.json │ │ ├── id.json │ │ ├── io.json │ │ ├── is.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ka.json │ │ ├── kk.json │ │ ├── ko.json │ │ ├── locale-data │ │ │ ├── co.js │ │ │ └── oc.js │ │ ├── lt.json │ │ ├── lv.json │ │ ├── messages.ts │ │ ├── mk.json │ │ ├── ms.json │ │ ├── nl.json │ │ ├── nn.json │ │ ├── no.json │ │ ├── oc.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── pt.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sq.json │ │ ├── sr-Latn.json │ │ ├── sr.json │ │ ├── sv.json │ │ ├── ta.json │ │ ├── te.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── uk.json │ │ ├── whitelist_ar.json │ │ ├── whitelist_ast.json │ │ ├── whitelist_bg.json │ │ ├── whitelist_bn.json │ │ ├── whitelist_br.json │ │ ├── whitelist_ca.json │ │ ├── whitelist_co.json │ │ ├── whitelist_cs.json │ │ ├── whitelist_cy.json │ │ ├── whitelist_da.json │ │ ├── whitelist_de.json │ │ ├── whitelist_el.json │ │ ├── whitelist_en-Shaw.json │ │ ├── whitelist_en.json │ │ ├── whitelist_eo.json │ │ ├── whitelist_es-AR.json │ │ ├── whitelist_es.json │ │ ├── whitelist_et.json │ │ ├── whitelist_eu.json │ │ ├── whitelist_fa.json │ │ ├── whitelist_fi.json │ │ ├── whitelist_fr.json │ │ ├── whitelist_ga.json │ │ ├── whitelist_gl.json │ │ ├── whitelist_he.json │ │ ├── whitelist_hi.json │ │ ├── whitelist_hr.json │ │ ├── whitelist_hu.json │ │ ├── whitelist_hy.json │ │ ├── whitelist_id.json │ │ ├── whitelist_io.json │ │ ├── whitelist_is.json │ │ ├── whitelist_it.json │ │ ├── whitelist_ja.json │ │ ├── whitelist_ka.json │ │ ├── whitelist_kk.json │ │ ├── whitelist_ko.json │ │ ├── whitelist_lt.json │ │ ├── whitelist_lv.json │ │ ├── whitelist_mk.json │ │ ├── whitelist_ms.json │ │ ├── whitelist_nl.json │ │ ├── whitelist_nn.json │ │ ├── whitelist_no.json │ │ ├── whitelist_oc.json │ │ ├── whitelist_pl.json │ │ ├── whitelist_pt-BR.json │ │ ├── whitelist_pt.json │ │ ├── whitelist_ro.json │ │ ├── whitelist_ru.json │ │ ├── whitelist_sk.json │ │ ├── whitelist_sl.json │ │ ├── whitelist_sq.json │ │ ├── whitelist_sr-Latn.json │ │ ├── whitelist_sr.json │ │ ├── whitelist_sv.json │ │ ├── whitelist_ta.json │ │ ├── whitelist_te.json │ │ ├── whitelist_th.json │ │ ├── whitelist_tr.json │ │ ├── whitelist_uk.json │ │ ├── whitelist_zh-CN.json │ │ ├── whitelist_zh-HK.json │ │ ├── whitelist_zh-TW.json │ │ ├── zh-CN.json │ │ ├── zh-HK.json │ │ └── zh-TW.json │ ├── main.tsx │ ├── middleware │ │ ├── errors.ts │ │ └── sounds.ts │ ├── normalizers │ │ ├── __tests__ │ │ │ ├── account.test.ts │ │ │ ├── attachment.test.ts │ │ │ ├── card.test.ts │ │ │ ├── instance.test.ts │ │ │ ├── mention.test.ts │ │ │ ├── notification.test.ts │ │ │ ├── poll.test.ts │ │ │ └── status.test.ts │ │ ├── account.ts │ │ ├── admin_account.ts │ │ ├── admin_report.ts │ │ ├── announcement.ts │ │ ├── announcement_reaction.ts │ │ ├── attachment.ts │ │ ├── card.ts │ │ ├── chat.ts │ │ ├── chat_message.ts │ │ ├── emoji.ts │ │ ├── filter.ts │ │ ├── history.ts │ │ ├── index.ts │ │ ├── instance.ts │ │ ├── list.ts │ │ ├── mention.ts │ │ ├── notification.ts │ │ ├── poll.ts │ │ ├── relationship.ts │ │ ├── soapbox │ │ │ ├── __tests__ │ │ │ │ └── soapbox_config-test.ts │ │ │ └── soapbox_config.ts │ │ ├── status.ts │ │ ├── status_edit.ts │ │ └── tag.ts │ ├── pages │ │ ├── admin_page.tsx │ │ ├── default_page.tsx │ │ ├── empty_page.tsx │ │ ├── home_page.tsx │ │ ├── profile_page.tsx │ │ └── status_page.tsx │ ├── performance.ts │ ├── precheck.ts │ ├── queries │ │ ├── __tests__ │ │ │ ├── carousels.test.ts │ │ │ ├── suggestions.test.ts │ │ │ └── trends.test.ts │ │ ├── carousels.ts │ │ ├── client.ts │ │ └── trends.ts │ ├── react-notification │ │ ├── defaultPropTypes.js │ │ ├── index.js │ │ ├── notification.js │ │ ├── notificationStack.js │ │ └── stackedNotification.js │ ├── ready.ts │ ├── reducers │ │ ├── __tests__ │ │ │ ├── accounts.test.ts │ │ │ ├── accounts_counters.test.ts │ │ │ ├── admin.test.ts │ │ │ ├── alerts.test.ts │ │ │ ├── announcements.test.ts │ │ │ ├── auth.test.ts │ │ │ ├── compose.test.ts │ │ │ ├── contexts.test.ts │ │ │ ├── conversations.test.ts │ │ │ ├── custom_emojis.test.ts │ │ │ ├── domain_lists.test.ts │ │ │ ├── dropdown_menu.test.ts │ │ │ ├── filters.test.ts │ │ │ ├── group_editor.test.ts │ │ │ ├── group_lists.test.ts │ │ │ ├── group_relationships.test.ts │ │ │ ├── groups.test.ts │ │ │ ├── index.test.ts │ │ │ ├── instance.test.ts │ │ │ ├── list_adder.test.ts │ │ │ ├── list_editor-test.js │ │ │ ├── lists.test.ts │ │ │ ├── me.test.ts │ │ │ ├── meta.test.ts │ │ │ ├── modals.test.ts │ │ │ ├── mutes.test.ts │ │ │ ├── notifications-test.js │ │ │ ├── onboarding.test.ts │ │ │ ├── patron.test.ts │ │ │ ├── polls.test.ts │ │ │ ├── push_notifications.test.ts │ │ │ ├── relationships.test.ts │ │ │ ├── reports.test.ts │ │ │ ├── rules.test.ts │ │ │ ├── search-test.js │ │ │ ├── settings.test.ts │ │ │ ├── sidebar.test.ts │ │ │ ├── soapbox.test.ts │ │ │ ├── status-hover-card.test.tsx │ │ │ ├── status_lists.test.ts │ │ │ ├── statuses.test.ts │ │ │ ├── suggestions.test.ts │ │ │ ├── timelines.test.ts │ │ │ ├── trends.test.ts │ │ │ ├── user_lists.test.ts │ │ │ └── verification.test.ts │ │ ├── account_notes.ts │ │ ├── accounts.ts │ │ ├── accounts_counters.ts │ │ ├── accounts_meta.ts │ │ ├── admin.ts │ │ ├── admin_log.ts │ │ ├── alerts.ts │ │ ├── aliases.ts │ │ ├── announcements.ts │ │ ├── auth.js │ │ ├── backups.tsx │ │ ├── chat_message_lists.ts │ │ ├── chat_messages.ts │ │ ├── chats.ts │ │ ├── compose.ts │ │ ├── contexts.ts │ │ ├── conversations.ts │ │ ├── custom_emojis.ts │ │ ├── domain_lists.ts │ │ ├── dropdown_menu.ts │ │ ├── filters.ts │ │ ├── group_editor.js │ │ ├── group_lists.js │ │ ├── group_relationships.js │ │ ├── groups.js │ │ ├── history.ts │ │ ├── index.ts │ │ ├── instance.ts │ │ ├── list_adder.ts │ │ ├── list_editor.ts │ │ ├── lists.ts │ │ ├── me.ts │ │ ├── meta.ts │ │ ├── modals.ts │ │ ├── mutes.ts │ │ ├── notifications.js │ │ ├── onboarding.ts │ │ ├── patron.ts │ │ ├── pending_statuses.ts │ │ ├── polls.ts │ │ ├── profile_hover_card.ts │ │ ├── push_notifications.ts │ │ ├── relationships.ts │ │ ├── reports.ts │ │ ├── rules.ts │ │ ├── scheduled_statuses.ts │ │ ├── search.ts │ │ ├── security.ts │ │ ├── settings.ts │ │ ├── sidebar.ts │ │ ├── soapbox.js │ │ ├── status-hover-card.ts │ │ ├── status_lists.ts │ │ ├── statuses.ts │ │ ├── suggestions.ts │ │ ├── tags.ts │ │ ├── timelines.ts │ │ ├── trending_statuses.ts │ │ ├── trends.ts │ │ ├── user_lists.ts │ │ └── verification.ts │ ├── rtl.ts │ ├── selectors │ │ └── index.ts │ ├── service_worker │ │ ├── entry.ts │ │ ├── share_target.js │ │ ├── web_push_locales.js │ │ └── web_push_notifications.ts │ ├── settings.ts │ ├── storage │ │ └── kv_store.ts │ ├── store.ts │ ├── stream.ts │ ├── types │ │ └── entities.ts │ └── utils │ │ ├── __tests__ │ │ ├── accounts.test.ts │ │ ├── base64.test.ts │ │ ├── colors.test.ts │ │ ├── config_db.test.ts │ │ ├── emoji.test.ts │ │ ├── emoji_reacts.test.ts │ │ ├── features.test.ts │ │ ├── html.test.ts │ │ ├── numbers.test.tsx │ │ ├── status.test.ts │ │ ├── tailwind.test.ts │ │ └── timelines.test.ts │ │ ├── accounts.ts │ │ ├── auth.ts │ │ ├── base64.ts │ │ ├── code.js │ │ ├── colors.ts │ │ ├── config_db.ts │ │ ├── console.ts │ │ ├── emoji.ts │ │ ├── emoji_reacts.ts │ │ ├── errors.ts │ │ ├── favicon_service.ts │ │ ├── features.ts │ │ ├── greentext.ts │ │ ├── html.ts │ │ ├── media.ts │ │ ├── media_aspect_ratio.ts │ │ ├── normalizers.ts │ │ ├── notification.ts │ │ ├── numbers.tsx │ │ ├── phone.ts │ │ ├── quirks.ts │ │ ├── redirect.ts │ │ ├── resize_image.ts │ │ ├── rich_content.ts │ │ ├── state.ts │ │ ├── static.ts │ │ ├── status.ts │ │ ├── strings.ts │ │ ├── tailwind.ts │ │ ├── theme.ts │ │ ├── timelines.ts │ │ └── tiny_post_html_processor.ts ├── sounds │ ├── boop.mp3 │ ├── boop.ogg │ ├── chat.mp3 │ └── chat.oga └── styles │ ├── _mixins.scss │ ├── about.scss │ ├── accessibility.scss │ ├── accounts.scss │ ├── application.scss │ ├── autosuggest.scss │ ├── basics.scss │ ├── boost.scss │ ├── chats.scss │ ├── components │ ├── accordion.scss │ ├── account-header.scss │ ├── admin.scss │ ├── aliases.scss │ ├── audio-player.scss │ ├── buttons.scss │ ├── columns.scss │ ├── compose-form.scss │ ├── crypto-donate.scss │ ├── datepicker.scss │ ├── detailed-status.scss │ ├── directory.scss │ ├── display-name.scss │ ├── dropdown-menu.scss │ ├── emoji-reacts.scss │ ├── enlistment.scss │ ├── filters.scss │ ├── icon.scss │ ├── inputs.scss │ ├── media-gallery.scss │ ├── modal.scss │ ├── notification.scss │ ├── profile-info-panel.scss │ ├── profile-media-panel.scss │ ├── profile_hover_card.scss │ ├── radio-button.scss │ ├── react-toggle.scss │ ├── remote-timeline.scss │ ├── reply-mentions.scss │ ├── search.scss │ ├── server-info.scss │ ├── setting-toggle.scss │ ├── sidebar-menu.scss │ ├── snackbar.scss │ ├── spoiler-button.scss │ ├── status.scss │ ├── sticky.scss │ ├── still-image.scss │ ├── trends.scss │ ├── video-player.scss │ └── wtf-panel.scss │ ├── demetricator.scss │ ├── donations.scss │ ├── dyslexic.scss │ ├── emoji_picker.scss │ ├── fonts.scss │ ├── footer.scss │ ├── forms.scss │ ├── holiday │ └── halloween.scss │ ├── loading.scss │ ├── navigation.scss │ ├── placeholder.scss │ ├── reset.scss │ ├── rtl.scss │ ├── themes.scss │ ├── truth.scss │ ├── ui.scss │ ├── utilities.scss │ └── variables.scss ├── babel.config.js ├── commitlint.config.js ├── custom ├── .gitkeep ├── instance │ └── .gitkeep ├── locales │ └── .gitkeep └── modules │ └── .gitkeep ├── dangerfile.ts ├── docs ├── admin-ui-1.png ├── admin-ui-2.png ├── administration │ ├── akkoma.md │ ├── custom_registration.md │ ├── deploy-at-scale.md │ ├── install-subdomain.md │ ├── mastodon.md │ ├── removing.md │ └── yunohost.md ├── contributing.md ├── customization.md ├── development │ ├── build-config.md │ ├── developing-backend.md │ ├── how-it-works.md │ ├── local-config.md │ ├── running-locally.md │ └── yarn-commands.md ├── history.md ├── ui-dark.png ├── ui-light.png └── ui-mixed.png ├── installation └── mastodon.conf ├── jest.config.js ├── jest └── assetTransformer.js ├── jsdoc.conf.js ├── package.json ├── postcss.config.js ├── tailwind.config.js ├── tailwind ├── __tests__ │ └── colors-test.js └── colors.js ├── tsconfig.json ├── types └── redux-immutable │ └── index.d.ts ├── webpack.config.js ├── webpack ├── configuration.js ├── development.js ├── loaders │ └── git-loader.js ├── production.js ├── rules │ ├── assets.js │ ├── babel-build-config.js │ ├── babel-git.js │ ├── babel.js │ ├── css.js │ ├── git-refresh.js │ ├── index.js │ ├── mark.js │ └── node_modules.js ├── shared.js ├── test.js └── translationRunner.js └── yarn.lock /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | NODE_ENV=development 2 | # BACKEND_URL="https://example.com" 3 | # PROXY_HTTPS_INSECURE=false 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/webpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.github/workflows/webpack.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx commitlint --edit $1 -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18.2.0 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /.vscode/soapbox.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/.vscode/soapbox.code-snippets -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/README.md -------------------------------------------------------------------------------- /app/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/application.ts -------------------------------------------------------------------------------- /app/fonts/OpenDyslexic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/fonts/OpenDyslexic/LICENSE -------------------------------------------------------------------------------- /app/fonts/OpenDyslexic/OpenDyslexic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/fonts/OpenDyslexic/OpenDyslexic-Bold.woff2 -------------------------------------------------------------------------------- /app/fonts/OpenDyslexic/OpenDyslexic-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/fonts/OpenDyslexic/OpenDyslexic-Italic.woff2 -------------------------------------------------------------------------------- /app/fonts/soapbox/soapbox.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/fonts/soapbox/soapbox.eot -------------------------------------------------------------------------------- /app/fonts/soapbox/soapbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/fonts/soapbox/soapbox.svg -------------------------------------------------------------------------------- /app/fonts/soapbox/soapbox.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/fonts/soapbox/soapbox.ttf -------------------------------------------------------------------------------- /app/fonts/soapbox/soapbox.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/fonts/soapbox/soapbox.woff -------------------------------------------------------------------------------- /app/icons/COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/COPYING.md -------------------------------------------------------------------------------- /app/icons/fediverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/fediverse.svg -------------------------------------------------------------------------------- /app/icons/mangane-dark-full-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/mangane-dark-full-horizontal.svg -------------------------------------------------------------------------------- /app/icons/mangane-dark-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/mangane-dark-full.svg -------------------------------------------------------------------------------- /app/icons/mangane-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/mangane-dark.svg -------------------------------------------------------------------------------- /app/icons/mangane-full-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/mangane-full-horizontal.svg -------------------------------------------------------------------------------- /app/icons/mangane-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/mangane-full.svg -------------------------------------------------------------------------------- /app/icons/mangane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/mangane.svg -------------------------------------------------------------------------------- /app/icons/verified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/icons/verified.svg -------------------------------------------------------------------------------- /app/images/audio-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/audio-placeholder.png -------------------------------------------------------------------------------- /app/images/avatar-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/avatar-missing.png -------------------------------------------------------------------------------- /app/images/avatar-missing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/avatar-missing.svg -------------------------------------------------------------------------------- /app/images/halloween/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/halloween/clouds.png -------------------------------------------------------------------------------- /app/images/halloween/halloween-emblem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/halloween/halloween-emblem.svg -------------------------------------------------------------------------------- /app/images/halloween/spider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/halloween/spider.svg -------------------------------------------------------------------------------- /app/images/halloween/spiderweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/halloween/spiderweb.svg -------------------------------------------------------------------------------- /app/images/halloween/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/halloween/starfield.png -------------------------------------------------------------------------------- /app/images/halloween/twinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/halloween/twinkle.svg -------------------------------------------------------------------------------- /app/images/header-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/header-missing.png -------------------------------------------------------------------------------- /app/images/mangane-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/mangane-logo.svg -------------------------------------------------------------------------------- /app/images/reticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/reticle.png -------------------------------------------------------------------------------- /app/images/sprite-post-functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/sprite-post-functions.png -------------------------------------------------------------------------------- /app/images/video-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/video-placeholder.png -------------------------------------------------------------------------------- /app/images/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/void.png -------------------------------------------------------------------------------- /app/images/web-push/web-push-icon_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/web-push/web-push-icon_expand.png -------------------------------------------------------------------------------- /app/images/web-push/web-push-icon_favourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/web-push/web-push-icon_favourite.png -------------------------------------------------------------------------------- /app/images/web-push/web-push-icon_reblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/images/web-push/web-push-icon_reblog.png -------------------------------------------------------------------------------- /app/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/index.ejs -------------------------------------------------------------------------------- /app/instance/about.example/dmca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/instance/about.example/dmca.html -------------------------------------------------------------------------------- /app/instance/about.example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/instance/about.example/index.html -------------------------------------------------------------------------------- /app/instance/about.example/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/instance/about.example/privacy.html -------------------------------------------------------------------------------- /app/instance/about.example/tos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/instance/about.example/tos.html -------------------------------------------------------------------------------- /app/instance/soapbox.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/instance/soapbox.example.json -------------------------------------------------------------------------------- /app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/manifest.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/account-moved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/account-moved.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/accounts.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/announcements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/announcements.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/app.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/blocks.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/config_db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/config_db.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/fedibird-account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/fedibird-account.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/fedibird-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/fedibird-instance.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/friendica-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/friendica-instance.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/friendica-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/friendica-status.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/gotosocial-account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/gotosocial-account.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/gotosocial-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/gotosocial-status.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/intlMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/intlMessages.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/lain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/lain.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/markers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/markers.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/mastodon-account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/mastodon-account.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/mastodon-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/mastodon-instance.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/mitra-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/mitra-context.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/mitra-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/mitra-instance.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/mk.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/notification-move.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/notification-move.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/notification-poll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/notification-poll.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/notification.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/notifications.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/patron-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/patron-instance.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/patron-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/patron-user.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/pixelfed-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/pixelfed-instance.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/pleroma-account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/pleroma-account.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/pleroma-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/pleroma-instance.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/pleroma-quote-post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/pleroma-quote-post.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/realDonaldTrump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/realDonaldTrump.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/relationship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/relationship.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/rules.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/soapbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/soapbox.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/spinster-soapbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/spinster-soapbox.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/status-cw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/status-cw.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/status-with-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/status-with-card.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/status-with-poll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/status-with-poll.json -------------------------------------------------------------------------------- /app/soapbox/__fixtures__/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__fixtures__/user.json -------------------------------------------------------------------------------- /app/soapbox/__mocks__/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__mocks__/api.ts -------------------------------------------------------------------------------- /app/soapbox/__tests__/compare_id.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/__tests__/compare_id.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/about.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/about.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/accounts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/accounts.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/alerts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/alerts.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/blocks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/blocks.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/compose.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/compose.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/me.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/me.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/onboarding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/onboarding.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/preload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/preload.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/rules.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/rules.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/soapbox.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/soapbox.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/__tests__/statuses.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/__tests__/statuses.test.ts -------------------------------------------------------------------------------- /app/soapbox/actions/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/about.ts -------------------------------------------------------------------------------- /app/soapbox/actions/account-notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/account-notes.ts -------------------------------------------------------------------------------- /app/soapbox/actions/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/accounts.ts -------------------------------------------------------------------------------- /app/soapbox/actions/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/admin.ts -------------------------------------------------------------------------------- /app/soapbox/actions/alerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/alerts.ts -------------------------------------------------------------------------------- /app/soapbox/actions/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/aliases.ts -------------------------------------------------------------------------------- /app/soapbox/actions/announcements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/announcements.ts -------------------------------------------------------------------------------- /app/soapbox/actions/apps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/apps.ts -------------------------------------------------------------------------------- /app/soapbox/actions/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/auth.ts -------------------------------------------------------------------------------- /app/soapbox/actions/backups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/backups.ts -------------------------------------------------------------------------------- /app/soapbox/actions/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/blocks.ts -------------------------------------------------------------------------------- /app/soapbox/actions/bookmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/bookmarks.ts -------------------------------------------------------------------------------- /app/soapbox/actions/bundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/bundles.ts -------------------------------------------------------------------------------- /app/soapbox/actions/chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/chats.ts -------------------------------------------------------------------------------- /app/soapbox/actions/compose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/compose.ts -------------------------------------------------------------------------------- /app/soapbox/actions/consumer-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/consumer-auth.ts -------------------------------------------------------------------------------- /app/soapbox/actions/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/conversations.ts -------------------------------------------------------------------------------- /app/soapbox/actions/custom_emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/custom_emojis.ts -------------------------------------------------------------------------------- /app/soapbox/actions/directory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/directory.ts -------------------------------------------------------------------------------- /app/soapbox/actions/domain_blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/domain_blocks.ts -------------------------------------------------------------------------------- /app/soapbox/actions/dropdown_menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/dropdown_menu.ts -------------------------------------------------------------------------------- /app/soapbox/actions/email_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/email_list.ts -------------------------------------------------------------------------------- /app/soapbox/actions/emoji_reacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/emoji_reacts.ts -------------------------------------------------------------------------------- /app/soapbox/actions/emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/emojis.ts -------------------------------------------------------------------------------- /app/soapbox/actions/export_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/export_data.ts -------------------------------------------------------------------------------- /app/soapbox/actions/external_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/external_auth.ts -------------------------------------------------------------------------------- /app/soapbox/actions/familiar_followers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/familiar_followers.ts -------------------------------------------------------------------------------- /app/soapbox/actions/favourites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/favourites.ts -------------------------------------------------------------------------------- /app/soapbox/actions/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/filters.ts -------------------------------------------------------------------------------- /app/soapbox/actions/group_editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/group_editor.ts -------------------------------------------------------------------------------- /app/soapbox/actions/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/groups.ts -------------------------------------------------------------------------------- /app/soapbox/actions/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/history.ts -------------------------------------------------------------------------------- /app/soapbox/actions/import_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/import_data.ts -------------------------------------------------------------------------------- /app/soapbox/actions/importer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/importer/index.ts -------------------------------------------------------------------------------- /app/soapbox/actions/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/instance.ts -------------------------------------------------------------------------------- /app/soapbox/actions/interactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/interactions.ts -------------------------------------------------------------------------------- /app/soapbox/actions/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/lists.ts -------------------------------------------------------------------------------- /app/soapbox/actions/markers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/markers.ts -------------------------------------------------------------------------------- /app/soapbox/actions/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/me.ts -------------------------------------------------------------------------------- /app/soapbox/actions/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/media.ts -------------------------------------------------------------------------------- /app/soapbox/actions/mfa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/mfa.ts -------------------------------------------------------------------------------- /app/soapbox/actions/mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/mobile.ts -------------------------------------------------------------------------------- /app/soapbox/actions/modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/modals.ts -------------------------------------------------------------------------------- /app/soapbox/actions/moderation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/moderation.tsx -------------------------------------------------------------------------------- /app/soapbox/actions/mrf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/mrf.ts -------------------------------------------------------------------------------- /app/soapbox/actions/mutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/mutes.ts -------------------------------------------------------------------------------- /app/soapbox/actions/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/notifications.ts -------------------------------------------------------------------------------- /app/soapbox/actions/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/oauth.ts -------------------------------------------------------------------------------- /app/soapbox/actions/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/onboarding.ts -------------------------------------------------------------------------------- /app/soapbox/actions/patron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/patron.ts -------------------------------------------------------------------------------- /app/soapbox/actions/pin_statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/pin_statuses.ts -------------------------------------------------------------------------------- /app/soapbox/actions/polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/polls.ts -------------------------------------------------------------------------------- /app/soapbox/actions/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/preload.ts -------------------------------------------------------------------------------- /app/soapbox/actions/profile_hover_card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/profile_hover_card.ts -------------------------------------------------------------------------------- /app/soapbox/actions/push_notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/push_notifications/index.ts -------------------------------------------------------------------------------- /app/soapbox/actions/push_notifications/setter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/push_notifications/setter.ts -------------------------------------------------------------------------------- /app/soapbox/actions/push_subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/push_subscriptions.ts -------------------------------------------------------------------------------- /app/soapbox/actions/remote_timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/remote_timeline.ts -------------------------------------------------------------------------------- /app/soapbox/actions/reports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/reports.ts -------------------------------------------------------------------------------- /app/soapbox/actions/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/rules.ts -------------------------------------------------------------------------------- /app/soapbox/actions/scheduled_statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/scheduled_statuses.ts -------------------------------------------------------------------------------- /app/soapbox/actions/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/search.ts -------------------------------------------------------------------------------- /app/soapbox/actions/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/security.ts -------------------------------------------------------------------------------- /app/soapbox/actions/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/settings.ts -------------------------------------------------------------------------------- /app/soapbox/actions/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/sidebar.ts -------------------------------------------------------------------------------- /app/soapbox/actions/snackbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/snackbar.ts -------------------------------------------------------------------------------- /app/soapbox/actions/soapbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/soapbox.ts -------------------------------------------------------------------------------- /app/soapbox/actions/status-hover-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/status-hover-card.ts -------------------------------------------------------------------------------- /app/soapbox/actions/statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/statuses.ts -------------------------------------------------------------------------------- /app/soapbox/actions/streaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/streaming.ts -------------------------------------------------------------------------------- /app/soapbox/actions/suggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/suggestions.ts -------------------------------------------------------------------------------- /app/soapbox/actions/sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/sw.ts -------------------------------------------------------------------------------- /app/soapbox/actions/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/tags.ts -------------------------------------------------------------------------------- /app/soapbox/actions/timelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/timelines.ts -------------------------------------------------------------------------------- /app/soapbox/actions/trending_statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/trending_statuses.ts -------------------------------------------------------------------------------- /app/soapbox/actions/trends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/trends.ts -------------------------------------------------------------------------------- /app/soapbox/actions/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/actions/verification.ts -------------------------------------------------------------------------------- /app/soapbox/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/api.ts -------------------------------------------------------------------------------- /app/soapbox/base_polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/base_polyfills.ts -------------------------------------------------------------------------------- /app/soapbox/build_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/build_config.js -------------------------------------------------------------------------------- /app/soapbox/compare_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/compare_id.ts -------------------------------------------------------------------------------- /app/soapbox/components/__tests__/avatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/__tests__/avatar.test.tsx -------------------------------------------------------------------------------- /app/soapbox/components/__tests__/badge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/__tests__/badge.test.tsx -------------------------------------------------------------------------------- /app/soapbox/components/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/account.tsx -------------------------------------------------------------------------------- /app/soapbox/components/account_search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/account_search.tsx -------------------------------------------------------------------------------- /app/soapbox/components/animated-number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/animated-number.tsx -------------------------------------------------------------------------------- /app/soapbox/components/announcements/emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/announcements/emoji.tsx -------------------------------------------------------------------------------- /app/soapbox/components/attachment-thumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/attachment-thumbs.tsx -------------------------------------------------------------------------------- /app/soapbox/components/autosuggest_emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/autosuggest_emoji.tsx -------------------------------------------------------------------------------- /app/soapbox/components/autosuggest_input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/autosuggest_input.tsx -------------------------------------------------------------------------------- /app/soapbox/components/autosuggest_textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/autosuggest_textarea.tsx -------------------------------------------------------------------------------- /app/soapbox/components/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/avatar.tsx -------------------------------------------------------------------------------- /app/soapbox/components/avatar_overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/avatar_overlay.tsx -------------------------------------------------------------------------------- /app/soapbox/components/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/badge.tsx -------------------------------------------------------------------------------- /app/soapbox/components/birthday-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/birthday-panel.tsx -------------------------------------------------------------------------------- /app/soapbox/components/birthday_input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/birthday_input.tsx -------------------------------------------------------------------------------- /app/soapbox/components/blurhash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/blurhash.tsx -------------------------------------------------------------------------------- /app/soapbox/components/column_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/column_header.js -------------------------------------------------------------------------------- /app/soapbox/components/display-name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/display-name.tsx -------------------------------------------------------------------------------- /app/soapbox/components/domain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/domain.tsx -------------------------------------------------------------------------------- /app/soapbox/components/dropdown_menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/dropdown_menu.tsx -------------------------------------------------------------------------------- /app/soapbox/components/emoji-button-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/emoji-button-wrapper.tsx -------------------------------------------------------------------------------- /app/soapbox/components/emoji_picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/emoji_picker.tsx -------------------------------------------------------------------------------- /app/soapbox/components/error_boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/error_boundary.tsx -------------------------------------------------------------------------------- /app/soapbox/components/extended_video_player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/extended_video_player.js -------------------------------------------------------------------------------- /app/soapbox/components/filter_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/filter_bar.js -------------------------------------------------------------------------------- /app/soapbox/components/fork_awesome_icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/fork_awesome_icon.tsx -------------------------------------------------------------------------------- /app/soapbox/components/gdpr-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/gdpr-banner.tsx -------------------------------------------------------------------------------- /app/soapbox/components/hashtag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/hashtag.tsx -------------------------------------------------------------------------------- /app/soapbox/components/helmet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/helmet.tsx -------------------------------------------------------------------------------- /app/soapbox/components/hover-status-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/hover-status-wrapper.tsx -------------------------------------------------------------------------------- /app/soapbox/components/hover_ref_wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/hover_ref_wrapper.tsx -------------------------------------------------------------------------------- /app/soapbox/components/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/icon.tsx -------------------------------------------------------------------------------- /app/soapbox/components/icon_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/icon_button.js -------------------------------------------------------------------------------- /app/soapbox/components/icon_with_counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/icon_with_counter.tsx -------------------------------------------------------------------------------- /app/soapbox/components/landing-gradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/landing-gradient.tsx -------------------------------------------------------------------------------- /app/soapbox/components/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/list.tsx -------------------------------------------------------------------------------- /app/soapbox/components/load_gap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/load_gap.tsx -------------------------------------------------------------------------------- /app/soapbox/components/load_more.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/load_more.tsx -------------------------------------------------------------------------------- /app/soapbox/components/loading-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/loading-screen.tsx -------------------------------------------------------------------------------- /app/soapbox/components/media_gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/media_gallery.js -------------------------------------------------------------------------------- /app/soapbox/components/missing_indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/missing_indicator.tsx -------------------------------------------------------------------------------- /app/soapbox/components/modal_root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/modal_root.js -------------------------------------------------------------------------------- /app/soapbox/components/permalink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/permalink.tsx -------------------------------------------------------------------------------- /app/soapbox/components/polls/poll-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/polls/poll-footer.tsx -------------------------------------------------------------------------------- /app/soapbox/components/polls/poll-option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/polls/poll-option.tsx -------------------------------------------------------------------------------- /app/soapbox/components/polls/poll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/polls/poll.tsx -------------------------------------------------------------------------------- /app/soapbox/components/profile-hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/profile-hover-card.tsx -------------------------------------------------------------------------------- /app/soapbox/components/progress_circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/progress_circle.tsx -------------------------------------------------------------------------------- /app/soapbox/components/pull-to-refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/pull-to-refresh.tsx -------------------------------------------------------------------------------- /app/soapbox/components/pullable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/pullable.tsx -------------------------------------------------------------------------------- /app/soapbox/components/quoted-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/quoted-status.tsx -------------------------------------------------------------------------------- /app/soapbox/components/radio_button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/radio_button.tsx -------------------------------------------------------------------------------- /app/soapbox/components/relative_timestamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/relative_timestamp.js -------------------------------------------------------------------------------- /app/soapbox/components/scroll-top-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/scroll-top-button.tsx -------------------------------------------------------------------------------- /app/soapbox/components/scrollable_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/scrollable_list.tsx -------------------------------------------------------------------------------- /app/soapbox/components/setting_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/setting_text.js -------------------------------------------------------------------------------- /app/soapbox/components/sidebar-navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/sidebar-navigation.tsx -------------------------------------------------------------------------------- /app/soapbox/components/sidebar_menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/sidebar_menu.tsx -------------------------------------------------------------------------------- /app/soapbox/components/site-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/site-logo.tsx -------------------------------------------------------------------------------- /app/soapbox/components/status-action-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/status-action-bar.tsx -------------------------------------------------------------------------------- /app/soapbox/components/status-action-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/status-action-button.tsx -------------------------------------------------------------------------------- /app/soapbox/components/status-hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/status-hover-card.tsx -------------------------------------------------------------------------------- /app/soapbox/components/status-media.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/status-media.tsx -------------------------------------------------------------------------------- /app/soapbox/components/status-reply-mentions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/status-reply-mentions.tsx -------------------------------------------------------------------------------- /app/soapbox/components/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/status.tsx -------------------------------------------------------------------------------- /app/soapbox/components/status_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/status_content.tsx -------------------------------------------------------------------------------- /app/soapbox/components/status_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/status_list.tsx -------------------------------------------------------------------------------- /app/soapbox/components/sticky.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/sticky.tsx -------------------------------------------------------------------------------- /app/soapbox/components/still_image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/still_image.tsx -------------------------------------------------------------------------------- /app/soapbox/components/sub_navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/sub_navigation.tsx -------------------------------------------------------------------------------- /app/soapbox/components/svg_icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/svg_icon.tsx -------------------------------------------------------------------------------- /app/soapbox/components/thumb_navigation-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/thumb_navigation-link.tsx -------------------------------------------------------------------------------- /app/soapbox/components/thumb_navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/thumb_navigation.tsx -------------------------------------------------------------------------------- /app/soapbox/components/timeline_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/timeline_settings.tsx -------------------------------------------------------------------------------- /app/soapbox/components/tombstone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/tombstone.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/avatar/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/avatar/avatar.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/banner/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/banner/banner.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/button/button.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/card/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/card/card.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/checkbox/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/checkbox/checkbox.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/column/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/column/column.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/counter/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/counter/counter.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/divider/divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/divider/divider.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/emoji/emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/emoji/emoji.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/form/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/form/form.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/hstack/hstack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/hstack/hstack.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/icon/icon.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/icon/svg-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/icon/svg-icon.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/index.ts -------------------------------------------------------------------------------- /app/soapbox/components/ui/input/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/input/input.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/layout/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/layout/layout.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/menu/menu.css -------------------------------------------------------------------------------- /app/soapbox/components/ui/menu/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/menu/menu.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/modal/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/modal/modal.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/select/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/select/select.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/spinner/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/spinner/spinner.css -------------------------------------------------------------------------------- /app/soapbox/components/ui/spinner/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/spinner/spinner.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/stack/stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/stack/stack.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/tabs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/tabs/tabs.css -------------------------------------------------------------------------------- /app/soapbox/components/ui/tabs/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/tabs/tabs.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/text/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/text/text.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/textarea/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/textarea/textarea.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/toggle/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/toggle/toggle.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/tooltip/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/tooltip/tooltip.css -------------------------------------------------------------------------------- /app/soapbox/components/ui/tooltip/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/tooltip/tooltip.tsx -------------------------------------------------------------------------------- /app/soapbox/components/ui/widget/widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/ui/widget/widget.tsx -------------------------------------------------------------------------------- /app/soapbox/components/upload-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/upload-progress.tsx -------------------------------------------------------------------------------- /app/soapbox/components/validation-checkmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/validation-checkmark.tsx -------------------------------------------------------------------------------- /app/soapbox/components/verification_badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/components/verification_badge.tsx -------------------------------------------------------------------------------- /app/soapbox/containers/account_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/containers/account_container.js -------------------------------------------------------------------------------- /app/soapbox/containers/soapbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/containers/soapbox.tsx -------------------------------------------------------------------------------- /app/soapbox/containers/status_container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/containers/status_container.tsx -------------------------------------------------------------------------------- /app/soapbox/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/custom.ts -------------------------------------------------------------------------------- /app/soapbox/extra_polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/extra_polyfills.ts -------------------------------------------------------------------------------- /app/soapbox/features/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/about/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/account_gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/account_gallery/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/account_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/account_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/admin/components/report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/admin/components/report.tsx -------------------------------------------------------------------------------- /app/soapbox/features/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/admin/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/admin/moderation_log.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/admin/moderation_log.tsx -------------------------------------------------------------------------------- /app/soapbox/features/admin/tabs/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/admin/tabs/dashboard.tsx -------------------------------------------------------------------------------- /app/soapbox/features/admin/tabs/reports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/admin/tabs/reports.tsx -------------------------------------------------------------------------------- /app/soapbox/features/admin/user_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/admin/user_index.js -------------------------------------------------------------------------------- /app/soapbox/features/aliases/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/aliases/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/audio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/audio/index.js -------------------------------------------------------------------------------- /app/soapbox/features/audio/visualizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/audio/visualizer.ts -------------------------------------------------------------------------------- /app/soapbox/features/auth_layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/auth_layout/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/auth_token_list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/auth_token_list/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/backups/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/backups/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/birthdays/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/birthdays/account.tsx -------------------------------------------------------------------------------- /app/soapbox/features/birthdays/date_picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/birthdays/date_picker.ts -------------------------------------------------------------------------------- /app/soapbox/features/blocks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/blocks/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/bookmarks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/bookmarks/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/bubble_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/bubble_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/chats/chat-room.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/chats/chat-room.tsx -------------------------------------------------------------------------------- /app/soapbox/features/chats/components/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/chats/components/chat.tsx -------------------------------------------------------------------------------- /app/soapbox/features/chats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/chats/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/compose/util/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/compose/util/counter.ts -------------------------------------------------------------------------------- /app/soapbox/features/compose/util/url_regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/compose/util/url_regex.ts -------------------------------------------------------------------------------- /app/soapbox/features/conversations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/conversations/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/crypto_donate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/crypto_donate/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/delete_account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/delete_account/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/developers/apps/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/developers/apps/create.tsx -------------------------------------------------------------------------------- /app/soapbox/features/developers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/developers/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/direct_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/direct_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/directory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/directory/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/domain_blocks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/domain_blocks/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/edit_email/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/edit_email/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/edit_password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/edit_password/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/edit_profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/edit_profile/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/emoji/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/emoji/emoji.js -------------------------------------------------------------------------------- /app/soapbox/features/emoji/emoji_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/emoji/emoji_compressed.js -------------------------------------------------------------------------------- /app/soapbox/features/emoji/emoji_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/emoji/emoji_map.json -------------------------------------------------------------------------------- /app/soapbox/features/emoji/emoji_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/emoji/emoji_utils.js -------------------------------------------------------------------------------- /app/soapbox/features/export_data/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/export_data/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/external_login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/external_login/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/filters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/filters/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/follow_requests/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/follow_requests/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/followed_tags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/followed_tags/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/followers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/followers/index.js -------------------------------------------------------------------------------- /app/soapbox/features/following/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/following/index.js -------------------------------------------------------------------------------- /app/soapbox/features/forms/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/forms/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/generic_not_found/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/generic_not_found/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/groups/create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/groups/create/index.js -------------------------------------------------------------------------------- /app/soapbox/features/groups/edit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/groups/edit/index.js -------------------------------------------------------------------------------- /app/soapbox/features/groups/index/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/groups/index/card.js -------------------------------------------------------------------------------- /app/soapbox/features/groups/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/groups/index/index.js -------------------------------------------------------------------------------- /app/soapbox/features/groups/members/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/groups/members/index.js -------------------------------------------------------------------------------- /app/soapbox/features/groups/timeline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/groups/timeline/index.js -------------------------------------------------------------------------------- /app/soapbox/features/hashtag_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/hashtag_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/home_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/home_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/import_data/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/import_data/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/intentional_error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/intentional_error/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/landing_page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/landing_page/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/list_adder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/list_adder/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/list_editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/list_editor/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/list_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/list_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/lists/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/lists/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/migration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/migration/index.js -------------------------------------------------------------------------------- /app/soapbox/features/mobile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/mobile/index.js -------------------------------------------------------------------------------- /app/soapbox/features/mutes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/mutes/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/new_status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/new_status/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/notifications/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/onboarding/steps/feeds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/onboarding/steps/feeds.tsx -------------------------------------------------------------------------------- /app/soapbox/features/pinned_statuses/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/pinned_statuses/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/placeholder/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/placeholder/utils.js -------------------------------------------------------------------------------- /app/soapbox/features/preferences/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/preferences/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/profile_fields/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/profile_fields/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/public_layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/public_layout/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/public_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/public_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/register_invite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/register_invite/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/remote_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/remote_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/reply_mentions/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/reply_mentions/account.tsx -------------------------------------------------------------------------------- /app/soapbox/features/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/search/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/security/mfa_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/security/mfa_form.tsx -------------------------------------------------------------------------------- /app/soapbox/features/server_info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/server_info/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/settings/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/settings/media_display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/settings/media_display.tsx -------------------------------------------------------------------------------- /app/soapbox/features/share/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/share/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/soapbox_config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/soapbox_config/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/status/components/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/status/components/card.tsx -------------------------------------------------------------------------------- /app/soapbox/features/status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/status/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/test_timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/test_timeline/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/__tests__/index.test.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/components/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/components/accordion.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/components/bundle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/components/bundle.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/components/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/components/column.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/components/modal_root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/components/modal_root.js -------------------------------------------------------------------------------- /app/soapbox/features/ui/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/components/navbar.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/components/timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/components/timeline.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/util/async-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/util/async-components.ts -------------------------------------------------------------------------------- /app/soapbox/features/ui/util/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/util/fullscreen.js -------------------------------------------------------------------------------- /app/soapbox/features/ui/util/optional_motion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/util/optional_motion.tsx -------------------------------------------------------------------------------- /app/soapbox/features/ui/util/reduced_motion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/ui/util/reduced_motion.tsx -------------------------------------------------------------------------------- /app/soapbox/features/verification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/verification/index.tsx -------------------------------------------------------------------------------- /app/soapbox/features/video/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/features/video/index.js -------------------------------------------------------------------------------- /app/soapbox/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/globals.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/index.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useAccount.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useApi.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useAppDispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useAppDispatch.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useAppSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useAppSelector.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useDimensions.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useFeatures.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useLocale.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useLogo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useLogo.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useOnScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useOnScreen.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useOwnAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useOwnAccount.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useRefEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useRefEventHandler.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useSettings.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useSoapboxConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useSoapboxConfig.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useSystemTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useSystemTheme.ts -------------------------------------------------------------------------------- /app/soapbox/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/hooks/useTheme.ts -------------------------------------------------------------------------------- /app/soapbox/is_mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/is_mobile.ts -------------------------------------------------------------------------------- /app/soapbox/load_polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/load_polyfills.ts -------------------------------------------------------------------------------- /app/soapbox/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ar.json -------------------------------------------------------------------------------- /app/soapbox/locales/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ast.json -------------------------------------------------------------------------------- /app/soapbox/locales/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/bg.json -------------------------------------------------------------------------------- /app/soapbox/locales/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/bn.json -------------------------------------------------------------------------------- /app/soapbox/locales/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/br.json -------------------------------------------------------------------------------- /app/soapbox/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ca.json -------------------------------------------------------------------------------- /app/soapbox/locales/co.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/co.json -------------------------------------------------------------------------------- /app/soapbox/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/cs.json -------------------------------------------------------------------------------- /app/soapbox/locales/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/cy.json -------------------------------------------------------------------------------- /app/soapbox/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/da.json -------------------------------------------------------------------------------- /app/soapbox/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/de.json -------------------------------------------------------------------------------- /app/soapbox/locales/defaultMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/defaultMessages.json -------------------------------------------------------------------------------- /app/soapbox/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/el.json -------------------------------------------------------------------------------- /app/soapbox/locales/en-Shaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/en-Shaw.json -------------------------------------------------------------------------------- /app/soapbox/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/en.json -------------------------------------------------------------------------------- /app/soapbox/locales/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/eo.json -------------------------------------------------------------------------------- /app/soapbox/locales/es-AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/es-AR.json -------------------------------------------------------------------------------- /app/soapbox/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/es.json -------------------------------------------------------------------------------- /app/soapbox/locales/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/et.json -------------------------------------------------------------------------------- /app/soapbox/locales/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/eu.json -------------------------------------------------------------------------------- /app/soapbox/locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/fa.json -------------------------------------------------------------------------------- /app/soapbox/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/fi.json -------------------------------------------------------------------------------- /app/soapbox/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/fr.json -------------------------------------------------------------------------------- /app/soapbox/locales/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ga.json -------------------------------------------------------------------------------- /app/soapbox/locales/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/gl.json -------------------------------------------------------------------------------- /app/soapbox/locales/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/he.json -------------------------------------------------------------------------------- /app/soapbox/locales/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/hi.json -------------------------------------------------------------------------------- /app/soapbox/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/hr.json -------------------------------------------------------------------------------- /app/soapbox/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/hu.json -------------------------------------------------------------------------------- /app/soapbox/locales/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/hy.json -------------------------------------------------------------------------------- /app/soapbox/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/id.json -------------------------------------------------------------------------------- /app/soapbox/locales/io.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/io.json -------------------------------------------------------------------------------- /app/soapbox/locales/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/is.json -------------------------------------------------------------------------------- /app/soapbox/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/it.json -------------------------------------------------------------------------------- /app/soapbox/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ja.json -------------------------------------------------------------------------------- /app/soapbox/locales/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ka.json -------------------------------------------------------------------------------- /app/soapbox/locales/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/kk.json -------------------------------------------------------------------------------- /app/soapbox/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ko.json -------------------------------------------------------------------------------- /app/soapbox/locales/locale-data/co.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/locale-data/co.js -------------------------------------------------------------------------------- /app/soapbox/locales/locale-data/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/locale-data/oc.js -------------------------------------------------------------------------------- /app/soapbox/locales/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/lt.json -------------------------------------------------------------------------------- /app/soapbox/locales/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/lv.json -------------------------------------------------------------------------------- /app/soapbox/locales/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/messages.ts -------------------------------------------------------------------------------- /app/soapbox/locales/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/mk.json -------------------------------------------------------------------------------- /app/soapbox/locales/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ms.json -------------------------------------------------------------------------------- /app/soapbox/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/nl.json -------------------------------------------------------------------------------- /app/soapbox/locales/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/nn.json -------------------------------------------------------------------------------- /app/soapbox/locales/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/no.json -------------------------------------------------------------------------------- /app/soapbox/locales/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/oc.json -------------------------------------------------------------------------------- /app/soapbox/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/pl.json -------------------------------------------------------------------------------- /app/soapbox/locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/pt-BR.json -------------------------------------------------------------------------------- /app/soapbox/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/pt.json -------------------------------------------------------------------------------- /app/soapbox/locales/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ro.json -------------------------------------------------------------------------------- /app/soapbox/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ru.json -------------------------------------------------------------------------------- /app/soapbox/locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/sk.json -------------------------------------------------------------------------------- /app/soapbox/locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/sl.json -------------------------------------------------------------------------------- /app/soapbox/locales/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/sq.json -------------------------------------------------------------------------------- /app/soapbox/locales/sr-Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/sr-Latn.json -------------------------------------------------------------------------------- /app/soapbox/locales/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/sr.json -------------------------------------------------------------------------------- /app/soapbox/locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/sv.json -------------------------------------------------------------------------------- /app/soapbox/locales/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/ta.json -------------------------------------------------------------------------------- /app/soapbox/locales/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/te.json -------------------------------------------------------------------------------- /app/soapbox/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/th.json -------------------------------------------------------------------------------- /app/soapbox/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/tr.json -------------------------------------------------------------------------------- /app/soapbox/locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/uk.json -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ast.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_bg.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_bn.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_br.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ca.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_co.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_cs.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_cy.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_da.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_el.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_en-Shaw.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_eo.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_es-AR.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_es.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_et.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_eu.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_fa.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_fi.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ga.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_gl.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_he.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_hi.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_hr.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_hu.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_hy.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_id.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_io.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_is.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_it.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ja.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ka.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_kk.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ko.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_lt.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_lv.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_mk.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ms.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_nl.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_nn.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_no.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_oc.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_pl.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_pt-BR.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ro.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_sk.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_sl.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_sq.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_sr-Latn.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_sr.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_sv.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_ta.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_te.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_th.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_tr.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_uk.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_zh-CN.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_zh-HK.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/whitelist_zh-TW.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /app/soapbox/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/zh-CN.json -------------------------------------------------------------------------------- /app/soapbox/locales/zh-HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/zh-HK.json -------------------------------------------------------------------------------- /app/soapbox/locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/locales/zh-TW.json -------------------------------------------------------------------------------- /app/soapbox/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/main.tsx -------------------------------------------------------------------------------- /app/soapbox/middleware/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/middleware/errors.ts -------------------------------------------------------------------------------- /app/soapbox/middleware/sounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/middleware/sounds.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/__tests__/card.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/__tests__/card.test.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/__tests__/poll.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/__tests__/poll.test.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/__tests__/status.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/__tests__/status.test.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/account.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/admin_account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/admin_account.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/admin_report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/admin_report.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/announcement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/announcement.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/announcement_reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/announcement_reaction.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/attachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/attachment.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/card.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/chat.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/chat_message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/chat_message.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/emoji.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/filter.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/history.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/index.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/instance.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/list.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/mention.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/mention.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/notification.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/poll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/poll.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/relationship.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/relationship.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/status.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/status_edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/status_edit.ts -------------------------------------------------------------------------------- /app/soapbox/normalizers/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/normalizers/tag.ts -------------------------------------------------------------------------------- /app/soapbox/pages/admin_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/pages/admin_page.tsx -------------------------------------------------------------------------------- /app/soapbox/pages/default_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/pages/default_page.tsx -------------------------------------------------------------------------------- /app/soapbox/pages/empty_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/pages/empty_page.tsx -------------------------------------------------------------------------------- /app/soapbox/pages/home_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/pages/home_page.tsx -------------------------------------------------------------------------------- /app/soapbox/pages/profile_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/pages/profile_page.tsx -------------------------------------------------------------------------------- /app/soapbox/pages/status_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/pages/status_page.tsx -------------------------------------------------------------------------------- /app/soapbox/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/performance.ts -------------------------------------------------------------------------------- /app/soapbox/precheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/precheck.ts -------------------------------------------------------------------------------- /app/soapbox/queries/__tests__/carousels.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/queries/__tests__/carousels.test.ts -------------------------------------------------------------------------------- /app/soapbox/queries/__tests__/trends.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/queries/__tests__/trends.test.ts -------------------------------------------------------------------------------- /app/soapbox/queries/carousels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/queries/carousels.ts -------------------------------------------------------------------------------- /app/soapbox/queries/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/queries/client.ts -------------------------------------------------------------------------------- /app/soapbox/queries/trends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/queries/trends.ts -------------------------------------------------------------------------------- /app/soapbox/react-notification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/react-notification/index.js -------------------------------------------------------------------------------- /app/soapbox/react-notification/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/react-notification/notification.js -------------------------------------------------------------------------------- /app/soapbox/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/ready.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/accounts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/accounts.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/admin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/admin.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/alerts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/alerts.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/auth.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/compose.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/compose.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/groups.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/groups.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/index.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/lists.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/lists.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/me.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/me.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/meta.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/meta.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/modals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/modals.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/mutes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/mutes.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/patron.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/patron.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/polls.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/polls.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/rules.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/rules.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/search-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/search-test.js -------------------------------------------------------------------------------- /app/soapbox/reducers/__tests__/trends.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/__tests__/trends.test.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/account_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/account_notes.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/accounts.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/accounts_counters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/accounts_counters.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/accounts_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/accounts_meta.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/admin.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/admin_log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/admin_log.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/alerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/alerts.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/aliases.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/announcements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/announcements.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/auth.js -------------------------------------------------------------------------------- /app/soapbox/reducers/backups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/backups.tsx -------------------------------------------------------------------------------- /app/soapbox/reducers/chat_message_lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/chat_message_lists.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/chat_messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/chat_messages.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/chats.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/compose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/compose.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/contexts.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/conversations.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/custom_emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/custom_emojis.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/domain_lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/domain_lists.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/dropdown_menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/dropdown_menu.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/filters.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/group_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/group_editor.js -------------------------------------------------------------------------------- /app/soapbox/reducers/group_lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/group_lists.js -------------------------------------------------------------------------------- /app/soapbox/reducers/group_relationships.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/group_relationships.js -------------------------------------------------------------------------------- /app/soapbox/reducers/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/groups.js -------------------------------------------------------------------------------- /app/soapbox/reducers/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/history.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/index.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/instance.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/list_adder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/list_adder.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/list_editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/list_editor.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/lists.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/me.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/meta.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/modals.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/mutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/mutes.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/notifications.js -------------------------------------------------------------------------------- /app/soapbox/reducers/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/onboarding.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/patron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/patron.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/pending_statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/pending_statuses.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/polls.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/profile_hover_card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/profile_hover_card.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/push_notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/push_notifications.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/relationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/relationships.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/reports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/reports.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/rules.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/scheduled_statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/scheduled_statuses.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/search.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/security.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/settings.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/sidebar.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/soapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/soapbox.js -------------------------------------------------------------------------------- /app/soapbox/reducers/status-hover-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/status-hover-card.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/status_lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/status_lists.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/statuses.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/suggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/suggestions.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/tags.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/timelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/timelines.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/trending_statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/trending_statuses.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/trends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/trends.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/user_lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/user_lists.ts -------------------------------------------------------------------------------- /app/soapbox/reducers/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/reducers/verification.ts -------------------------------------------------------------------------------- /app/soapbox/rtl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/rtl.ts -------------------------------------------------------------------------------- /app/soapbox/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/selectors/index.ts -------------------------------------------------------------------------------- /app/soapbox/service_worker/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/service_worker/entry.ts -------------------------------------------------------------------------------- /app/soapbox/service_worker/share_target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/service_worker/share_target.js -------------------------------------------------------------------------------- /app/soapbox/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/settings.ts -------------------------------------------------------------------------------- /app/soapbox/storage/kv_store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/storage/kv_store.ts -------------------------------------------------------------------------------- /app/soapbox/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/store.ts -------------------------------------------------------------------------------- /app/soapbox/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/stream.ts -------------------------------------------------------------------------------- /app/soapbox/types/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/types/entities.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/accounts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/accounts.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/base64.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/base64.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/colors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/colors.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/config_db.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/config_db.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/emoji.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/emoji.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/features.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/features.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/html.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/html.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/numbers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/numbers.test.tsx -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/status.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/status.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/tailwind.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/tailwind.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/__tests__/timelines.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/__tests__/timelines.test.ts -------------------------------------------------------------------------------- /app/soapbox/utils/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/accounts.ts -------------------------------------------------------------------------------- /app/soapbox/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/auth.ts -------------------------------------------------------------------------------- /app/soapbox/utils/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/base64.ts -------------------------------------------------------------------------------- /app/soapbox/utils/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/code.js -------------------------------------------------------------------------------- /app/soapbox/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/colors.ts -------------------------------------------------------------------------------- /app/soapbox/utils/config_db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/config_db.ts -------------------------------------------------------------------------------- /app/soapbox/utils/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/console.ts -------------------------------------------------------------------------------- /app/soapbox/utils/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/emoji.ts -------------------------------------------------------------------------------- /app/soapbox/utils/emoji_reacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/emoji_reacts.ts -------------------------------------------------------------------------------- /app/soapbox/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/errors.ts -------------------------------------------------------------------------------- /app/soapbox/utils/favicon_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/favicon_service.ts -------------------------------------------------------------------------------- /app/soapbox/utils/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/features.ts -------------------------------------------------------------------------------- /app/soapbox/utils/greentext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/greentext.ts -------------------------------------------------------------------------------- /app/soapbox/utils/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/html.ts -------------------------------------------------------------------------------- /app/soapbox/utils/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/media.ts -------------------------------------------------------------------------------- /app/soapbox/utils/media_aspect_ratio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/media_aspect_ratio.ts -------------------------------------------------------------------------------- /app/soapbox/utils/normalizers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/normalizers.ts -------------------------------------------------------------------------------- /app/soapbox/utils/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/notification.ts -------------------------------------------------------------------------------- /app/soapbox/utils/numbers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/numbers.tsx -------------------------------------------------------------------------------- /app/soapbox/utils/phone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/phone.ts -------------------------------------------------------------------------------- /app/soapbox/utils/quirks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/quirks.ts -------------------------------------------------------------------------------- /app/soapbox/utils/redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/redirect.ts -------------------------------------------------------------------------------- /app/soapbox/utils/resize_image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/resize_image.ts -------------------------------------------------------------------------------- /app/soapbox/utils/rich_content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/rich_content.ts -------------------------------------------------------------------------------- /app/soapbox/utils/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/state.ts -------------------------------------------------------------------------------- /app/soapbox/utils/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/static.ts -------------------------------------------------------------------------------- /app/soapbox/utils/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/status.ts -------------------------------------------------------------------------------- /app/soapbox/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/strings.ts -------------------------------------------------------------------------------- /app/soapbox/utils/tailwind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/tailwind.ts -------------------------------------------------------------------------------- /app/soapbox/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/theme.ts -------------------------------------------------------------------------------- /app/soapbox/utils/timelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/timelines.ts -------------------------------------------------------------------------------- /app/soapbox/utils/tiny_post_html_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/soapbox/utils/tiny_post_html_processor.ts -------------------------------------------------------------------------------- /app/sounds/boop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/sounds/boop.mp3 -------------------------------------------------------------------------------- /app/sounds/boop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/sounds/boop.ogg -------------------------------------------------------------------------------- /app/sounds/chat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/sounds/chat.mp3 -------------------------------------------------------------------------------- /app/sounds/chat.oga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/sounds/chat.oga -------------------------------------------------------------------------------- /app/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/_mixins.scss -------------------------------------------------------------------------------- /app/styles/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/about.scss -------------------------------------------------------------------------------- /app/styles/accessibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/accessibility.scss -------------------------------------------------------------------------------- /app/styles/accounts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/accounts.scss -------------------------------------------------------------------------------- /app/styles/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/application.scss -------------------------------------------------------------------------------- /app/styles/autosuggest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/autosuggest.scss -------------------------------------------------------------------------------- /app/styles/basics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/basics.scss -------------------------------------------------------------------------------- /app/styles/boost.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/boost.scss -------------------------------------------------------------------------------- /app/styles/chats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/chats.scss -------------------------------------------------------------------------------- /app/styles/components/accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/accordion.scss -------------------------------------------------------------------------------- /app/styles/components/account-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/account-header.scss -------------------------------------------------------------------------------- /app/styles/components/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/admin.scss -------------------------------------------------------------------------------- /app/styles/components/aliases.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/aliases.scss -------------------------------------------------------------------------------- /app/styles/components/audio-player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/audio-player.scss -------------------------------------------------------------------------------- /app/styles/components/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/buttons.scss -------------------------------------------------------------------------------- /app/styles/components/columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/columns.scss -------------------------------------------------------------------------------- /app/styles/components/compose-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/compose-form.scss -------------------------------------------------------------------------------- /app/styles/components/crypto-donate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/crypto-donate.scss -------------------------------------------------------------------------------- /app/styles/components/datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/datepicker.scss -------------------------------------------------------------------------------- /app/styles/components/detailed-status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/detailed-status.scss -------------------------------------------------------------------------------- /app/styles/components/directory.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/directory.scss -------------------------------------------------------------------------------- /app/styles/components/display-name.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/display-name.scss -------------------------------------------------------------------------------- /app/styles/components/dropdown-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/dropdown-menu.scss -------------------------------------------------------------------------------- /app/styles/components/emoji-reacts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/emoji-reacts.scss -------------------------------------------------------------------------------- /app/styles/components/enlistment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/enlistment.scss -------------------------------------------------------------------------------- /app/styles/components/filters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/filters.scss -------------------------------------------------------------------------------- /app/styles/components/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/icon.scss -------------------------------------------------------------------------------- /app/styles/components/inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/inputs.scss -------------------------------------------------------------------------------- /app/styles/components/media-gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/media-gallery.scss -------------------------------------------------------------------------------- /app/styles/components/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/modal.scss -------------------------------------------------------------------------------- /app/styles/components/notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/notification.scss -------------------------------------------------------------------------------- /app/styles/components/profile-info-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/profile-info-panel.scss -------------------------------------------------------------------------------- /app/styles/components/profile_hover_card.scss: -------------------------------------------------------------------------------- 1 | .display-name__account { 2 | position: relative; 3 | font-weight: 600; 4 | } 5 | -------------------------------------------------------------------------------- /app/styles/components/radio-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/radio-button.scss -------------------------------------------------------------------------------- /app/styles/components/react-toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/react-toggle.scss -------------------------------------------------------------------------------- /app/styles/components/remote-timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/remote-timeline.scss -------------------------------------------------------------------------------- /app/styles/components/reply-mentions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/reply-mentions.scss -------------------------------------------------------------------------------- /app/styles/components/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/search.scss -------------------------------------------------------------------------------- /app/styles/components/server-info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/server-info.scss -------------------------------------------------------------------------------- /app/styles/components/setting-toggle.scss: -------------------------------------------------------------------------------- 1 | .setting-toggle__label { 2 | color: var(--gray-800); 3 | } 4 | -------------------------------------------------------------------------------- /app/styles/components/sidebar-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/sidebar-menu.scss -------------------------------------------------------------------------------- /app/styles/components/snackbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/snackbar.scss -------------------------------------------------------------------------------- /app/styles/components/spoiler-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/spoiler-button.scss -------------------------------------------------------------------------------- /app/styles/components/status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/status.scss -------------------------------------------------------------------------------- /app/styles/components/sticky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/sticky.scss -------------------------------------------------------------------------------- /app/styles/components/still-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/still-image.scss -------------------------------------------------------------------------------- /app/styles/components/trends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/trends.scss -------------------------------------------------------------------------------- /app/styles/components/video-player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/video-player.scss -------------------------------------------------------------------------------- /app/styles/components/wtf-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/components/wtf-panel.scss -------------------------------------------------------------------------------- /app/styles/demetricator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/demetricator.scss -------------------------------------------------------------------------------- /app/styles/donations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/donations.scss -------------------------------------------------------------------------------- /app/styles/dyslexic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/dyslexic.scss -------------------------------------------------------------------------------- /app/styles/emoji_picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/emoji_picker.scss -------------------------------------------------------------------------------- /app/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/fonts.scss -------------------------------------------------------------------------------- /app/styles/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/footer.scss -------------------------------------------------------------------------------- /app/styles/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/forms.scss -------------------------------------------------------------------------------- /app/styles/holiday/halloween.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/holiday/halloween.scss -------------------------------------------------------------------------------- /app/styles/loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/loading.scss -------------------------------------------------------------------------------- /app/styles/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/navigation.scss -------------------------------------------------------------------------------- /app/styles/placeholder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/placeholder.scss -------------------------------------------------------------------------------- /app/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/reset.scss -------------------------------------------------------------------------------- /app/styles/rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/rtl.scss -------------------------------------------------------------------------------- /app/styles/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/themes.scss -------------------------------------------------------------------------------- /app/styles/truth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/truth.scss -------------------------------------------------------------------------------- /app/styles/ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/ui.scss -------------------------------------------------------------------------------- /app/styles/utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/utilities.scss -------------------------------------------------------------------------------- /app/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/app/styles/variables.scss -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /custom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/instance/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/locales/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dangerfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/dangerfile.ts -------------------------------------------------------------------------------- /docs/admin-ui-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/admin-ui-1.png -------------------------------------------------------------------------------- /docs/admin-ui-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/admin-ui-2.png -------------------------------------------------------------------------------- /docs/administration/akkoma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/administration/akkoma.md -------------------------------------------------------------------------------- /docs/administration/custom_registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/administration/custom_registration.md -------------------------------------------------------------------------------- /docs/administration/deploy-at-scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/administration/deploy-at-scale.md -------------------------------------------------------------------------------- /docs/administration/install-subdomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/administration/install-subdomain.md -------------------------------------------------------------------------------- /docs/administration/mastodon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/administration/mastodon.md -------------------------------------------------------------------------------- /docs/administration/removing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/administration/removing.md -------------------------------------------------------------------------------- /docs/administration/yunohost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/administration/yunohost.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/customization.md -------------------------------------------------------------------------------- /docs/development/build-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/development/build-config.md -------------------------------------------------------------------------------- /docs/development/developing-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/development/developing-backend.md -------------------------------------------------------------------------------- /docs/development/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/development/how-it-works.md -------------------------------------------------------------------------------- /docs/development/local-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/development/local-config.md -------------------------------------------------------------------------------- /docs/development/running-locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/development/running-locally.md -------------------------------------------------------------------------------- /docs/development/yarn-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/development/yarn-commands.md -------------------------------------------------------------------------------- /docs/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/history.md -------------------------------------------------------------------------------- /docs/ui-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/ui-dark.png -------------------------------------------------------------------------------- /docs/ui-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/ui-light.png -------------------------------------------------------------------------------- /docs/ui-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/docs/ui-mixed.png -------------------------------------------------------------------------------- /installation/mastodon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/installation/mastodon.conf -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/assetTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/jest/assetTransformer.js -------------------------------------------------------------------------------- /jsdoc.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/jsdoc.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind/__tests__/colors-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/tailwind/__tests__/colors-test.js -------------------------------------------------------------------------------- /tailwind/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/tailwind/colors.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/redux-immutable/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/types/redux-immutable/index.d.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/configuration.js -------------------------------------------------------------------------------- /webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/development.js -------------------------------------------------------------------------------- /webpack/loaders/git-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/loaders/git-loader.js -------------------------------------------------------------------------------- /webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/production.js -------------------------------------------------------------------------------- /webpack/rules/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/assets.js -------------------------------------------------------------------------------- /webpack/rules/babel-build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/babel-build-config.js -------------------------------------------------------------------------------- /webpack/rules/babel-git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/babel-git.js -------------------------------------------------------------------------------- /webpack/rules/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/babel.js -------------------------------------------------------------------------------- /webpack/rules/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/css.js -------------------------------------------------------------------------------- /webpack/rules/git-refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/git-refresh.js -------------------------------------------------------------------------------- /webpack/rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/index.js -------------------------------------------------------------------------------- /webpack/rules/mark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/mark.js -------------------------------------------------------------------------------- /webpack/rules/node_modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/rules/node_modules.js -------------------------------------------------------------------------------- /webpack/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/shared.js -------------------------------------------------------------------------------- /webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/test.js -------------------------------------------------------------------------------- /webpack/translationRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/webpack/translationRunner.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BDX-town/Mangane/HEAD/yarn.lock --------------------------------------------------------------------------------