├── .editorconfig ├── .forgejo └── workflows │ └── publish.yml ├── .gitignore ├── .mailmap ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── app ├── .npmrc ├── api │ ├── api-env.ts │ ├── classes │ │ └── multiagent.ts │ ├── did.ts │ ├── display.ts │ ├── globals │ │ ├── agent.ts │ │ ├── defaults.ts │ │ └── platform.ts │ ├── models │ │ ├── notifications.ts │ │ ├── threads.ts │ │ └── timeline.ts │ ├── moderation │ │ ├── entities │ │ │ ├── basic-profile.ts │ │ │ ├── post.ts │ │ │ ├── profile.ts │ │ │ └── quote.ts │ │ ├── index.ts │ │ ├── service.ts │ │ └── utils.ts │ ├── mutations │ │ ├── block-profile.ts │ │ ├── follow-profile.ts │ │ ├── like-feed.ts │ │ ├── like-post.ts │ │ ├── mute-profile.ts │ │ ├── mute-thread.ts │ │ ├── repost-post.ts │ │ ├── subscribe-list-block.ts │ │ ├── subscribe-list-mute.ts │ │ ├── update-notifications-seen.ts │ │ ├── upload-blob.ts │ │ └── upsert-profile.ts │ ├── queries │ │ ├── _did.ts │ │ ├── get-feed-info.ts │ │ ├── get-labeler-info.ts │ │ ├── get-labeler-popular.ts │ │ ├── get-likes.ts │ │ ├── get-link-meta.ts │ │ ├── get-list-info.ts │ │ ├── get-list-members.ts │ │ ├── get-list-memberships.ts │ │ ├── get-notifications.ts │ │ ├── get-post-reposts.ts │ │ ├── get-post-thread.ts │ │ ├── get-post.ts │ │ ├── get-profile-feeds.ts │ │ ├── get-profile-followers.ts │ │ ├── get-profile-follows.ts │ │ ├── get-profile-known-followers.ts │ │ ├── get-profile-lists.ts │ │ ├── get-profile.ts │ │ ├── get-resolved-handle.ts │ │ ├── get-suggested-follows.ts │ │ ├── get-timeline.ts │ │ ├── get-translation.ts │ │ ├── search-profiles-typeahead.ts │ │ └── search-profiles.ts │ ├── richtext │ │ ├── composer.ts │ │ ├── graphemer.ts │ │ ├── intl.ts │ │ ├── renderer.ts │ │ ├── segmentize.ts │ │ ├── types.ts │ │ ├── unicode-segmenter.ts │ │ ├── unicode.ts │ │ └── utils.ts │ ├── stores │ │ ├── convo.ts │ │ ├── feeds.ts │ │ ├── lists.ts │ │ ├── posts.ts │ │ └── profiles.ts │ ├── types.ts │ ├── updaters │ │ ├── delete-post.ts │ │ └── timeline-filter.ts │ └── utils │ │ ├── batch-fetch.ts │ │ ├── links.ts │ │ ├── misc.ts │ │ ├── post.ts │ │ ├── query.ts │ │ └── toggle-mutation.ts ├── com │ ├── assets │ │ ├── banner.jpg │ │ ├── default-feed-avatar.svg │ │ ├── default-labeler-avatar.svg │ │ ├── default-list-avatar.svg │ │ └── default-user-avatar.svg │ ├── components │ │ ├── BlobImage.tsx │ │ ├── CircularProgress.tsx │ │ ├── Flyout.tsx │ │ ├── Keyed.ts │ │ ├── Link.tsx │ │ ├── List.tsx │ │ ├── Modal.tsx │ │ ├── ProfileFollowButton.tsx │ │ ├── RichTextRenderer.tsx │ │ ├── Tab.tsx │ │ ├── TabbedPanel.tsx │ │ ├── TimeAgo.tsx │ │ ├── VirtualContainer.tsx │ │ ├── dialogs │ │ │ ├── BlockConfirmDialog.desktop.tsx │ │ │ ├── BlockConfirmDialog.tsx │ │ │ ├── ConfirmDialog.tsx │ │ │ ├── DeletePostConfirmDialog.desktop.tsx │ │ │ ├── DeletePostConfirmDialog.tsx │ │ │ ├── DialogOverlay.tsx │ │ │ ├── HandleHistoryDialog.tsx │ │ │ ├── ImageViewerDialog.tsx │ │ │ ├── LabelDetailsDialog.tsx │ │ │ ├── LabelsOnMeDialog.tsx │ │ │ ├── LinkWarningDialog.tsx │ │ │ ├── MuteConfirmDialog.desktop.tsx │ │ │ ├── MuteConfirmDialog.tsx │ │ │ ├── ReportDialog.tsx │ │ │ ├── SilenceConfirmDialog.tsx │ │ │ └── lists │ │ │ │ ├── AddListDialog.tsx │ │ │ │ ├── AddProfileInListDialog.desktop.tsx │ │ │ │ ├── AddProfileInListDialog.tsx │ │ │ │ ├── CloneListMembersDialog.desktop.tsx │ │ │ │ ├── CloneListMembersDialog.tsx │ │ │ │ ├── PruneListOrphanDialog.tsx │ │ │ │ └── SubscribeListDialog.tsx │ │ ├── embeds │ │ │ ├── Embed.tsx │ │ │ ├── EmbedFeed.tsx │ │ │ ├── EmbedImage.tsx │ │ │ ├── EmbedLink.tsx │ │ │ ├── EmbedList.tsx │ │ │ ├── EmbedQuote.tsx │ │ │ ├── EmbedRecordBlocked.tsx │ │ │ ├── EmbedRecordNotFound.tsx │ │ │ ├── EmbedVideo.tsx │ │ │ ├── images │ │ │ │ └── ImageAltAction.tsx │ │ │ └── players │ │ │ │ └── VideoPlayer.tsx │ │ ├── emojis │ │ │ ├── EmojiFlyout.tsx │ │ │ ├── EmojiPicker.tsx │ │ │ └── utils │ │ │ │ ├── database.ts │ │ │ │ └── support.ts │ │ ├── inputs │ │ │ ├── AddPhotoButton.tsx │ │ │ ├── Checkbox.tsx │ │ │ ├── FileInput.tsx │ │ │ ├── FilterBar.tsx │ │ │ ├── Radio.tsx │ │ │ ├── SearchInput.tsx │ │ │ └── SelectInput.tsx │ │ ├── items │ │ │ ├── FeedItem.tsx │ │ │ ├── GalleryItem.tsx │ │ │ ├── ListItem.tsx │ │ │ ├── Notification.tsx │ │ │ ├── Post.tsx │ │ │ ├── PostTreeItem.tsx │ │ │ ├── ProfileItem.tsx │ │ │ └── posts │ │ │ │ ├── PostOverflowAction.tsx │ │ │ │ ├── PostTag.tsx │ │ │ │ ├── ReplyAction.tsx │ │ │ │ └── RepostAction.tsx │ │ ├── lists │ │ │ ├── ListMembersList.tsx │ │ │ ├── ProfileList.tsx │ │ │ ├── TimelineGalleryList.tsx │ │ │ └── TimelineList.tsx │ │ ├── moderation │ │ │ ├── ContentWarning.tsx │ │ │ ├── LabelsOnMe.tsx │ │ │ └── ModerationAlerts.tsx │ │ ├── richtext │ │ │ └── RichtextComposer.tsx │ │ └── views │ │ │ ├── GenericErrorView.tsx │ │ │ ├── PermalinkPost.tsx │ │ │ ├── ProfileHeader.tsx │ │ │ ├── TakingActionNotice.tsx │ │ │ ├── posts │ │ │ └── PostTranslation.tsx │ │ │ ├── profiles │ │ │ ├── ProfileHandleAction.tsx │ │ │ └── ProfileOverflowAction.tsx │ │ │ └── threads │ │ │ ├── FlattenedThread.tsx │ │ │ └── NestedThread.tsx │ ├── globals │ │ ├── modals.tsx │ │ └── shared.ts │ ├── icons │ │ ├── README.md │ │ ├── _icon.tsx │ │ ├── baseline-accessibility.tsx │ │ ├── baseline-account-check.tsx │ │ ├── baseline-account-circle.tsx │ │ ├── baseline-account-switch.tsx │ │ ├── baseline-add-box.tsx │ │ ├── baseline-add-photo-alternate.tsx │ │ ├── baseline-add.tsx │ │ ├── baseline-alternate-email.tsx │ │ ├── baseline-arrow-drop-down.tsx │ │ ├── baseline-arrow-left.tsx │ │ ├── baseline-av-timer.tsx │ │ ├── baseline-back-hand.tsx │ │ ├── baseline-block.tsx │ │ ├── baseline-brightness-medium.tsx │ │ ├── baseline-cell-tower.tsx │ │ ├── baseline-chat-bubble.tsx │ │ ├── baseline-check-all.tsx │ │ ├── baseline-check-box-outline-blank.tsx │ │ ├── baseline-check-box.tsx │ │ ├── baseline-check.tsx │ │ ├── baseline-checkbox-multiple-blank.tsx │ │ ├── baseline-chevron-right.tsx │ │ ├── baseline-close.tsx │ │ ├── baseline-color-lens.tsx │ │ ├── baseline-confirmation-number.tsx │ │ ├── baseline-content-copy.tsx │ │ ├── baseline-copy-all.tsx │ │ ├── baseline-delete.tsx │ │ ├── baseline-download.tsx │ │ ├── baseline-drag-handle.tsx │ │ ├── baseline-drag-indicator.tsx │ │ ├── baseline-edit.tsx │ │ ├── baseline-emoji-emotions.tsx │ │ ├── baseline-error.tsx │ │ ├── baseline-explore.tsx │ │ ├── baseline-favorite.tsx │ │ ├── baseline-feather.tsx │ │ ├── baseline-file.tsx │ │ ├── baseline-filter-alt.tsx │ │ ├── baseline-format-letter-matches.tsx │ │ ├── baseline-format-quote.tsx │ │ ├── baseline-g-translate.tsx │ │ ├── baseline-globe.tsx │ │ ├── baseline-group-off.tsx │ │ ├── baseline-history.tsx │ │ ├── baseline-home.tsx │ │ ├── baseline-image.tsx │ │ ├── baseline-info.tsx │ │ ├── baseline-language.tsx │ │ ├── baseline-launch.tsx │ │ ├── baseline-link.tsx │ │ ├── baseline-list.tsx │ │ ├── baseline-lock.tsx │ │ ├── baseline-menu.tsx │ │ ├── baseline-more-horiz.tsx │ │ ├── baseline-notifications.tsx │ │ ├── baseline-password.tsx │ │ ├── baseline-people.tsx │ │ ├── baseline-person-add.tsx │ │ ├── baseline-person-off.tsx │ │ ├── baseline-person.tsx │ │ ├── baseline-play.tsx │ │ ├── baseline-playlist-add-check.tsx │ │ ├── baseline-playlist-add.tsx │ │ ├── baseline-pound.tsx │ │ ├── baseline-public.tsx │ │ ├── baseline-push-pin.tsx │ │ ├── baseline-refresh.tsx │ │ ├── baseline-repeat-off.tsx │ │ ├── baseline-repeat.tsx │ │ ├── baseline-reply.tsx │ │ ├── baseline-report-problem.tsx │ │ ├── baseline-report.tsx │ │ ├── baseline-search.tsx │ │ ├── baseline-settings.tsx │ │ ├── baseline-share.tsx │ │ ├── baseline-shield.tsx │ │ ├── baseline-swap-vert.tsx │ │ ├── baseline-sync-alt.tsx │ │ ├── baseline-system-update-alt.tsx │ │ ├── baseline-table-column-right-add.tsx │ │ ├── baseline-table-large-add.tsx │ │ ├── baseline-translate.tsx │ │ ├── baseline-unfold-more.tsx │ │ ├── baseline-upload.tsx │ │ ├── baseline-videocam.tsx │ │ ├── baseline-visibility-off.tsx │ │ ├── baseline-visibility.tsx │ │ ├── baseline-volume-off.tsx │ │ ├── baseline-volume-up.tsx │ │ ├── outline-add-box.tsx │ │ ├── outline-add-photo-alternate.tsx │ │ ├── outline-back-hand.tsx │ │ ├── outline-chat-bubble.tsx │ │ ├── outline-cleaning-services.tsx │ │ ├── outline-delete.tsx │ │ ├── outline-door-open.tsx │ │ ├── outline-edit.tsx │ │ ├── outline-emoji-emotions.tsx │ │ ├── outline-error.tsx │ │ ├── outline-explore.tsx │ │ ├── outline-favorite.tsx │ │ ├── outline-filter-alt.tsx │ │ ├── outline-filter-none.tsx │ │ ├── outline-gif-box.tsx │ │ ├── outline-home.tsx │ │ ├── outline-image.tsx │ │ ├── outline-info.tsx │ │ ├── outline-list-box.tsx │ │ ├── outline-mail-add.tsx │ │ ├── outline-mail.tsx │ │ ├── outline-notifications.tsx │ │ ├── outline-people.tsx │ │ ├── outline-person-off.tsx │ │ ├── outline-person.tsx │ │ ├── outline-report-problem.tsx │ │ ├── outline-send.tsx │ │ ├── outline-settings.tsx │ │ ├── outline-shield.tsx │ │ ├── outline-visibility-off.tsx │ │ ├── outline-visibility.tsx │ │ ├── outline-volume-off.tsx │ │ └── outline-volume-up.tsx │ ├── lib │ │ ├── meta.tsx │ │ └── snippet.tsx │ ├── primitives │ │ ├── boxed-icon-button.ts │ │ ├── button.ts │ │ ├── dialog.ts │ │ ├── icon-button.ts │ │ ├── input.ts │ │ ├── interactive.ts │ │ ├── list-box.ts │ │ ├── menu.ts │ │ ├── select.ts │ │ └── textarea.ts │ └── styles │ │ └── theme.css ├── desktop │ ├── .env │ ├── components │ │ ├── composer │ │ │ ├── ComposerContext.tsx │ │ │ ├── ComposerContextProvider.tsx │ │ │ ├── ComposerPane.tsx │ │ │ ├── DummyPost.tsx │ │ │ ├── TagInput.tsx │ │ │ ├── actions │ │ │ │ ├── ContentWarningAction.tsx │ │ │ │ ├── PostLanguageAction.tsx │ │ │ │ └── ThreadgateAction.tsx │ │ │ ├── dialogs │ │ │ │ ├── CustomPostLanguageDialog.tsx │ │ │ │ ├── ImageAltDialog.tsx │ │ │ │ ├── ImageAltReminderDialog.tsx │ │ │ │ ├── ViewDraftsDialog.tsx │ │ │ │ └── drafts │ │ │ │ │ ├── ApplyDraftDialog.tsx │ │ │ │ │ ├── DeleteDraftDialog.tsx │ │ │ │ │ ├── RenameDraftDialog.tsx │ │ │ │ │ └── SaveDraftDialog.tsx │ │ │ └── utils │ │ │ │ ├── cid.ts │ │ │ │ ├── draft-db.ts │ │ │ │ ├── idb.ts │ │ │ │ └── state.ts │ │ ├── dialogs │ │ │ └── DateTimeDialog.tsx │ │ ├── flyouts │ │ │ ├── SearchFlyout.tsx │ │ │ ├── SelectAction.tsx │ │ │ ├── SwitchAccountAction.tsx │ │ │ └── SwitchDeckAction.tsx │ │ ├── messages │ │ │ ├── MessagesContext.tsx │ │ │ ├── MessagesContextProvider.tsx │ │ │ ├── MessagesPane.tsx │ │ │ ├── components │ │ │ │ ├── ChannelHeader.tsx │ │ │ │ ├── ChannelItem.tsx │ │ │ │ ├── ChannelMessages.tsx │ │ │ │ ├── ChannelOverflowAction.tsx │ │ │ │ ├── ChatAccountAction.tsx │ │ │ │ ├── Composition.tsx │ │ │ │ ├── CompositionBlocked.tsx │ │ │ │ ├── CompositionDisabled.tsx │ │ │ │ ├── FirehoseStatus.tsx │ │ │ │ ├── MessageDivider.tsx │ │ │ │ ├── MessageItem.tsx │ │ │ │ ├── MessageOverflowAction.tsx │ │ │ │ └── NoopLinkingProvider.tsx │ │ │ ├── const.ts │ │ │ ├── contexts │ │ │ │ ├── channel.tsx │ │ │ │ ├── chat.tsx │ │ │ │ ├── router-view.tsx │ │ │ │ └── router.tsx │ │ │ ├── utils │ │ │ │ ├── chat.ts │ │ │ │ └── intl.ts │ │ │ └── views │ │ │ │ ├── ChannelListingView.tsx │ │ │ │ ├── ChannelView.tsx │ │ │ │ ├── NewChannelView.tsx │ │ │ │ ├── ResolveChannelView.tsx │ │ │ │ └── SettingsView.tsx │ │ ├── panes │ │ │ ├── Pane.tsx │ │ │ ├── PaneAside.tsx │ │ │ ├── PaneBody.tsx │ │ │ ├── PaneContext.tsx │ │ │ ├── PaneContextProvider.tsx │ │ │ ├── PaneDialog.tsx │ │ │ ├── PaneDialogHeader.tsx │ │ │ ├── PaneFallback.tsx │ │ │ ├── PaneLinkingProvider.tsx │ │ │ ├── PaneRouter.tsx │ │ │ ├── dialogs │ │ │ │ ├── FeedLikedByPaneDialog.tsx │ │ │ │ ├── FeedPaneDialog.tsx │ │ │ │ ├── HashtagPaneDialog.tsx │ │ │ │ ├── ListMembersPaneDialog.tsx │ │ │ │ ├── ListPaneDialog.tsx │ │ │ │ ├── ListSettingsPaneDialog.tsx │ │ │ │ ├── PostLikedByPaneDialog.tsx │ │ │ │ ├── PostQuotedByPaneDialog.tsx │ │ │ │ ├── PostRepostedByPaneDialog.tsx │ │ │ │ ├── ProfileFeedsPaneDialog.tsx │ │ │ │ ├── ProfileFollowersPaneDialog.tsx │ │ │ │ ├── ProfileFollowsPaneDialog.tsx │ │ │ │ ├── ProfileKnownFollowersPaneDialog.tsx │ │ │ │ ├── ProfileListsPaneDialog.tsx │ │ │ │ ├── ProfilePaneDialog.tsx │ │ │ │ ├── ProfileSearchPaneDialog.tsx │ │ │ │ ├── ProfileSettingsPaneDialog.tsx │ │ │ │ └── ThreadPaneDialog.tsx │ │ │ ├── partials │ │ │ │ ├── FeedHeader.tsx │ │ │ │ ├── ListHeader.tsx │ │ │ │ ├── ThreadView.tsx │ │ │ │ └── actions │ │ │ │ │ ├── FeedOverflowAction.tsx │ │ │ │ │ └── ListOverflowAction.tsx │ │ │ ├── settings │ │ │ │ ├── CustomFeedPaneSettings.tsx │ │ │ │ ├── CustomListPaneSettings.tsx │ │ │ │ ├── GenericPaneSettings.tsx │ │ │ │ ├── HomePaneSettings.tsx │ │ │ │ ├── NotificationsPaneSettings.tsx │ │ │ │ ├── ProfilePaneTabSettings.tsx │ │ │ │ └── SearchPaneSettings.tsx │ │ │ └── views │ │ │ │ ├── CustomFeedPane.tsx │ │ │ │ ├── CustomListPane.tsx │ │ │ │ ├── HomePane.tsx │ │ │ │ ├── NotificationsPane.tsx │ │ │ │ ├── ProfilePane.tsx │ │ │ │ ├── SearchPane.tsx │ │ │ │ └── ThreadPane.tsx │ │ ├── settings │ │ │ ├── AddAccountDialog.tsx │ │ │ ├── AddDeckDialog.tsx │ │ │ ├── AddPaneDialog.tsx │ │ │ ├── ChooseServiceDialog.tsx │ │ │ ├── EditDeckDialog.tsx │ │ │ ├── SettingsDialog.tsx │ │ │ ├── pane-creators │ │ │ │ ├── CustomFeedPaneCreator.tsx │ │ │ │ ├── CustomListPaneCreator.tsx │ │ │ │ ├── ProfilePaneCreator.tsx │ │ │ │ └── types.ts │ │ │ └── settings-views │ │ │ │ ├── AboutView.tsx │ │ │ │ ├── AccountsView.tsx │ │ │ │ ├── ContentView.tsx │ │ │ │ ├── ImportExportSettingsView.tsx │ │ │ │ ├── InterfaceView.tsx │ │ │ │ ├── KeywordFiltersView.tsx │ │ │ │ ├── ModerationView.tsx │ │ │ │ ├── SettingsRouterView.tsx │ │ │ │ ├── _components.tsx │ │ │ │ ├── _router.tsx │ │ │ │ ├── account │ │ │ │ └── AccountConfigView.tsx │ │ │ │ ├── content-filters │ │ │ │ ├── HiddenRepostersView.tsx │ │ │ │ ├── LabelerConfigView.tsx │ │ │ │ ├── LabelerPopularView.tsx │ │ │ │ ├── TemporaryMutesView.tsx │ │ │ │ └── components │ │ │ │ │ └── LabelItem.tsx │ │ │ │ ├── import-export │ │ │ │ └── ImportSettingsView.tsx │ │ │ │ ├── keyword-filters │ │ │ │ └── KeywordFilterFormView.tsx │ │ │ │ └── languages │ │ │ │ ├── AdditionalLanguageView.tsx │ │ │ │ └── ExcludedTranslationView.tsx │ │ └── views │ │ │ └── Onboarding.tsx │ ├── globals │ │ ├── events.ts │ │ ├── panes.tsx │ │ ├── query.ts │ │ └── settings.ts │ ├── index.html │ ├── lib │ │ ├── messages │ │ │ ├── channel-listing.ts │ │ │ ├── channel.ts │ │ │ ├── firehose.ts │ │ │ └── lru.ts │ │ ├── scheduled │ │ │ └── index.ts │ │ └── settings │ │ │ ├── backup.ts │ │ │ └── onboarding.ts │ ├── main.tsx │ ├── public │ │ ├── _routes.json │ │ └── favicon.png │ ├── styles │ │ └── tailwind.css │ ├── utils │ │ └── dnd.ts │ └── views │ │ ├── DecksView.tsx │ │ ├── EmptyView.tsx │ │ └── Layout.tsx ├── env.d.ts ├── package.json ├── postcss.config.js ├── scripts │ ├── publish-prod.sh │ └── update-labeler-list.js ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── utils │ ├── dequal.ts │ ├── hooks.ts │ ├── image.ts │ ├── image │ │ └── exif-remover.ts │ ├── immer.ts │ ├── input.ts │ ├── interaction.ts │ ├── intersection-observer.ts │ ├── intl │ │ ├── bytes.ts │ │ ├── display-names.ts │ │ ├── languages.ts │ │ ├── number.ts │ │ └── time.ts │ ├── media-query.ts │ ├── misc.ts │ ├── refs.ts │ ├── service-worker.ts │ ├── sets.ts │ ├── signals.ts │ ├── stack.ts │ └── storage.ts └── vite.config.ts ├── mise.toml ├── package.json ├── packages ├── emoji-db │ ├── README.md │ ├── jsconfig.json │ ├── lib │ │ ├── Database.js │ │ ├── constants.js │ │ ├── data.js │ │ ├── idb-interface.js │ │ ├── idb-lifecycle.js │ │ ├── idb-util.js │ │ ├── migrations.js │ │ └── utils │ │ │ ├── ajax.js │ │ │ ├── assertEmojiData.js │ │ │ ├── cleanEmoji.js │ │ │ ├── extractTokens.js │ │ │ ├── findCommonMembers.js │ │ │ ├── jsonChecksum.js │ │ │ ├── minBy.js │ │ │ ├── normalizeTokens.js │ │ │ ├── requiredKeys.js │ │ │ ├── transformEmojiData.js │ │ │ ├── trie.js │ │ │ ├── uniqBy.js │ │ │ └── uniqEmoji.js │ ├── package.json │ └── types │ │ └── database.d.ts ├── solid-freeze │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── jsconfig.json │ ├── lib │ │ └── index.tsx │ ├── package.json │ ├── src │ │ └── main.jsx │ ├── tsconfig.json │ └── vite.config.ts ├── solid-page-router │ ├── README.md │ ├── jsconfig.json │ ├── lib │ │ ├── index.tsx │ │ └── routing.ts │ ├── package.json │ ├── tsconfig.json │ └── vite.config.ts ├── solid-query │ ├── .gitignore │ ├── README.md │ ├── jsconfig.json │ ├── lib │ │ ├── QueryClientProvider.tsx │ │ ├── createBaseQuery.ts │ │ ├── createInfiniteQuery.ts │ │ ├── createMutation.ts │ │ ├── createQueries.ts │ │ ├── createQuery.ts │ │ ├── index.ts │ │ ├── notifyManager.ts │ │ ├── types.ts │ │ ├── useIsFetching.ts │ │ ├── useIsMutating.ts │ │ ├── useMutationState.ts │ │ └── utils.ts │ ├── package.json │ ├── tsconfig.json │ └── vite.config.ts └── validity │ ├── README.md │ ├── lib │ ├── index.ts │ ├── methods │ │ ├── chain.ts │ │ ├── pipe.ts │ │ └── union.ts │ ├── parse.ts │ ├── requirements │ │ ├── endsWith.ts │ │ ├── length.ts │ │ ├── regex.ts │ │ └── startsWith.ts │ ├── schemas │ │ ├── array.ts │ │ ├── bigint.ts │ │ ├── boolean.ts │ │ ├── literal.ts │ │ ├── never.ts │ │ ├── null.ts │ │ ├── nullable.ts │ │ ├── number.ts │ │ ├── object.ts │ │ ├── optional.ts │ │ ├── record.ts │ │ ├── string.ts │ │ ├── undefined.ts │ │ └── unknown.ts │ ├── types.ts │ └── utils.ts │ ├── package.json │ └── tsconfig.json ├── patches ├── @tanstack__query-core@5.17.19.patch ├── solid-js@1.9.10.patch ├── solid-textarea-autosize@0.0.5.patch ├── vite-plugin-pwa@1.1.0.patch └── workbox-precaching@7.3.0.patch ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/.editorconfig -------------------------------------------------------------------------------- /.forgejo/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/.forgejo/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- 1 | Mary 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/README.md -------------------------------------------------------------------------------- /app/.npmrc: -------------------------------------------------------------------------------- 1 | @jsr:registry=https://npm.jsr.io 2 | -------------------------------------------------------------------------------- /app/api/api-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/api-env.ts -------------------------------------------------------------------------------- /app/api/classes/multiagent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/classes/multiagent.ts -------------------------------------------------------------------------------- /app/api/did.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/did.ts -------------------------------------------------------------------------------- /app/api/display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/display.ts -------------------------------------------------------------------------------- /app/api/globals/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/globals/agent.ts -------------------------------------------------------------------------------- /app/api/globals/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/globals/defaults.ts -------------------------------------------------------------------------------- /app/api/globals/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/globals/platform.ts -------------------------------------------------------------------------------- /app/api/models/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/models/notifications.ts -------------------------------------------------------------------------------- /app/api/models/threads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/models/threads.ts -------------------------------------------------------------------------------- /app/api/models/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/models/timeline.ts -------------------------------------------------------------------------------- /app/api/moderation/entities/basic-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/moderation/entities/basic-profile.ts -------------------------------------------------------------------------------- /app/api/moderation/entities/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/moderation/entities/post.ts -------------------------------------------------------------------------------- /app/api/moderation/entities/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/moderation/entities/profile.ts -------------------------------------------------------------------------------- /app/api/moderation/entities/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/moderation/entities/quote.ts -------------------------------------------------------------------------------- /app/api/moderation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/moderation/index.ts -------------------------------------------------------------------------------- /app/api/moderation/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/moderation/service.ts -------------------------------------------------------------------------------- /app/api/moderation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/moderation/utils.ts -------------------------------------------------------------------------------- /app/api/mutations/block-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/block-profile.ts -------------------------------------------------------------------------------- /app/api/mutations/follow-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/follow-profile.ts -------------------------------------------------------------------------------- /app/api/mutations/like-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/like-feed.ts -------------------------------------------------------------------------------- /app/api/mutations/like-post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/like-post.ts -------------------------------------------------------------------------------- /app/api/mutations/mute-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/mute-profile.ts -------------------------------------------------------------------------------- /app/api/mutations/mute-thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/mute-thread.ts -------------------------------------------------------------------------------- /app/api/mutations/repost-post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/repost-post.ts -------------------------------------------------------------------------------- /app/api/mutations/subscribe-list-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/subscribe-list-block.ts -------------------------------------------------------------------------------- /app/api/mutations/subscribe-list-mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/subscribe-list-mute.ts -------------------------------------------------------------------------------- /app/api/mutations/update-notifications-seen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/update-notifications-seen.ts -------------------------------------------------------------------------------- /app/api/mutations/upload-blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/upload-blob.ts -------------------------------------------------------------------------------- /app/api/mutations/upsert-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/mutations/upsert-profile.ts -------------------------------------------------------------------------------- /app/api/queries/_did.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/_did.ts -------------------------------------------------------------------------------- /app/api/queries/get-feed-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-feed-info.ts -------------------------------------------------------------------------------- /app/api/queries/get-labeler-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-labeler-info.ts -------------------------------------------------------------------------------- /app/api/queries/get-labeler-popular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-labeler-popular.ts -------------------------------------------------------------------------------- /app/api/queries/get-likes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-likes.ts -------------------------------------------------------------------------------- /app/api/queries/get-link-meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-link-meta.ts -------------------------------------------------------------------------------- /app/api/queries/get-list-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-list-info.ts -------------------------------------------------------------------------------- /app/api/queries/get-list-members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-list-members.ts -------------------------------------------------------------------------------- /app/api/queries/get-list-memberships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-list-memberships.ts -------------------------------------------------------------------------------- /app/api/queries/get-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-notifications.ts -------------------------------------------------------------------------------- /app/api/queries/get-post-reposts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-post-reposts.ts -------------------------------------------------------------------------------- /app/api/queries/get-post-thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-post-thread.ts -------------------------------------------------------------------------------- /app/api/queries/get-post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-post.ts -------------------------------------------------------------------------------- /app/api/queries/get-profile-feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-profile-feeds.ts -------------------------------------------------------------------------------- /app/api/queries/get-profile-followers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-profile-followers.ts -------------------------------------------------------------------------------- /app/api/queries/get-profile-follows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-profile-follows.ts -------------------------------------------------------------------------------- /app/api/queries/get-profile-known-followers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-profile-known-followers.ts -------------------------------------------------------------------------------- /app/api/queries/get-profile-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-profile-lists.ts -------------------------------------------------------------------------------- /app/api/queries/get-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-profile.ts -------------------------------------------------------------------------------- /app/api/queries/get-resolved-handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-resolved-handle.ts -------------------------------------------------------------------------------- /app/api/queries/get-suggested-follows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-suggested-follows.ts -------------------------------------------------------------------------------- /app/api/queries/get-timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-timeline.ts -------------------------------------------------------------------------------- /app/api/queries/get-translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/get-translation.ts -------------------------------------------------------------------------------- /app/api/queries/search-profiles-typeahead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/search-profiles-typeahead.ts -------------------------------------------------------------------------------- /app/api/queries/search-profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/queries/search-profiles.ts -------------------------------------------------------------------------------- /app/api/richtext/composer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/composer.ts -------------------------------------------------------------------------------- /app/api/richtext/graphemer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/graphemer.ts -------------------------------------------------------------------------------- /app/api/richtext/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/intl.ts -------------------------------------------------------------------------------- /app/api/richtext/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/renderer.ts -------------------------------------------------------------------------------- /app/api/richtext/segmentize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/segmentize.ts -------------------------------------------------------------------------------- /app/api/richtext/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/types.ts -------------------------------------------------------------------------------- /app/api/richtext/unicode-segmenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/unicode-segmenter.ts -------------------------------------------------------------------------------- /app/api/richtext/unicode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/unicode.ts -------------------------------------------------------------------------------- /app/api/richtext/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/richtext/utils.ts -------------------------------------------------------------------------------- /app/api/stores/convo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/stores/convo.ts -------------------------------------------------------------------------------- /app/api/stores/feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/stores/feeds.ts -------------------------------------------------------------------------------- /app/api/stores/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/stores/lists.ts -------------------------------------------------------------------------------- /app/api/stores/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/stores/posts.ts -------------------------------------------------------------------------------- /app/api/stores/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/stores/profiles.ts -------------------------------------------------------------------------------- /app/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/types.ts -------------------------------------------------------------------------------- /app/api/updaters/delete-post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/updaters/delete-post.ts -------------------------------------------------------------------------------- /app/api/updaters/timeline-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/updaters/timeline-filter.ts -------------------------------------------------------------------------------- /app/api/utils/batch-fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/utils/batch-fetch.ts -------------------------------------------------------------------------------- /app/api/utils/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/utils/links.ts -------------------------------------------------------------------------------- /app/api/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/utils/misc.ts -------------------------------------------------------------------------------- /app/api/utils/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/utils/post.ts -------------------------------------------------------------------------------- /app/api/utils/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/utils/query.ts -------------------------------------------------------------------------------- /app/api/utils/toggle-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/api/utils/toggle-mutation.ts -------------------------------------------------------------------------------- /app/com/assets/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/assets/banner.jpg -------------------------------------------------------------------------------- /app/com/assets/default-feed-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/assets/default-feed-avatar.svg -------------------------------------------------------------------------------- /app/com/assets/default-labeler-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/assets/default-labeler-avatar.svg -------------------------------------------------------------------------------- /app/com/assets/default-list-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/assets/default-list-avatar.svg -------------------------------------------------------------------------------- /app/com/assets/default-user-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/assets/default-user-avatar.svg -------------------------------------------------------------------------------- /app/com/components/BlobImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/BlobImage.tsx -------------------------------------------------------------------------------- /app/com/components/CircularProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/CircularProgress.tsx -------------------------------------------------------------------------------- /app/com/components/Flyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/Flyout.tsx -------------------------------------------------------------------------------- /app/com/components/Keyed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/Keyed.ts -------------------------------------------------------------------------------- /app/com/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/Link.tsx -------------------------------------------------------------------------------- /app/com/components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/List.tsx -------------------------------------------------------------------------------- /app/com/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/Modal.tsx -------------------------------------------------------------------------------- /app/com/components/ProfileFollowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/ProfileFollowButton.tsx -------------------------------------------------------------------------------- /app/com/components/RichTextRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/RichTextRenderer.tsx -------------------------------------------------------------------------------- /app/com/components/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/Tab.tsx -------------------------------------------------------------------------------- /app/com/components/TabbedPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/TabbedPanel.tsx -------------------------------------------------------------------------------- /app/com/components/TimeAgo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/TimeAgo.tsx -------------------------------------------------------------------------------- /app/com/components/VirtualContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/VirtualContainer.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/BlockConfirmDialog.desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/BlockConfirmDialog.desktop.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/BlockConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/BlockConfirmDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/ConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/ConfirmDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/DeletePostConfirmDialog.desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/DeletePostConfirmDialog.desktop.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/DeletePostConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/DeletePostConfirmDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/DialogOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/DialogOverlay.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/HandleHistoryDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/HandleHistoryDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/ImageViewerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/ImageViewerDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/LabelDetailsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/LabelDetailsDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/LabelsOnMeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/LabelsOnMeDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/LinkWarningDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/LinkWarningDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/MuteConfirmDialog.desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/MuteConfirmDialog.desktop.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/MuteConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/MuteConfirmDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/ReportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/ReportDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/SilenceConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/SilenceConfirmDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/lists/AddListDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/lists/AddListDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/lists/AddProfileInListDialog.desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/lists/AddProfileInListDialog.desktop.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/lists/AddProfileInListDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/lists/AddProfileInListDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/lists/CloneListMembersDialog.desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/lists/CloneListMembersDialog.desktop.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/lists/CloneListMembersDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/lists/CloneListMembersDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/lists/PruneListOrphanDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/lists/PruneListOrphanDialog.tsx -------------------------------------------------------------------------------- /app/com/components/dialogs/lists/SubscribeListDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/dialogs/lists/SubscribeListDialog.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/Embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/Embed.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/EmbedFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/EmbedFeed.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/EmbedImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/EmbedImage.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/EmbedLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/EmbedLink.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/EmbedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/EmbedList.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/EmbedQuote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/EmbedQuote.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/EmbedRecordBlocked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/EmbedRecordBlocked.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/EmbedRecordNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/EmbedRecordNotFound.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/EmbedVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/EmbedVideo.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/images/ImageAltAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/images/ImageAltAction.tsx -------------------------------------------------------------------------------- /app/com/components/embeds/players/VideoPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/embeds/players/VideoPlayer.tsx -------------------------------------------------------------------------------- /app/com/components/emojis/EmojiFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/emojis/EmojiFlyout.tsx -------------------------------------------------------------------------------- /app/com/components/emojis/EmojiPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/emojis/EmojiPicker.tsx -------------------------------------------------------------------------------- /app/com/components/emojis/utils/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/emojis/utils/database.ts -------------------------------------------------------------------------------- /app/com/components/emojis/utils/support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/emojis/utils/support.ts -------------------------------------------------------------------------------- /app/com/components/inputs/AddPhotoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/inputs/AddPhotoButton.tsx -------------------------------------------------------------------------------- /app/com/components/inputs/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/inputs/Checkbox.tsx -------------------------------------------------------------------------------- /app/com/components/inputs/FileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/inputs/FileInput.tsx -------------------------------------------------------------------------------- /app/com/components/inputs/FilterBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/inputs/FilterBar.tsx -------------------------------------------------------------------------------- /app/com/components/inputs/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/inputs/Radio.tsx -------------------------------------------------------------------------------- /app/com/components/inputs/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/inputs/SearchInput.tsx -------------------------------------------------------------------------------- /app/com/components/inputs/SelectInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/inputs/SelectInput.tsx -------------------------------------------------------------------------------- /app/com/components/items/FeedItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/FeedItem.tsx -------------------------------------------------------------------------------- /app/com/components/items/GalleryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/GalleryItem.tsx -------------------------------------------------------------------------------- /app/com/components/items/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/ListItem.tsx -------------------------------------------------------------------------------- /app/com/components/items/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/Notification.tsx -------------------------------------------------------------------------------- /app/com/components/items/Post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/Post.tsx -------------------------------------------------------------------------------- /app/com/components/items/PostTreeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/PostTreeItem.tsx -------------------------------------------------------------------------------- /app/com/components/items/ProfileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/ProfileItem.tsx -------------------------------------------------------------------------------- /app/com/components/items/posts/PostOverflowAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/posts/PostOverflowAction.tsx -------------------------------------------------------------------------------- /app/com/components/items/posts/PostTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/posts/PostTag.tsx -------------------------------------------------------------------------------- /app/com/components/items/posts/ReplyAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/posts/ReplyAction.tsx -------------------------------------------------------------------------------- /app/com/components/items/posts/RepostAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/items/posts/RepostAction.tsx -------------------------------------------------------------------------------- /app/com/components/lists/ListMembersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/lists/ListMembersList.tsx -------------------------------------------------------------------------------- /app/com/components/lists/ProfileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/lists/ProfileList.tsx -------------------------------------------------------------------------------- /app/com/components/lists/TimelineGalleryList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/lists/TimelineGalleryList.tsx -------------------------------------------------------------------------------- /app/com/components/lists/TimelineList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/lists/TimelineList.tsx -------------------------------------------------------------------------------- /app/com/components/moderation/ContentWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/moderation/ContentWarning.tsx -------------------------------------------------------------------------------- /app/com/components/moderation/LabelsOnMe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/moderation/LabelsOnMe.tsx -------------------------------------------------------------------------------- /app/com/components/moderation/ModerationAlerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/moderation/ModerationAlerts.tsx -------------------------------------------------------------------------------- /app/com/components/richtext/RichtextComposer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/richtext/RichtextComposer.tsx -------------------------------------------------------------------------------- /app/com/components/views/GenericErrorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/GenericErrorView.tsx -------------------------------------------------------------------------------- /app/com/components/views/PermalinkPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/PermalinkPost.tsx -------------------------------------------------------------------------------- /app/com/components/views/ProfileHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/ProfileHeader.tsx -------------------------------------------------------------------------------- /app/com/components/views/TakingActionNotice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/TakingActionNotice.tsx -------------------------------------------------------------------------------- /app/com/components/views/posts/PostTranslation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/posts/PostTranslation.tsx -------------------------------------------------------------------------------- /app/com/components/views/profiles/ProfileHandleAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/profiles/ProfileHandleAction.tsx -------------------------------------------------------------------------------- /app/com/components/views/profiles/ProfileOverflowAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/profiles/ProfileOverflowAction.tsx -------------------------------------------------------------------------------- /app/com/components/views/threads/FlattenedThread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/threads/FlattenedThread.tsx -------------------------------------------------------------------------------- /app/com/components/views/threads/NestedThread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/components/views/threads/NestedThread.tsx -------------------------------------------------------------------------------- /app/com/globals/modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/globals/modals.tsx -------------------------------------------------------------------------------- /app/com/globals/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/globals/shared.ts -------------------------------------------------------------------------------- /app/com/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/README.md -------------------------------------------------------------------------------- /app/com/icons/_icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/_icon.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-accessibility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-accessibility.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-account-check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-account-check.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-account-circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-account-circle.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-account-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-account-switch.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-add-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-add-box.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-add-photo-alternate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-add-photo-alternate.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-add.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-alternate-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-alternate-email.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-arrow-drop-down.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-arrow-drop-down.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-arrow-left.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-arrow-left.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-av-timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-av-timer.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-back-hand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-back-hand.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-block.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-brightness-medium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-brightness-medium.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-cell-tower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-cell-tower.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-chat-bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-chat-bubble.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-check-all.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-check-all.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-check-box-outline-blank.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-check-box-outline-blank.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-check-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-check-box.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-check.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-checkbox-multiple-blank.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-checkbox-multiple-blank.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-chevron-right.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-chevron-right.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-close.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-color-lens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-color-lens.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-confirmation-number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-confirmation-number.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-content-copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-content-copy.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-copy-all.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-copy-all.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-delete.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-download.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-drag-handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-drag-handle.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-drag-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-drag-indicator.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-edit.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-emoji-emotions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-emoji-emotions.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-error.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-explore.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-favorite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-favorite.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-feather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-feather.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-file.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-filter-alt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-filter-alt.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-format-letter-matches.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-format-letter-matches.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-format-quote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-format-quote.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-g-translate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-g-translate.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-globe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-globe.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-group-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-group-off.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-history.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-home.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-image.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-info.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-language.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-launch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-launch.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-link.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-list.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-lock.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-menu.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-more-horiz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-more-horiz.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-notifications.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-password.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-people.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-people.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-person-add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-person-add.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-person-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-person-off.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-person.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-person.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-play.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-playlist-add-check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-playlist-add-check.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-playlist-add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-playlist-add.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-pound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-pound.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-public.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-public.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-push-pin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-push-pin.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-refresh.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-repeat-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-repeat-off.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-repeat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-repeat.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-reply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-reply.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-report-problem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-report-problem.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-report.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-search.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-settings.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-share.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-shield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-shield.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-swap-vert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-swap-vert.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-sync-alt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-sync-alt.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-system-update-alt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-system-update-alt.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-table-column-right-add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-table-column-right-add.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-table-large-add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-table-large-add.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-translate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-translate.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-unfold-more.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-unfold-more.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-upload.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-videocam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-videocam.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-visibility-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-visibility-off.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-visibility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-visibility.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-volume-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-volume-off.tsx -------------------------------------------------------------------------------- /app/com/icons/baseline-volume-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/baseline-volume-up.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-add-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-add-box.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-add-photo-alternate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-add-photo-alternate.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-back-hand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-back-hand.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-chat-bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-chat-bubble.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-cleaning-services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-cleaning-services.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-delete.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-door-open.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-door-open.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-edit.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-emoji-emotions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-emoji-emotions.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-error.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-explore.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-favorite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-favorite.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-filter-alt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-filter-alt.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-filter-none.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-filter-none.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-gif-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-gif-box.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-home.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-image.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-info.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-list-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-list-box.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-mail-add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-mail-add.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-mail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-mail.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-notifications.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-people.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-people.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-person-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-person-off.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-person.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-person.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-report-problem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-report-problem.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-send.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-settings.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-shield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-shield.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-visibility-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-visibility-off.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-visibility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-visibility.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-volume-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-volume-off.tsx -------------------------------------------------------------------------------- /app/com/icons/outline-volume-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/icons/outline-volume-up.tsx -------------------------------------------------------------------------------- /app/com/lib/meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/lib/meta.tsx -------------------------------------------------------------------------------- /app/com/lib/snippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/lib/snippet.tsx -------------------------------------------------------------------------------- /app/com/primitives/boxed-icon-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/boxed-icon-button.ts -------------------------------------------------------------------------------- /app/com/primitives/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/button.ts -------------------------------------------------------------------------------- /app/com/primitives/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/dialog.ts -------------------------------------------------------------------------------- /app/com/primitives/icon-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/icon-button.ts -------------------------------------------------------------------------------- /app/com/primitives/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/input.ts -------------------------------------------------------------------------------- /app/com/primitives/interactive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/interactive.ts -------------------------------------------------------------------------------- /app/com/primitives/list-box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/list-box.ts -------------------------------------------------------------------------------- /app/com/primitives/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/menu.ts -------------------------------------------------------------------------------- /app/com/primitives/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/select.ts -------------------------------------------------------------------------------- /app/com/primitives/textarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/primitives/textarea.ts -------------------------------------------------------------------------------- /app/com/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/com/styles/theme.css -------------------------------------------------------------------------------- /app/desktop/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/.env -------------------------------------------------------------------------------- /app/desktop/components/composer/ComposerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/ComposerContext.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/ComposerContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/ComposerContextProvider.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/ComposerPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/ComposerPane.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/DummyPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/DummyPost.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/TagInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/TagInput.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/actions/ContentWarningAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/actions/ContentWarningAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/actions/PostLanguageAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/actions/PostLanguageAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/actions/ThreadgateAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/actions/ThreadgateAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/dialogs/CustomPostLanguageDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/dialogs/CustomPostLanguageDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/dialogs/ImageAltDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/dialogs/ImageAltDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/dialogs/ImageAltReminderDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/dialogs/ImageAltReminderDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/dialogs/ViewDraftsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/dialogs/ViewDraftsDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/dialogs/drafts/ApplyDraftDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/dialogs/drafts/ApplyDraftDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/dialogs/drafts/DeleteDraftDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/dialogs/drafts/DeleteDraftDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/dialogs/drafts/RenameDraftDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/dialogs/drafts/RenameDraftDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/dialogs/drafts/SaveDraftDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/dialogs/drafts/SaveDraftDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/composer/utils/cid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/utils/cid.ts -------------------------------------------------------------------------------- /app/desktop/components/composer/utils/draft-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/utils/draft-db.ts -------------------------------------------------------------------------------- /app/desktop/components/composer/utils/idb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/utils/idb.ts -------------------------------------------------------------------------------- /app/desktop/components/composer/utils/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/composer/utils/state.ts -------------------------------------------------------------------------------- /app/desktop/components/dialogs/DateTimeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/dialogs/DateTimeDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/flyouts/SearchFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/flyouts/SearchFlyout.tsx -------------------------------------------------------------------------------- /app/desktop/components/flyouts/SelectAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/flyouts/SelectAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/flyouts/SwitchAccountAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/flyouts/SwitchAccountAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/flyouts/SwitchDeckAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/flyouts/SwitchDeckAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/MessagesContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/MessagesContext.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/MessagesContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/MessagesContextProvider.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/MessagesPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/MessagesPane.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/ChannelHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/ChannelHeader.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/ChannelItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/ChannelItem.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/ChannelMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/ChannelMessages.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/ChannelOverflowAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/ChannelOverflowAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/ChatAccountAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/ChatAccountAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/Composition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/Composition.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/CompositionBlocked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/CompositionBlocked.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/CompositionDisabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/CompositionDisabled.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/FirehoseStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/FirehoseStatus.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/MessageDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/MessageDivider.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/MessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/MessageItem.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/MessageOverflowAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/MessageOverflowAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/components/NoopLinkingProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/components/NoopLinkingProvider.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/const.ts -------------------------------------------------------------------------------- /app/desktop/components/messages/contexts/channel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/contexts/channel.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/contexts/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/contexts/chat.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/contexts/router-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/contexts/router-view.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/contexts/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/contexts/router.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/utils/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/utils/chat.ts -------------------------------------------------------------------------------- /app/desktop/components/messages/utils/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/utils/intl.ts -------------------------------------------------------------------------------- /app/desktop/components/messages/views/ChannelListingView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/views/ChannelListingView.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/views/ChannelView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/views/ChannelView.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/views/NewChannelView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/views/NewChannelView.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/views/ResolveChannelView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/views/ResolveChannelView.tsx -------------------------------------------------------------------------------- /app/desktop/components/messages/views/SettingsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/messages/views/SettingsView.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/Pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/Pane.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneAside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneAside.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneBody.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneContext.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneContextProvider.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneDialogHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneDialogHeader.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneFallback.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneLinkingProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneLinkingProvider.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/PaneRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/PaneRouter.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/FeedLikedByPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/FeedLikedByPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/FeedPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/FeedPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/HashtagPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/HashtagPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ListMembersPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ListMembersPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ListPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ListPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ListSettingsPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ListSettingsPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/PostLikedByPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/PostLikedByPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/PostQuotedByPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/PostQuotedByPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/PostRepostedByPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/PostRepostedByPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ProfileFeedsPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ProfileFeedsPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ProfileFollowersPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ProfileFollowersPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ProfileFollowsPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ProfileFollowsPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ProfileKnownFollowersPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ProfileKnownFollowersPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ProfileListsPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ProfileListsPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ProfilePaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ProfilePaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ProfileSearchPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ProfileSearchPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ProfileSettingsPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ProfileSettingsPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/dialogs/ThreadPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/dialogs/ThreadPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/partials/FeedHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/partials/FeedHeader.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/partials/ListHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/partials/ListHeader.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/partials/ThreadView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/partials/ThreadView.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/partials/actions/FeedOverflowAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/partials/actions/FeedOverflowAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/partials/actions/ListOverflowAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/partials/actions/ListOverflowAction.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/settings/CustomFeedPaneSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/settings/CustomFeedPaneSettings.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/settings/CustomListPaneSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/settings/CustomListPaneSettings.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/settings/GenericPaneSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/settings/GenericPaneSettings.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/settings/HomePaneSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/settings/HomePaneSettings.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/settings/NotificationsPaneSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/settings/NotificationsPaneSettings.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/settings/ProfilePaneTabSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/settings/ProfilePaneTabSettings.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/settings/SearchPaneSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/settings/SearchPaneSettings.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/views/CustomFeedPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/views/CustomFeedPane.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/views/CustomListPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/views/CustomListPane.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/views/HomePane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/views/HomePane.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/views/NotificationsPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/views/NotificationsPane.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/views/ProfilePane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/views/ProfilePane.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/views/SearchPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/views/SearchPane.tsx -------------------------------------------------------------------------------- /app/desktop/components/panes/views/ThreadPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/panes/views/ThreadPane.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/AddAccountDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/AddAccountDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/AddDeckDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/AddDeckDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/AddPaneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/AddPaneDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/ChooseServiceDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/ChooseServiceDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/EditDeckDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/EditDeckDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/SettingsDialog.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/pane-creators/CustomFeedPaneCreator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/pane-creators/CustomFeedPaneCreator.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/pane-creators/CustomListPaneCreator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/pane-creators/CustomListPaneCreator.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/pane-creators/ProfilePaneCreator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/pane-creators/ProfilePaneCreator.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/pane-creators/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/pane-creators/types.ts -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/AboutView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/AboutView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/AccountsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/AccountsView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/ContentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/ContentView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/ImportExportSettingsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/ImportExportSettingsView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/InterfaceView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/InterfaceView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/KeywordFiltersView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/KeywordFiltersView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/ModerationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/ModerationView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/SettingsRouterView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/SettingsRouterView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/_components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/_components.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/_router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/_router.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/account/AccountConfigView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/account/AccountConfigView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/content-filters/HiddenRepostersView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/content-filters/HiddenRepostersView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/content-filters/LabelerConfigView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/content-filters/LabelerConfigView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/content-filters/LabelerPopularView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/content-filters/LabelerPopularView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/content-filters/TemporaryMutesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/content-filters/TemporaryMutesView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/content-filters/components/LabelItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/content-filters/components/LabelItem.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/import-export/ImportSettingsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/import-export/ImportSettingsView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/keyword-filters/KeywordFilterFormView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/keyword-filters/KeywordFilterFormView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/languages/AdditionalLanguageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/languages/AdditionalLanguageView.tsx -------------------------------------------------------------------------------- /app/desktop/components/settings/settings-views/languages/ExcludedTranslationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/settings/settings-views/languages/ExcludedTranslationView.tsx -------------------------------------------------------------------------------- /app/desktop/components/views/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/components/views/Onboarding.tsx -------------------------------------------------------------------------------- /app/desktop/globals/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/globals/events.ts -------------------------------------------------------------------------------- /app/desktop/globals/panes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/globals/panes.tsx -------------------------------------------------------------------------------- /app/desktop/globals/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/globals/query.ts -------------------------------------------------------------------------------- /app/desktop/globals/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/globals/settings.ts -------------------------------------------------------------------------------- /app/desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/index.html -------------------------------------------------------------------------------- /app/desktop/lib/messages/channel-listing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/lib/messages/channel-listing.ts -------------------------------------------------------------------------------- /app/desktop/lib/messages/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/lib/messages/channel.ts -------------------------------------------------------------------------------- /app/desktop/lib/messages/firehose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/lib/messages/firehose.ts -------------------------------------------------------------------------------- /app/desktop/lib/messages/lru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/lib/messages/lru.ts -------------------------------------------------------------------------------- /app/desktop/lib/scheduled/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/lib/scheduled/index.ts -------------------------------------------------------------------------------- /app/desktop/lib/settings/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/lib/settings/backup.ts -------------------------------------------------------------------------------- /app/desktop/lib/settings/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/lib/settings/onboarding.ts -------------------------------------------------------------------------------- /app/desktop/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/main.tsx -------------------------------------------------------------------------------- /app/desktop/public/_routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/public/_routes.json -------------------------------------------------------------------------------- /app/desktop/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/public/favicon.png -------------------------------------------------------------------------------- /app/desktop/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/styles/tailwind.css -------------------------------------------------------------------------------- /app/desktop/utils/dnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/utils/dnd.ts -------------------------------------------------------------------------------- /app/desktop/views/DecksView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/views/DecksView.tsx -------------------------------------------------------------------------------- /app/desktop/views/EmptyView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/views/EmptyView.tsx -------------------------------------------------------------------------------- /app/desktop/views/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/desktop/views/Layout.tsx -------------------------------------------------------------------------------- /app/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/env.d.ts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/package.json -------------------------------------------------------------------------------- /app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/postcss.config.js -------------------------------------------------------------------------------- /app/scripts/publish-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/scripts/publish-prod.sh -------------------------------------------------------------------------------- /app/scripts/update-labeler-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/scripts/update-labeler-list.js -------------------------------------------------------------------------------- /app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/tailwind.config.js -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/tsconfig.node.json -------------------------------------------------------------------------------- /app/utils/dequal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/dequal.ts -------------------------------------------------------------------------------- /app/utils/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/hooks.ts -------------------------------------------------------------------------------- /app/utils/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/image.ts -------------------------------------------------------------------------------- /app/utils/image/exif-remover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/image/exif-remover.ts -------------------------------------------------------------------------------- /app/utils/immer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/immer.ts -------------------------------------------------------------------------------- /app/utils/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/input.ts -------------------------------------------------------------------------------- /app/utils/interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/interaction.ts -------------------------------------------------------------------------------- /app/utils/intersection-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/intersection-observer.ts -------------------------------------------------------------------------------- /app/utils/intl/bytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/intl/bytes.ts -------------------------------------------------------------------------------- /app/utils/intl/display-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/intl/display-names.ts -------------------------------------------------------------------------------- /app/utils/intl/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/intl/languages.ts -------------------------------------------------------------------------------- /app/utils/intl/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/intl/number.ts -------------------------------------------------------------------------------- /app/utils/intl/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/intl/time.ts -------------------------------------------------------------------------------- /app/utils/media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/media-query.ts -------------------------------------------------------------------------------- /app/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/misc.ts -------------------------------------------------------------------------------- /app/utils/refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/refs.ts -------------------------------------------------------------------------------- /app/utils/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/service-worker.ts -------------------------------------------------------------------------------- /app/utils/sets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/sets.ts -------------------------------------------------------------------------------- /app/utils/signals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/signals.ts -------------------------------------------------------------------------------- /app/utils/stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/stack.ts -------------------------------------------------------------------------------- /app/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/utils/storage.ts -------------------------------------------------------------------------------- /app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/app/vite.config.ts -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/package.json -------------------------------------------------------------------------------- /packages/emoji-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/README.md -------------------------------------------------------------------------------- /packages/emoji-db/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/jsconfig.json -------------------------------------------------------------------------------- /packages/emoji-db/lib/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/Database.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/constants.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/data.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/idb-interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/idb-interface.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/idb-lifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/idb-lifecycle.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/idb-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/idb-util.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/migrations.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/ajax.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/assertEmojiData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/assertEmojiData.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/cleanEmoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/cleanEmoji.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/extractTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/extractTokens.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/findCommonMembers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/findCommonMembers.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/jsonChecksum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/jsonChecksum.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/minBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/minBy.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/normalizeTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/normalizeTokens.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/requiredKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/requiredKeys.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/transformEmojiData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/transformEmojiData.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/trie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/trie.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/uniqBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/uniqBy.js -------------------------------------------------------------------------------- /packages/emoji-db/lib/utils/uniqEmoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/lib/utils/uniqEmoji.js -------------------------------------------------------------------------------- /packages/emoji-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/package.json -------------------------------------------------------------------------------- /packages/emoji-db/types/database.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/emoji-db/types/database.d.ts -------------------------------------------------------------------------------- /packages/solid-freeze/.gitignore: -------------------------------------------------------------------------------- 1 | types/ 2 | -------------------------------------------------------------------------------- /packages/solid-freeze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-freeze/README.md -------------------------------------------------------------------------------- /packages/solid-freeze/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-freeze/index.html -------------------------------------------------------------------------------- /packages/solid-freeze/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-freeze/jsconfig.json -------------------------------------------------------------------------------- /packages/solid-freeze/lib/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-freeze/lib/index.tsx -------------------------------------------------------------------------------- /packages/solid-freeze/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-freeze/package.json -------------------------------------------------------------------------------- /packages/solid-freeze/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-freeze/src/main.jsx -------------------------------------------------------------------------------- /packages/solid-freeze/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-freeze/tsconfig.json -------------------------------------------------------------------------------- /packages/solid-freeze/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-freeze/vite.config.ts -------------------------------------------------------------------------------- /packages/solid-page-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-page-router/README.md -------------------------------------------------------------------------------- /packages/solid-page-router/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-page-router/jsconfig.json -------------------------------------------------------------------------------- /packages/solid-page-router/lib/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-page-router/lib/index.tsx -------------------------------------------------------------------------------- /packages/solid-page-router/lib/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-page-router/lib/routing.ts -------------------------------------------------------------------------------- /packages/solid-page-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-page-router/package.json -------------------------------------------------------------------------------- /packages/solid-page-router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-page-router/tsconfig.json -------------------------------------------------------------------------------- /packages/solid-page-router/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-page-router/vite.config.ts -------------------------------------------------------------------------------- /packages/solid-query/.gitignore: -------------------------------------------------------------------------------- 1 | types/ 2 | -------------------------------------------------------------------------------- /packages/solid-query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/README.md -------------------------------------------------------------------------------- /packages/solid-query/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/jsconfig.json -------------------------------------------------------------------------------- /packages/solid-query/lib/QueryClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/QueryClientProvider.tsx -------------------------------------------------------------------------------- /packages/solid-query/lib/createBaseQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/createBaseQuery.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/createInfiniteQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/createInfiniteQuery.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/createMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/createMutation.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/createQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/createQueries.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/createQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/createQuery.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/index.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/notifyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/notifyManager.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/types.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/useIsFetching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/useIsFetching.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/useIsMutating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/useIsMutating.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/useMutationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/useMutationState.ts -------------------------------------------------------------------------------- /packages/solid-query/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/lib/utils.ts -------------------------------------------------------------------------------- /packages/solid-query/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/package.json -------------------------------------------------------------------------------- /packages/solid-query/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/tsconfig.json -------------------------------------------------------------------------------- /packages/solid-query/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/solid-query/vite.config.ts -------------------------------------------------------------------------------- /packages/validity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/README.md -------------------------------------------------------------------------------- /packages/validity/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/index.ts -------------------------------------------------------------------------------- /packages/validity/lib/methods/chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/methods/chain.ts -------------------------------------------------------------------------------- /packages/validity/lib/methods/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/methods/pipe.ts -------------------------------------------------------------------------------- /packages/validity/lib/methods/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/methods/union.ts -------------------------------------------------------------------------------- /packages/validity/lib/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/parse.ts -------------------------------------------------------------------------------- /packages/validity/lib/requirements/endsWith.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/requirements/endsWith.ts -------------------------------------------------------------------------------- /packages/validity/lib/requirements/length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/requirements/length.ts -------------------------------------------------------------------------------- /packages/validity/lib/requirements/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/requirements/regex.ts -------------------------------------------------------------------------------- /packages/validity/lib/requirements/startsWith.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/requirements/startsWith.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/array.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/bigint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/bigint.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/boolean.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/literal.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/never.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/never.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/null.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/nullable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/nullable.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/number.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/object.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/optional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/optional.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/record.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/string.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/undefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/undefined.ts -------------------------------------------------------------------------------- /packages/validity/lib/schemas/unknown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/schemas/unknown.ts -------------------------------------------------------------------------------- /packages/validity/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/types.ts -------------------------------------------------------------------------------- /packages/validity/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/lib/utils.ts -------------------------------------------------------------------------------- /packages/validity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/package.json -------------------------------------------------------------------------------- /packages/validity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/packages/validity/tsconfig.json -------------------------------------------------------------------------------- /patches/@tanstack__query-core@5.17.19.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/patches/@tanstack__query-core@5.17.19.patch -------------------------------------------------------------------------------- /patches/solid-js@1.9.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/patches/solid-js@1.9.10.patch -------------------------------------------------------------------------------- /patches/solid-textarea-autosize@0.0.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/patches/solid-textarea-autosize@0.0.5.patch -------------------------------------------------------------------------------- /patches/vite-plugin-pwa@1.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/patches/vite-plugin-pwa@1.1.0.patch -------------------------------------------------------------------------------- /patches/workbox-precaching@7.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/patches/workbox-precaching@7.3.0.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/skeetdeck/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------