├── .buckconfig ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── devcontainer.json.license ├── .editorconfig ├── .flowconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ ├── release-force.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ ├── Bug.md │ ├── Crash.md │ └── Feature suggestion.md ├── .husky └── pre-commit ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .reuse └── dep5 ├── .vscode └── extensions.json ├── .watchmanconfig ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTOR_CERTIFICATE_OF_ORIGIN ├── LICENSES ├── Apache-2.0.txt ├── CC-BY-3.0.txt ├── CC-BY-4.0.txt ├── CC-BY-SA-4.0.txt ├── CC0-1.0.txt ├── ISC.txt ├── MIT.txt ├── MPL-2.0.txt ├── OFL-1.1.txt └── Unlicense.txt ├── README.md ├── android ├── app │ ├── _BUCK │ ├── _BUCK.license │ ├── build.gradle │ ├── build_defs.bzl │ ├── build_defs.bzl.license │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── se │ │ │ └── manyver │ │ │ └── ReactNativeFlipper.java │ │ ├── indieDebug │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── translations │ │ │ ├── af-ZA.json │ │ │ ├── ar-SA.json │ │ │ ├── ca-ES.json │ │ │ ├── cs-CZ.json │ │ │ ├── da-DK.json │ │ │ ├── de-DE.json │ │ │ ├── el-GR.json │ │ │ ├── en-US.json │ │ │ ├── en.json │ │ │ ├── eo-UY.json │ │ │ ├── es-EM.json │ │ │ ├── es-ES.json │ │ │ ├── fa-IR.json │ │ │ ├── fi-FI.json │ │ │ ├── fr-FR.json │ │ │ ├── he-IL.json │ │ │ ├── hu-HU.json │ │ │ ├── it-IT.json │ │ │ ├── ja-JP.json │ │ │ ├── ko-KR.json │ │ │ ├── nl-NL.json │ │ │ ├── no-NO.json │ │ │ ├── pl-PL.json │ │ │ ├── pt-BR.json │ │ │ ├── pt-PT.json │ │ │ ├── ro-RO.json │ │ │ ├── ru-RU.json │ │ │ ├── sk-SK.json │ │ │ ├── sv-SE.json │ │ │ ├── tr-TR.json │ │ │ ├── uk-UA.json │ │ │ ├── ur-PK.json │ │ │ ├── vi-VN.json │ │ │ ├── zh-CN.json │ │ │ └── zh-TW.json │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ └── se │ │ │ └── manyver │ │ │ ├── BuildConfigModule.java │ │ │ ├── BuildConfigPackage.java │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_arrow_left_white_18dp.png │ │ ├── ic_arrow_left_white_24dp.png │ │ ├── ic_arrow_left_white_36dp.png │ │ ├── ic_arrow_left_white_48dp.png │ │ └── logo_outline.png │ │ ├── drawable-mdpi │ │ ├── ic_arrow_left_white_18dp.png │ │ ├── ic_arrow_left_white_24dp.png │ │ ├── ic_arrow_left_white_36dp.png │ │ ├── ic_arrow_left_white_48dp.png │ │ └── logo_outline.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── ic_arrow_left_white_18dp.png │ │ ├── ic_arrow_left_white_24dp.png │ │ ├── ic_arrow_left_white_36dp.png │ │ ├── ic_arrow_left_white_48dp.png │ │ └── logo_outline.png │ │ ├── drawable-xxhdpi │ │ ├── ic_arrow_left_white_18dp.png │ │ ├── ic_arrow_left_white_24dp.png │ │ ├── ic_arrow_left_white_36dp.png │ │ ├── ic_arrow_left_white_48dp.png │ │ └── logo_outline.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_arrow_left_white_18dp.png │ │ ├── ic_arrow_left_white_24dp.png │ │ ├── ic_arrow_left_white_36dp.png │ │ ├── ic_arrow_left_white_48dp.png │ │ └── logo_outline.png │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── outline.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── outline.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── outline.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── outline.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ ├── gradle-wrapper.jar.license │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── gradlew.bat.license ├── gradlew.license └── settings.gradle ├── app.json ├── babel.config.js ├── code-of-conduct.md ├── crowdin.yml ├── desktop ├── build-resources │ ├── dmg-background.png │ ├── dmg-background@2x.png │ ├── icon.icns │ ├── icon.svg │ └── linux-app-icon │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ └── 64x64.png ├── electron-builder.config.js ├── index.html ├── scripts │ └── installer.nsh └── webpack.renderer.config.js ├── docs ├── commits.md ├── getting-started.md ├── overview.md └── releases.md ├── images ├── NotoColorEmoji.ttf ├── app-logo-24.png ├── app-logo-24@2x.png ├── app-logo-30.png ├── app-logo-30@2x.png ├── app-logo-30@3x.png ├── bluetooth.png ├── bluetooth@2x.png ├── bluetooth@3x.png ├── calendar-256-dark.png ├── calendar-256.png ├── empty-avatar.png ├── icon-arrow-left.png ├── icon-arrow-left@2x.png ├── icon-arrow-left@3x.png ├── icon-menu.png ├── icon-menu@2x.png ├── icon-menu@3x.png ├── image-area-256-dark.png ├── image-area-256.png ├── licenses.json ├── logo_outline.png ├── message-plus.png ├── message-plus@2x.png ├── message-plus@3x.png ├── noun-bee.png ├── noun-bee@2x.png ├── noun-bee@3x.png ├── noun-books.png ├── noun-books@2x.png ├── noun-books@3x.png ├── noun-butterfly.png ├── noun-butterfly@2x.png ├── noun-butterfly@3x.png ├── noun-camping.png ├── noun-camping@2x.png ├── noun-camping@3x.png ├── noun-crops.png ├── noun-crops@2x.png ├── noun-crops@3x.png ├── noun-farm.png ├── noun-farm@2x.png ├── noun-farm@3x.png ├── noun-fingerprint.png ├── noun-fingerprint@2x.png ├── noun-fingerprint@3x.png ├── noun-fish.png ├── noun-fish@2x.png ├── noun-fish@3x.png ├── noun-flower.png ├── noun-flower@2x.png ├── noun-flower@3x.png ├── noun-glassware.png ├── noun-glassware@2x.png ├── noun-glassware@3x.png ├── noun-lantern.png ├── noun-lantern@2x.png ├── noun-lantern@3x.png ├── noun-plant.png ├── noun-plant@2x.png ├── noun-plant@3x.png ├── noun-roots.png ├── noun-roots@2x.png ├── noun-roots@3x.png ├── noun-sun.png ├── noun-sun@2x.png ├── noun-sun@3x.png ├── noun-wheelbarrow.png ├── noun-wheelbarrow@2x.png ├── noun-wheelbarrow@3x.png ├── package-down.png ├── package-down@2x.png ├── package-down@3x.png ├── pencil.png ├── pencil@2x.png ├── pencil@3x.png ├── plus-network.png ├── plus-network@2x.png ├── plus-network@3x.png ├── screenshot-staged-peers-dark.png ├── screenshot-staged-peers.png ├── share.png ├── share@2x.png └── share@3x.png ├── index.android.js ├── index.ios.js ├── index.web.js ├── ios ├── Manyverse.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Manyverse.xcscheme ├── Manyverse.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Manyverse │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── BuildConfig.h │ ├── BuildConfig.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── applogo-appstore.png │ │ │ ├── applogoipad-app@1x.png │ │ │ ├── applogoipad-app@2x.png │ │ │ ├── applogoipad-notifications@1x.png │ │ │ ├── applogoipad-notifications@2x.png │ │ │ ├── applogoipad-pro-app@2x.png │ │ │ ├── applogoipad-settings@1x.png │ │ │ ├── applogoipad-settings@2x.png │ │ │ ├── applogoipad-spotlight@1x.png │ │ │ ├── applogoipad-spotlight@2x.png │ │ │ ├── applogoiphone-app@2x.png │ │ │ ├── applogoiphone-app@3x.png │ │ │ ├── applogoiphone-notification@2x.png │ │ │ ├── applogoiphone-notification@3x.png │ │ │ ├── applogoiphone-spotlight@2x.png │ │ │ ├── applogoiphone-spotlight@3x.png │ │ │ ├── applogoiphone@2x.png │ │ │ └── applogoiphone@3x.png │ │ ├── Contents.json │ │ └── logo_outline.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_outline.png │ │ │ ├── logo_outline@2x.png │ │ │ └── logo_outline@3x.png │ ├── Info.plist │ └── main.m ├── ManyverseTests │ ├── Info.plist │ └── ManyverseTests.m ├── Podfile ├── Podfile.lock └── ipaExport.plist ├── metro.config.js ├── nodejs-assets └── nodejs-project │ └── README.md ├── noop.js ├── package.json ├── patches ├── packet-stream+2.0.6.patch ├── react-native-blurhash+1.1.10.patch ├── react-native-fs+2.18.0.patch ├── react-native-gifted-chat+0.16.3.patch ├── react-native-popup-menu+0.15.12.patch ├── react-native-svg+12.1.1.patch ├── react-native-system-setting+1.7.6.patch └── react-native-web+0.18.9.patch ├── playwright.config.ts ├── react-native.config.js ├── screenshot.png ├── setup-sentry-mobile.js ├── snoopy.js ├── src ├── backend │ ├── README.md │ ├── identity.ts │ ├── index.ts │ ├── loader.desktop.ts │ ├── loader.mobile.ts │ ├── one-time-fixes.ts │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ ├── chloride+2.4.1.patch │ │ ├── sodium-chloride+1.1.2.patch │ │ └── ssb-db2+8.1.0.patch │ ├── plugins │ │ ├── README.md │ │ ├── aliasUtils.ts │ │ ├── blobsUtils.ts │ │ ├── connUtils.ts │ │ ├── dbUtils.ts │ │ ├── electron │ │ │ ├── context-menu.ts │ │ │ ├── incoming-urls.ts │ │ │ ├── wifi-is-enabled.ts │ │ │ └── win-blur-focus.ts │ │ ├── gatheringsUtils.ts │ │ ├── helpers │ │ │ └── types.ts │ │ ├── keysUtils.ts │ │ ├── multiserver-addons.ts │ │ ├── publishUtilsBack.ts │ │ ├── resyncUtils.ts │ │ ├── searchUtils.ts │ │ ├── settingsUtils.ts │ │ └── votes.ts │ ├── ssb.ts │ └── versionName.ts └── frontend │ ├── README.md │ ├── components │ ├── AccountsList.ts │ ├── AccountsListCheckMany.ts │ ├── AnimatedLoading.ts │ ├── AudioPlayer.ts │ ├── AudioRecorder.ts │ ├── Avatar.ts │ ├── BlurhashAvatar.d.ts │ ├── BlurhashAvatar.native.ts │ ├── BlurhashAvatar.web.ts │ ├── Button.ts │ ├── EmptySection.ts │ ├── Feed.ts │ ├── FlagSecure.ts │ ├── FloatingActionButton.ts │ ├── FollowCard.ts │ ├── GatheringCard.ts │ ├── HeaderButton.ts │ ├── HeaderMenuButton.ts │ ├── IconButton.ts │ ├── LocalizedHumanTime.ts │ ├── Markdown.ts │ ├── Pill.ts │ ├── PlaceholderThreadCard.ts │ ├── ProgressBar.d.ts │ ├── ProgressBar.native.ts │ ├── ProgressBar.web.ts │ ├── QuickEmojiModal.ts │ ├── RNBridgeDebug.ts │ ├── RawFeed.ts │ ├── ReadMoreOverlay.ts │ ├── SettableTextInput.ts │ ├── StatusBarBlank.ts │ ├── StatusBarBrand.ts │ ├── SuggestionOption.ts │ ├── Swiper.ts │ ├── ThreadCard.ts │ ├── TimeAgo.ts │ ├── ToggleButton.ts │ ├── TopBar.ts │ ├── ZoomableImage.ts │ ├── mail-to-bug-report.ts │ ├── manage-aliases.ts │ ├── messageEtc.ts │ ├── messageShare.ts │ ├── messages │ │ ├── AboutMessage.ts │ │ ├── ContactBody.ts │ │ ├── ContactMessage.ts │ │ ├── ContentWarning.ts │ │ ├── ForkNote.ts │ │ ├── GatheringBody │ │ │ ├── AttendeesRow.ts │ │ │ ├── GatheringBody.ts │ │ │ └── index.ts │ │ ├── GatheringMessage.ts │ │ ├── KeylessMessage.ts │ │ ├── Message.ts │ │ ├── MessageContainer.ts │ │ ├── MessageFooter.ts │ │ ├── MessageHeader.ts │ │ ├── Metadata.ts │ │ ├── PlaceholderMessage.ts │ │ ├── PlaceholderMessageFooter.ts │ │ ├── PlaceholderMessageHeader.ts │ │ ├── PostMessage.ts │ │ ├── RawMessage.ts │ │ └── ShortRawMessage.ts │ ├── progressCalculation.ts │ ├── tab-buttons │ │ ├── ActivityTabIcon.ts │ │ ├── ConnectionsTabIcon.ts │ │ ├── PrivateTabIcon.ts │ │ ├── PublicTabIcon.ts │ │ └── TabIcon.ts │ ├── tutorial-presentation.ts │ ├── tutorial-slide.ts │ ├── utils │ │ └── audio.ts │ └── withTitle.ts │ ├── drivers │ ├── README.md │ ├── appstate │ │ ├── impl.d.ts │ │ ├── impl.native.ts │ │ ├── impl.web.ts │ │ └── index.ts │ ├── asyncstorage.ts │ ├── dialogs │ │ ├── impl.android.ts │ │ ├── impl.d.ts │ │ ├── impl.ios.ts │ │ ├── impl.web.ts │ │ ├── index.ts │ │ ├── sharedCommands.ts │ │ └── types.ts │ ├── eventbus.ts │ ├── exit.ts │ ├── fs.ts │ ├── lifecycle.ts │ ├── linking │ │ ├── impl.d.ts │ │ ├── impl.native.ts │ │ ├── impl.web.ts │ │ └── index.ts │ ├── localization │ │ ├── impl.d.ts │ │ ├── impl.native.ts │ │ ├── impl.web.ts │ │ └── index.ts │ ├── migrating │ │ ├── impl.d.ts │ │ ├── impl.native.ts │ │ ├── impl.web.ts │ │ └── index.ts │ ├── network │ │ ├── impl.android.ts │ │ ├── impl.d.ts │ │ ├── impl.ios.ts │ │ ├── impl.web.ts │ │ └── index.ts │ ├── orientation │ │ ├── impl.d.ts │ │ ├── impl.native.ts │ │ ├── impl.web.ts │ │ ├── index.ts │ │ └── types.ts │ ├── recorder │ │ ├── impl.d.ts │ │ ├── impl.native.ts │ │ ├── impl.web.ts │ │ ├── index.ts │ │ └── types.ts │ ├── splashscreen │ │ ├── index.d.ts │ │ ├── index.native.ts │ │ └── index.web.ts │ ├── ssb │ │ ├── backend.d.ts │ │ ├── backend.native.ts │ │ ├── backend.web.ts │ │ ├── index.ts │ │ └── ports.ts │ ├── toast │ │ ├── ToastWeb.d.ts │ │ ├── ToastWeb.native.ts │ │ ├── ToastWeb.web.ts │ │ ├── impl.android.ts │ │ ├── impl.d.ts │ │ ├── impl.ios.ts │ │ ├── impl.web.ts │ │ ├── index.ts │ │ └── types.ts │ └── window-size.ts │ ├── global-styles │ ├── dimens.ts │ ├── icons.ts │ ├── images.d.ts │ ├── images.native.ts │ ├── images.web.ts │ ├── palette.ts │ ├── styles.ts │ └── typography.ts │ ├── index.ts │ ├── libraries.ts │ ├── screens │ ├── about │ │ ├── README.md │ │ └── index.ts │ ├── accounts │ │ ├── README.md │ │ ├── index.ts │ │ └── layout.ts │ ├── alias-manage │ │ ├── README.md │ │ ├── index.ts │ │ ├── layout.ts │ │ └── props.ts │ ├── alias-register │ │ ├── README.md │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── layout.ts │ │ ├── model.ts │ │ ├── props.ts │ │ └── view │ │ │ ├── Failure.ts │ │ │ ├── ServerItem.ts │ │ │ ├── ServerList.ts │ │ │ ├── Submitting.ts │ │ │ ├── Success.ts │ │ │ └── index.ts │ ├── backup │ │ ├── README.md │ │ └── index.ts │ ├── biography │ │ ├── README.md │ │ ├── index.ts │ │ ├── styles.ts │ │ └── view.ts │ ├── central │ │ ├── README.md │ │ ├── activity-tab │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── intent.ts │ │ │ ├── model.ts │ │ │ ├── navigation.ts │ │ │ ├── styles.ts │ │ │ └── view.ts │ │ ├── connections-tab │ │ │ ├── README.md │ │ │ ├── fab.ts │ │ │ ├── index.ts │ │ │ ├── instructions │ │ │ │ └── follow-staged-manually.ts │ │ │ ├── intent.ts │ │ │ ├── model.ts │ │ │ ├── navigation.ts │ │ │ └── view.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── private-tab │ │ │ ├── README.md │ │ │ ├── fab.ts │ │ │ ├── index.ts │ │ │ ├── intent.ts │ │ │ ├── model.ts │ │ │ ├── navigation.ts │ │ │ ├── styles.ts │ │ │ └── view.ts │ │ ├── public-tab │ │ │ ├── README.md │ │ │ ├── asyncstorage.ts │ │ │ ├── fab.ts │ │ │ ├── index.ts │ │ │ ├── intent.ts │ │ │ ├── model.ts │ │ │ ├── navigation.ts │ │ │ ├── ssb.ts │ │ │ ├── styles.ts │ │ │ └── view.ts │ │ ├── styles.ts │ │ ├── top-bar │ │ │ ├── asyncstorage.ts │ │ │ ├── index.ts │ │ │ ├── intent.ts │ │ │ ├── model.ts │ │ │ └── view.ts │ │ └── view.ts │ ├── compact │ │ ├── index.ts │ │ ├── layout.ts │ │ ├── model.ts │ │ ├── props.ts │ │ └── view.ts │ ├── compose-audio │ │ ├── README.md │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── recorder.ts │ │ ├── styles.ts │ │ └── view.ts │ ├── compose │ │ ├── README.md │ │ ├── alert.ts │ │ ├── asyncstorage.ts │ │ ├── dialog.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ ├── styles.ts │ │ ├── top-bar │ │ │ └── index.ts │ │ ├── types.ts │ │ ├── view.ts │ │ ├── web-paster.d.ts │ │ ├── web-paster.native.ts │ │ └── web-paster.web.ts │ ├── connections-panel │ │ ├── README.md │ │ ├── alert.ts │ │ ├── connDialogs.ts │ │ ├── dialog.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── layout.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ └── view │ │ │ ├── Body │ │ │ ├── ConnectionItem.ts │ │ │ ├── ListOfPeers.ts │ │ │ ├── RoomItem.ts │ │ │ ├── StagedItem.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ │ ├── ConnectivityModes.ts │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── styles.ts │ ├── conversation │ │ ├── README.md │ │ ├── asyncstorage.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── layout.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ └── view │ │ │ ├── SettableComposer.ts │ │ │ └── index.ts │ ├── desktop-frame │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.native.ts │ │ ├── index.web.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── styles.ts │ │ └── view.ts │ ├── drawer │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.native.ts │ │ ├── index.web.ts │ │ ├── intent.ts │ │ ├── linking.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── styles.ts │ │ └── view.ts │ ├── enums.ts │ ├── feed-settings │ │ ├── asyncstorage.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ └── view │ │ │ ├── FeedSection.ts │ │ │ ├── Header.ts │ │ │ ├── ListItem.ts │ │ │ └── index.ts │ ├── global │ │ ├── README.md │ │ ├── asyncstorage.ts │ │ ├── dialog.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── localization.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── ssb.ts │ │ └── toast.ts │ ├── indexing │ │ ├── index.ts │ │ ├── layout.ts │ │ ├── model.ts │ │ ├── props.ts │ │ └── view.ts │ ├── instructions │ │ ├── index.ts │ │ ├── layout.ts │ │ └── props.ts │ ├── invite-paste │ │ ├── README.md │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── ssb.ts │ │ ├── styles.ts │ │ └── view.ts │ ├── layouts.ts │ ├── libraries │ │ ├── README.md │ │ └── index.ts │ ├── migrating │ │ ├── index.d.ts │ │ ├── index.native.ts │ │ ├── index.web.ts │ │ ├── layout.ts │ │ └── navigation.ts │ ├── profile-edit │ │ ├── README.md │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ └── view │ │ │ ├── index.ts │ │ │ └── styles.ts │ ├── profile │ │ ├── README.md │ │ ├── alert.ts │ │ ├── feed-id-dialog.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── layout.ts │ │ ├── manage-contact.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ └── view │ │ │ ├── ConnectionDot.ts │ │ │ ├── ProfileAvatar.ts │ │ │ ├── ProfileHeader.ts │ │ │ ├── ProfileID.ts │ │ │ ├── ProfileName.ts │ │ │ ├── ProfileTopBar.ts │ │ │ ├── index.ts │ │ │ └── styles.ts │ ├── raw-db │ │ ├── README.md │ │ └── index.ts │ ├── raw-msg │ │ ├── README.md │ │ └── index.ts │ ├── recipients-input │ │ ├── README.md │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── styles.ts │ │ └── view.ts │ ├── resync │ │ ├── README.md │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── ssb.ts │ │ └── view.ts │ ├── search │ │ ├── README.md │ │ ├── fab.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ ├── styles.ts │ │ └── view.ts │ ├── secret-input │ │ ├── README.md │ │ ├── dialog.ts │ │ ├── index.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ └── view.ts │ ├── secret-output │ │ ├── README.md │ │ └── index.ts │ ├── settings │ │ ├── README.md │ │ ├── alert.ts │ │ ├── asyncstorage.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── linking.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ └── view │ │ │ ├── LinkSetting.ts │ │ │ ├── SliderSetting.ts │ │ │ ├── ToggleSetting.ts │ │ │ ├── index.ts │ │ │ └── styles.ts │ ├── storage │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── manage-contact.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ └── view │ │ │ ├── StorageHeader.ts │ │ │ └── index.ts │ ├── thanks │ │ ├── README.md │ │ ├── backers.ts │ │ └── index.ts │ ├── thread │ │ ├── README.md │ │ ├── asyncstorage.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── layout.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ ├── props.ts │ │ ├── ssb.ts │ │ ├── styles.ts │ │ └── view │ │ │ ├── FullThread.ts │ │ │ └── index.ts │ └── welcome │ │ ├── README.md │ │ ├── alert.ts │ │ ├── index.ts │ │ ├── intent.ts │ │ ├── model.ts │ │ ├── navigation.ts │ │ └── view.ts │ ├── ssb │ ├── README.md │ ├── channel.android.ts │ ├── channel.d.ts │ ├── channel.ios.ts │ ├── channel.web.ts │ ├── client.ts │ ├── manifest.ts │ ├── plugins │ │ ├── README.md │ │ ├── cachedAboutSelf.ts │ │ ├── hooks.ts │ │ ├── publishUtils.ts │ │ └── threadsUtils.ts │ ├── types.ts │ └── utils │ │ ├── alias.ts │ │ ├── constants.ts │ │ ├── from-ssb.ts │ │ └── to-ssb.ts │ ├── symbols.d.ts │ ├── symbols.native.ts │ ├── symbols.web.ts │ └── versionName.ts ├── test ├── apple-app-store-demo │ ├── README.md │ ├── blobs │ │ └── sha256 │ │ │ ├── 00 │ │ │ └── 2495338355c999663a14253e5524198908faaa8816a33d893db4a32d178c5b │ │ │ ├── ce │ │ │ └── 9a10d7747523f1213a019b228b8510ac0f06858fc83cf18ffa9e0bb81eb31b │ │ │ └── f5 │ │ │ └── 24ecbd3cfb655bb838af989e59dd4d747dc8061acea29bd1cc15b9b717b9f1 │ ├── flume │ │ ├── log.offset │ │ └── log.offset.license │ ├── jane-recovery-words.txt │ ├── jane-recovery-words.txt.license │ ├── secret │ └── secret.license ├── benchmark │ ├── index.js │ ├── initial-sync.js │ ├── results.csv │ ├── results.csv.license │ └── sync-server │ │ ├── .gitignore │ │ ├── data │ │ ├── flume │ │ │ ├── log.offset │ │ │ └── log.offset.license │ │ ├── report.md │ │ ├── secret │ │ ├── secret-b │ │ ├── secret-b.license │ │ ├── secret-c │ │ ├── secret-c.license │ │ └── secret.license │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package-lock.json.license │ │ ├── package.json │ │ └── package.json.license ├── e2e │ ├── android │ │ ├── README.md │ │ ├── central.js │ │ ├── compose.js │ │ ├── connections.js │ │ ├── drawer.js │ │ ├── feed.js │ │ ├── index.js │ │ ├── profile.js │ │ ├── settings.js │ │ ├── thread.js │ │ ├── utils │ │ │ └── recovery.js │ │ └── welcome.js │ └── desktop │ │ ├── central.test.ts │ │ ├── compose-attach.test.ts │ │ ├── compose-content-warning.test.ts │ │ ├── compose-draft-save.test.ts │ │ ├── compose.test.ts │ │ ├── fixtures │ │ └── image.png │ │ ├── rogue-post.test.ts │ │ ├── utils.ts │ │ └── welcome.test.ts └── smoke │ ├── android │ ├── README.md │ ├── central.js │ ├── index.js │ └── welcome.js │ └── ios │ ├── README.md │ ├── central.js │ ├── index.js │ └── welcome.js ├── tools ├── analyse-backend-bundle.js ├── backend │ ├── build-native-modules.sh │ ├── move-shared-libs-android.sh │ ├── move-to-desktop.js │ ├── move-to-nodejs-assets.sh │ ├── noderify.js │ ├── post-remove-unused-files.sh │ ├── pre-remove-unused-files-desktop.js │ └── pre-remove-unused-files.sh ├── benchmark-initial-sync ├── build-backend.mjs ├── commit-release ├── echo-android-changelog.mjs ├── echo-emoji-changelog.mjs ├── echo-ios-changelog.mjs ├── echo-ssb-post.mjs ├── generate-changelog.mjs ├── improve-cpuprofiler-output.js ├── install-node-gyp.ps1 ├── install-vs-build-tools.ps1 ├── print-crash-aggregration.js ├── print-service-desk-report.js ├── report-libraries.mjs ├── start-appium-server ├── stop-appium-server ├── sync-i18n-data.js ├── test-e2e-android ├── test-e2e-desktop ├── test-smoke-android ├── test-smoke-ios ├── update-desktop-release-resources ├── update-i18n-types.js ├── update-repo-changelog.mjs ├── update-top-backers.mjs ├── update-version-ios.js ├── update-version.js └── validate-license-year.sh ├── translations ├── tsconfig.json ├── tslint.json └── typings ├── i18n-js.d.ts ├── pull-stream.d.ts └── react-native-dialogs.d.ts /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.buckconfig -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.devcontainer/devcontainer.json.license -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release-force.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.github/workflows/release-force.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.gitlab/issue_templates/Bug.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Crash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.gitlab/issue_templates/Crash.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Feature suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.gitlab/issue_templates/Feature suggestion.md -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTOR_CERTIFICATE_OF_ORIGIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/CONTRIBUTOR_CERTIFICATE_OF_ORIGIN -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/CC-BY-3.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/ISC.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/MPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/MPL-2.0.txt -------------------------------------------------------------------------------- /LICENSES/OFL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/OFL-1.1.txt -------------------------------------------------------------------------------- /LICENSES/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/LICENSES/Unlicense.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/README.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/_BUCK.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/_BUCK.license -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/build_defs.bzl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/build_defs.bzl.license -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/indieDebug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/indieDebug/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/af-ZA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/af-ZA.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/ar-SA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/ar-SA.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/ca-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/ca-ES.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/cs-CZ.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/da-DK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/da-DK.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/de-DE.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/el-GR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/el-GR.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/en-US.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/en.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/eo-UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/eo-UY.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/es-EM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/es-EM.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/es-ES.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/fa-IR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/fa-IR.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/fi-FI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/fi-FI.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/fr-FR.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/he-IL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/he-IL.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/hu-HU.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/it-IT.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/ja-JP.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/ko-KR.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/nl-NL.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/no-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/no-NO.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/pl-PL.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/pt-BR.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/pt-PT.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/ro-RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/ro-RO.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/ru-RU.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/sk-SK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/sk-SK.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/sv-SE.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/tr-TR.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/uk-UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/uk-UA.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/ur-PK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/ur-PK.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/vi-VN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/vi-VN.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/zh-CN.json -------------------------------------------------------------------------------- /android/app/src/main/assets/translations/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/assets/translations/zh-TW.json -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/java/se/manyver/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/java/se/manyver/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/logo_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/drawable-hdpi/logo_outline.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/logo_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/drawable-mdpi/logo_outline.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-hdpi/outline.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-mdpi/outline.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-xhdpi/outline.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-xxhdpi/outline.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2007-2019 Gradle, Inc. 2 | 3 | SPDX-License-Identifier: Apache-2.0 -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/gradlew.bat.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2007-2019 Gradle, Inc. 2 | 3 | SPDX-License-Identifier: Apache-2.0 -------------------------------------------------------------------------------- /android/gradlew.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2007-2019 Gradle, Inc. 2 | 3 | SPDX-License-Identifier: Apache-2.0 -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/babel.config.js -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/crowdin.yml -------------------------------------------------------------------------------- /desktop/build-resources/dmg-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/dmg-background.png -------------------------------------------------------------------------------- /desktop/build-resources/dmg-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/dmg-background@2x.png -------------------------------------------------------------------------------- /desktop/build-resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/icon.icns -------------------------------------------------------------------------------- /desktop/build-resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/icon.svg -------------------------------------------------------------------------------- /desktop/build-resources/linux-app-icon/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/linux-app-icon/128x128.png -------------------------------------------------------------------------------- /desktop/build-resources/linux-app-icon/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/linux-app-icon/16x16.png -------------------------------------------------------------------------------- /desktop/build-resources/linux-app-icon/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/linux-app-icon/256x256.png -------------------------------------------------------------------------------- /desktop/build-resources/linux-app-icon/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/linux-app-icon/32x32.png -------------------------------------------------------------------------------- /desktop/build-resources/linux-app-icon/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/linux-app-icon/48x48.png -------------------------------------------------------------------------------- /desktop/build-resources/linux-app-icon/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/linux-app-icon/512x512.png -------------------------------------------------------------------------------- /desktop/build-resources/linux-app-icon/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/build-resources/linux-app-icon/64x64.png -------------------------------------------------------------------------------- /desktop/electron-builder.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/electron-builder.config.js -------------------------------------------------------------------------------- /desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/index.html -------------------------------------------------------------------------------- /desktop/scripts/installer.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/scripts/installer.nsh -------------------------------------------------------------------------------- /desktop/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/desktop/webpack.renderer.config.js -------------------------------------------------------------------------------- /docs/commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/docs/commits.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/docs/releases.md -------------------------------------------------------------------------------- /images/NotoColorEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/NotoColorEmoji.ttf -------------------------------------------------------------------------------- /images/app-logo-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/app-logo-24.png -------------------------------------------------------------------------------- /images/app-logo-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/app-logo-24@2x.png -------------------------------------------------------------------------------- /images/app-logo-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/app-logo-30.png -------------------------------------------------------------------------------- /images/app-logo-30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/app-logo-30@2x.png -------------------------------------------------------------------------------- /images/app-logo-30@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/app-logo-30@3x.png -------------------------------------------------------------------------------- /images/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/bluetooth.png -------------------------------------------------------------------------------- /images/bluetooth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/bluetooth@2x.png -------------------------------------------------------------------------------- /images/bluetooth@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/bluetooth@3x.png -------------------------------------------------------------------------------- /images/calendar-256-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/calendar-256-dark.png -------------------------------------------------------------------------------- /images/calendar-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/calendar-256.png -------------------------------------------------------------------------------- /images/empty-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/empty-avatar.png -------------------------------------------------------------------------------- /images/icon-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/icon-arrow-left.png -------------------------------------------------------------------------------- /images/icon-arrow-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/icon-arrow-left@2x.png -------------------------------------------------------------------------------- /images/icon-arrow-left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/icon-arrow-left@3x.png -------------------------------------------------------------------------------- /images/icon-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/icon-menu.png -------------------------------------------------------------------------------- /images/icon-menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/icon-menu@2x.png -------------------------------------------------------------------------------- /images/icon-menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/icon-menu@3x.png -------------------------------------------------------------------------------- /images/image-area-256-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/image-area-256-dark.png -------------------------------------------------------------------------------- /images/image-area-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/image-area-256.png -------------------------------------------------------------------------------- /images/licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/licenses.json -------------------------------------------------------------------------------- /images/logo_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/logo_outline.png -------------------------------------------------------------------------------- /images/message-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/message-plus.png -------------------------------------------------------------------------------- /images/message-plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/message-plus@2x.png -------------------------------------------------------------------------------- /images/message-plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/message-plus@3x.png -------------------------------------------------------------------------------- /images/noun-bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-bee.png -------------------------------------------------------------------------------- /images/noun-bee@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-bee@2x.png -------------------------------------------------------------------------------- /images/noun-bee@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-bee@3x.png -------------------------------------------------------------------------------- /images/noun-books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-books.png -------------------------------------------------------------------------------- /images/noun-books@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-books@2x.png -------------------------------------------------------------------------------- /images/noun-books@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-books@3x.png -------------------------------------------------------------------------------- /images/noun-butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-butterfly.png -------------------------------------------------------------------------------- /images/noun-butterfly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-butterfly@2x.png -------------------------------------------------------------------------------- /images/noun-butterfly@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-butterfly@3x.png -------------------------------------------------------------------------------- /images/noun-camping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-camping.png -------------------------------------------------------------------------------- /images/noun-camping@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-camping@2x.png -------------------------------------------------------------------------------- /images/noun-camping@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-camping@3x.png -------------------------------------------------------------------------------- /images/noun-crops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-crops.png -------------------------------------------------------------------------------- /images/noun-crops@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-crops@2x.png -------------------------------------------------------------------------------- /images/noun-crops@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-crops@3x.png -------------------------------------------------------------------------------- /images/noun-farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-farm.png -------------------------------------------------------------------------------- /images/noun-farm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-farm@2x.png -------------------------------------------------------------------------------- /images/noun-farm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-farm@3x.png -------------------------------------------------------------------------------- /images/noun-fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-fingerprint.png -------------------------------------------------------------------------------- /images/noun-fingerprint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-fingerprint@2x.png -------------------------------------------------------------------------------- /images/noun-fingerprint@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-fingerprint@3x.png -------------------------------------------------------------------------------- /images/noun-fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-fish.png -------------------------------------------------------------------------------- /images/noun-fish@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-fish@2x.png -------------------------------------------------------------------------------- /images/noun-fish@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-fish@3x.png -------------------------------------------------------------------------------- /images/noun-flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-flower.png -------------------------------------------------------------------------------- /images/noun-flower@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-flower@2x.png -------------------------------------------------------------------------------- /images/noun-flower@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-flower@3x.png -------------------------------------------------------------------------------- /images/noun-glassware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-glassware.png -------------------------------------------------------------------------------- /images/noun-glassware@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-glassware@2x.png -------------------------------------------------------------------------------- /images/noun-glassware@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-glassware@3x.png -------------------------------------------------------------------------------- /images/noun-lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-lantern.png -------------------------------------------------------------------------------- /images/noun-lantern@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-lantern@2x.png -------------------------------------------------------------------------------- /images/noun-lantern@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-lantern@3x.png -------------------------------------------------------------------------------- /images/noun-plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-plant.png -------------------------------------------------------------------------------- /images/noun-plant@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-plant@2x.png -------------------------------------------------------------------------------- /images/noun-plant@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-plant@3x.png -------------------------------------------------------------------------------- /images/noun-roots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-roots.png -------------------------------------------------------------------------------- /images/noun-roots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-roots@2x.png -------------------------------------------------------------------------------- /images/noun-roots@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-roots@3x.png -------------------------------------------------------------------------------- /images/noun-sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-sun.png -------------------------------------------------------------------------------- /images/noun-sun@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-sun@2x.png -------------------------------------------------------------------------------- /images/noun-sun@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-sun@3x.png -------------------------------------------------------------------------------- /images/noun-wheelbarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-wheelbarrow.png -------------------------------------------------------------------------------- /images/noun-wheelbarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-wheelbarrow@2x.png -------------------------------------------------------------------------------- /images/noun-wheelbarrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/noun-wheelbarrow@3x.png -------------------------------------------------------------------------------- /images/package-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/package-down.png -------------------------------------------------------------------------------- /images/package-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/package-down@2x.png -------------------------------------------------------------------------------- /images/package-down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/package-down@3x.png -------------------------------------------------------------------------------- /images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/pencil.png -------------------------------------------------------------------------------- /images/pencil@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/pencil@2x.png -------------------------------------------------------------------------------- /images/pencil@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/pencil@3x.png -------------------------------------------------------------------------------- /images/plus-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/plus-network.png -------------------------------------------------------------------------------- /images/plus-network@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/plus-network@2x.png -------------------------------------------------------------------------------- /images/plus-network@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/plus-network@3x.png -------------------------------------------------------------------------------- /images/screenshot-staged-peers-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/screenshot-staged-peers-dark.png -------------------------------------------------------------------------------- /images/screenshot-staged-peers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/screenshot-staged-peers.png -------------------------------------------------------------------------------- /images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/share.png -------------------------------------------------------------------------------- /images/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/share@2x.png -------------------------------------------------------------------------------- /images/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/images/share@3x.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/index.ios.js -------------------------------------------------------------------------------- /index.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/index.web.js -------------------------------------------------------------------------------- /ios/Manyverse.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Manyverse.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Manyverse/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse/AppDelegate.h -------------------------------------------------------------------------------- /ios/Manyverse/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse/AppDelegate.m -------------------------------------------------------------------------------- /ios/Manyverse/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/Manyverse/BuildConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse/BuildConfig.h -------------------------------------------------------------------------------- /ios/Manyverse/BuildConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse/BuildConfig.m -------------------------------------------------------------------------------- /ios/Manyverse/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Manyverse/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse/Info.plist -------------------------------------------------------------------------------- /ios/Manyverse/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Manyverse/main.m -------------------------------------------------------------------------------- /ios/ManyverseTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/ManyverseTests/Info.plist -------------------------------------------------------------------------------- /ios/ManyverseTests/ManyverseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/ManyverseTests/ManyverseTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/ipaExport.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/ios/ipaExport.plist -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/metro.config.js -------------------------------------------------------------------------------- /nodejs-assets/nodejs-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/nodejs-assets/nodejs-project/README.md -------------------------------------------------------------------------------- /noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/noop.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/package.json -------------------------------------------------------------------------------- /patches/packet-stream+2.0.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/patches/packet-stream+2.0.6.patch -------------------------------------------------------------------------------- /patches/react-native-blurhash+1.1.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/patches/react-native-blurhash+1.1.10.patch -------------------------------------------------------------------------------- /patches/react-native-fs+2.18.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/patches/react-native-fs+2.18.0.patch -------------------------------------------------------------------------------- /patches/react-native-gifted-chat+0.16.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/patches/react-native-gifted-chat+0.16.3.patch -------------------------------------------------------------------------------- /patches/react-native-popup-menu+0.15.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/patches/react-native-popup-menu+0.15.12.patch -------------------------------------------------------------------------------- /patches/react-native-svg+12.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/patches/react-native-svg+12.1.1.patch -------------------------------------------------------------------------------- /patches/react-native-system-setting+1.7.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/patches/react-native-system-setting+1.7.6.patch -------------------------------------------------------------------------------- /patches/react-native-web+0.18.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/patches/react-native-web+0.18.9.patch -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/react-native.config.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup-sentry-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/setup-sentry-mobile.js -------------------------------------------------------------------------------- /snoopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/snoopy.js -------------------------------------------------------------------------------- /src/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/README.md -------------------------------------------------------------------------------- /src/backend/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/identity.ts -------------------------------------------------------------------------------- /src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/index.ts -------------------------------------------------------------------------------- /src/backend/loader.desktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/loader.desktop.ts -------------------------------------------------------------------------------- /src/backend/loader.mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/loader.mobile.ts -------------------------------------------------------------------------------- /src/backend/one-time-fixes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/one-time-fixes.ts -------------------------------------------------------------------------------- /src/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/package-lock.json -------------------------------------------------------------------------------- /src/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/package.json -------------------------------------------------------------------------------- /src/backend/patches/chloride+2.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/patches/chloride+2.4.1.patch -------------------------------------------------------------------------------- /src/backend/patches/sodium-chloride+1.1.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/patches/sodium-chloride+1.1.2.patch -------------------------------------------------------------------------------- /src/backend/patches/ssb-db2+8.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/patches/ssb-db2+8.1.0.patch -------------------------------------------------------------------------------- /src/backend/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/README.md -------------------------------------------------------------------------------- /src/backend/plugins/aliasUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/aliasUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/blobsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/blobsUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/connUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/connUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/dbUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/dbUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/electron/context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/electron/context-menu.ts -------------------------------------------------------------------------------- /src/backend/plugins/electron/incoming-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/electron/incoming-urls.ts -------------------------------------------------------------------------------- /src/backend/plugins/electron/wifi-is-enabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/electron/wifi-is-enabled.ts -------------------------------------------------------------------------------- /src/backend/plugins/electron/win-blur-focus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/electron/win-blur-focus.ts -------------------------------------------------------------------------------- /src/backend/plugins/gatheringsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/gatheringsUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/helpers/types.ts -------------------------------------------------------------------------------- /src/backend/plugins/keysUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/keysUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/multiserver-addons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/multiserver-addons.ts -------------------------------------------------------------------------------- /src/backend/plugins/publishUtilsBack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/publishUtilsBack.ts -------------------------------------------------------------------------------- /src/backend/plugins/resyncUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/resyncUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/searchUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/searchUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/settingsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/settingsUtils.ts -------------------------------------------------------------------------------- /src/backend/plugins/votes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/plugins/votes.ts -------------------------------------------------------------------------------- /src/backend/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/ssb.ts -------------------------------------------------------------------------------- /src/backend/versionName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/backend/versionName.ts -------------------------------------------------------------------------------- /src/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/README.md -------------------------------------------------------------------------------- /src/frontend/components/AccountsList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/AccountsList.ts -------------------------------------------------------------------------------- /src/frontend/components/AccountsListCheckMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/AccountsListCheckMany.ts -------------------------------------------------------------------------------- /src/frontend/components/AnimatedLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/AnimatedLoading.ts -------------------------------------------------------------------------------- /src/frontend/components/AudioPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/AudioPlayer.ts -------------------------------------------------------------------------------- /src/frontend/components/AudioRecorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/AudioRecorder.ts -------------------------------------------------------------------------------- /src/frontend/components/Avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/Avatar.ts -------------------------------------------------------------------------------- /src/frontend/components/BlurhashAvatar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/BlurhashAvatar.d.ts -------------------------------------------------------------------------------- /src/frontend/components/BlurhashAvatar.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/BlurhashAvatar.native.ts -------------------------------------------------------------------------------- /src/frontend/components/BlurhashAvatar.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/BlurhashAvatar.web.ts -------------------------------------------------------------------------------- /src/frontend/components/Button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/Button.ts -------------------------------------------------------------------------------- /src/frontend/components/EmptySection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/EmptySection.ts -------------------------------------------------------------------------------- /src/frontend/components/Feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/Feed.ts -------------------------------------------------------------------------------- /src/frontend/components/FlagSecure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/FlagSecure.ts -------------------------------------------------------------------------------- /src/frontend/components/FloatingActionButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/FloatingActionButton.ts -------------------------------------------------------------------------------- /src/frontend/components/FollowCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/FollowCard.ts -------------------------------------------------------------------------------- /src/frontend/components/GatheringCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/GatheringCard.ts -------------------------------------------------------------------------------- /src/frontend/components/HeaderButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/HeaderButton.ts -------------------------------------------------------------------------------- /src/frontend/components/HeaderMenuButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/HeaderMenuButton.ts -------------------------------------------------------------------------------- /src/frontend/components/IconButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/IconButton.ts -------------------------------------------------------------------------------- /src/frontend/components/LocalizedHumanTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/LocalizedHumanTime.ts -------------------------------------------------------------------------------- /src/frontend/components/Markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/Markdown.ts -------------------------------------------------------------------------------- /src/frontend/components/Pill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/Pill.ts -------------------------------------------------------------------------------- /src/frontend/components/PlaceholderThreadCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/PlaceholderThreadCard.ts -------------------------------------------------------------------------------- /src/frontend/components/ProgressBar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/ProgressBar.d.ts -------------------------------------------------------------------------------- /src/frontend/components/ProgressBar.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/ProgressBar.native.ts -------------------------------------------------------------------------------- /src/frontend/components/ProgressBar.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/ProgressBar.web.ts -------------------------------------------------------------------------------- /src/frontend/components/QuickEmojiModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/QuickEmojiModal.ts -------------------------------------------------------------------------------- /src/frontend/components/RNBridgeDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/RNBridgeDebug.ts -------------------------------------------------------------------------------- /src/frontend/components/RawFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/RawFeed.ts -------------------------------------------------------------------------------- /src/frontend/components/ReadMoreOverlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/ReadMoreOverlay.ts -------------------------------------------------------------------------------- /src/frontend/components/SettableTextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/SettableTextInput.ts -------------------------------------------------------------------------------- /src/frontend/components/StatusBarBlank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/StatusBarBlank.ts -------------------------------------------------------------------------------- /src/frontend/components/StatusBarBrand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/StatusBarBrand.ts -------------------------------------------------------------------------------- /src/frontend/components/SuggestionOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/SuggestionOption.ts -------------------------------------------------------------------------------- /src/frontend/components/Swiper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/Swiper.ts -------------------------------------------------------------------------------- /src/frontend/components/ThreadCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/ThreadCard.ts -------------------------------------------------------------------------------- /src/frontend/components/TimeAgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/TimeAgo.ts -------------------------------------------------------------------------------- /src/frontend/components/ToggleButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/ToggleButton.ts -------------------------------------------------------------------------------- /src/frontend/components/TopBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/TopBar.ts -------------------------------------------------------------------------------- /src/frontend/components/ZoomableImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/ZoomableImage.ts -------------------------------------------------------------------------------- /src/frontend/components/mail-to-bug-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/mail-to-bug-report.ts -------------------------------------------------------------------------------- /src/frontend/components/manage-aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/manage-aliases.ts -------------------------------------------------------------------------------- /src/frontend/components/messageEtc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messageEtc.ts -------------------------------------------------------------------------------- /src/frontend/components/messageShare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messageShare.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/AboutMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/AboutMessage.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/ContactBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/ContactBody.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/ContactMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/ContactMessage.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/ContentWarning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/ContentWarning.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/ForkNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/ForkNote.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/GatheringBody/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/GatheringBody/index.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/GatheringMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/GatheringMessage.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/KeylessMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/KeylessMessage.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/Message.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/MessageContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/MessageContainer.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/MessageFooter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/MessageFooter.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/MessageHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/MessageHeader.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/Metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/Metadata.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/PlaceholderMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/PlaceholderMessage.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/PostMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/PostMessage.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/RawMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/RawMessage.ts -------------------------------------------------------------------------------- /src/frontend/components/messages/ShortRawMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/messages/ShortRawMessage.ts -------------------------------------------------------------------------------- /src/frontend/components/progressCalculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/progressCalculation.ts -------------------------------------------------------------------------------- /src/frontend/components/tab-buttons/ActivityTabIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/tab-buttons/ActivityTabIcon.ts -------------------------------------------------------------------------------- /src/frontend/components/tab-buttons/PrivateTabIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/tab-buttons/PrivateTabIcon.ts -------------------------------------------------------------------------------- /src/frontend/components/tab-buttons/PublicTabIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/tab-buttons/PublicTabIcon.ts -------------------------------------------------------------------------------- /src/frontend/components/tab-buttons/TabIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/tab-buttons/TabIcon.ts -------------------------------------------------------------------------------- /src/frontend/components/tutorial-presentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/tutorial-presentation.ts -------------------------------------------------------------------------------- /src/frontend/components/tutorial-slide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/tutorial-slide.ts -------------------------------------------------------------------------------- /src/frontend/components/utils/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/utils/audio.ts -------------------------------------------------------------------------------- /src/frontend/components/withTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/components/withTitle.ts -------------------------------------------------------------------------------- /src/frontend/drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/README.md -------------------------------------------------------------------------------- /src/frontend/drivers/appstate/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/appstate/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/appstate/impl.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/appstate/impl.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/appstate/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/appstate/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/appstate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/appstate/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/asyncstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/asyncstorage.ts -------------------------------------------------------------------------------- /src/frontend/drivers/dialogs/impl.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/dialogs/impl.android.ts -------------------------------------------------------------------------------- /src/frontend/drivers/dialogs/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/dialogs/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/dialogs/impl.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/dialogs/impl.ios.ts -------------------------------------------------------------------------------- /src/frontend/drivers/dialogs/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/dialogs/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/dialogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/dialogs/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/dialogs/sharedCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/dialogs/sharedCommands.ts -------------------------------------------------------------------------------- /src/frontend/drivers/dialogs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/dialogs/types.ts -------------------------------------------------------------------------------- /src/frontend/drivers/eventbus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/eventbus.ts -------------------------------------------------------------------------------- /src/frontend/drivers/exit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/exit.ts -------------------------------------------------------------------------------- /src/frontend/drivers/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/fs.ts -------------------------------------------------------------------------------- /src/frontend/drivers/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/lifecycle.ts -------------------------------------------------------------------------------- /src/frontend/drivers/linking/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/linking/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/linking/impl.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/linking/impl.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/linking/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/linking/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/linking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/linking/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/localization/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/localization/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/localization/impl.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/localization/impl.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/localization/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/localization/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/localization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/localization/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/migrating/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/migrating/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/migrating/impl.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/migrating/impl.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/migrating/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/migrating/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/migrating/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/migrating/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/network/impl.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/network/impl.android.ts -------------------------------------------------------------------------------- /src/frontend/drivers/network/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/network/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/network/impl.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/network/impl.ios.ts -------------------------------------------------------------------------------- /src/frontend/drivers/network/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/network/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/network/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/orientation/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/orientation/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/orientation/impl.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/orientation/impl.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/orientation/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/orientation/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/orientation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/orientation/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/orientation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/orientation/types.ts -------------------------------------------------------------------------------- /src/frontend/drivers/recorder/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/recorder/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/recorder/impl.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/recorder/impl.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/recorder/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/recorder/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/recorder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/recorder/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/recorder/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/recorder/types.ts -------------------------------------------------------------------------------- /src/frontend/drivers/splashscreen/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/splashscreen/index.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/splashscreen/index.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/splashscreen/index.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/splashscreen/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/splashscreen/index.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/ssb/backend.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/ssb/backend.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/ssb/backend.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/ssb/backend.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/ssb/backend.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/ssb/backend.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/ssb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/ssb/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/ssb/ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/ssb/ports.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/ToastWeb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/ToastWeb.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/ToastWeb.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/ToastWeb.native.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/ToastWeb.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/ToastWeb.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/impl.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/impl.android.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/impl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/impl.d.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/impl.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/impl.ios.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/impl.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/impl.web.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/index.ts -------------------------------------------------------------------------------- /src/frontend/drivers/toast/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/toast/types.ts -------------------------------------------------------------------------------- /src/frontend/drivers/window-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/drivers/window-size.ts -------------------------------------------------------------------------------- /src/frontend/global-styles/dimens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/global-styles/dimens.ts -------------------------------------------------------------------------------- /src/frontend/global-styles/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/global-styles/icons.ts -------------------------------------------------------------------------------- /src/frontend/global-styles/images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/global-styles/images.d.ts -------------------------------------------------------------------------------- /src/frontend/global-styles/images.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/global-styles/images.native.ts -------------------------------------------------------------------------------- /src/frontend/global-styles/images.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/global-styles/images.web.ts -------------------------------------------------------------------------------- /src/frontend/global-styles/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/global-styles/palette.ts -------------------------------------------------------------------------------- /src/frontend/global-styles/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/global-styles/styles.ts -------------------------------------------------------------------------------- /src/frontend/global-styles/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/global-styles/typography.ts -------------------------------------------------------------------------------- /src/frontend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/index.ts -------------------------------------------------------------------------------- /src/frontend/libraries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/libraries.ts -------------------------------------------------------------------------------- /src/frontend/screens/about/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/about/README.md -------------------------------------------------------------------------------- /src/frontend/screens/about/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/about/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/accounts/README.md -------------------------------------------------------------------------------- /src/frontend/screens/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/accounts/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/accounts/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/accounts/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-manage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-manage/README.md -------------------------------------------------------------------------------- /src/frontend/screens/alias-manage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-manage/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-manage/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-manage/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-manage/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-manage/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/README.md -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/view/Failure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/view/Failure.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/view/ServerItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/view/ServerItem.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/view/Success.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/view/Success.ts -------------------------------------------------------------------------------- /src/frontend/screens/alias-register/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/alias-register/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/backup/README.md -------------------------------------------------------------------------------- /src/frontend/screens/backup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/backup/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/biography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/biography/README.md -------------------------------------------------------------------------------- /src/frontend/screens/biography/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/biography/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/biography/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/biography/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/biography/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/biography/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/README.md -------------------------------------------------------------------------------- /src/frontend/screens/central/activity-tab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/activity-tab/README.md -------------------------------------------------------------------------------- /src/frontend/screens/central/activity-tab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/activity-tab/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/activity-tab/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/activity-tab/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/activity-tab/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/activity-tab/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/activity-tab/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/activity-tab/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/activity-tab/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/activity-tab/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/connections-tab/fab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/connections-tab/fab.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/connections-tab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/connections-tab/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/connections-tab/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/connections-tab/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/connections-tab/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/connections-tab/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/private-tab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/private-tab/README.md -------------------------------------------------------------------------------- /src/frontend/screens/central/private-tab/fab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/private-tab/fab.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/private-tab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/private-tab/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/private-tab/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/private-tab/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/private-tab/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/private-tab/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/private-tab/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/private-tab/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/private-tab/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/private-tab/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/README.md -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/fab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/fab.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/public-tab/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/public-tab/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/top-bar/asyncstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/top-bar/asyncstorage.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/top-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/top-bar/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/top-bar/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/top-bar/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/top-bar/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/top-bar/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/top-bar/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/top-bar/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/central/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/central/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/compact/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compact/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/compact/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compact/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/compact/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compact/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/compact/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compact/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/compact/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compact/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose-audio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose-audio/README.md -------------------------------------------------------------------------------- /src/frontend/screens/compose-audio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose-audio/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose-audio/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose-audio/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose-audio/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose-audio/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose-audio/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose-audio/recorder.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose-audio/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose-audio/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose-audio/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose-audio/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/README.md -------------------------------------------------------------------------------- /src/frontend/screens/compose/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/alert.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/asyncstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/asyncstorage.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/dialog.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/top-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/top-bar/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/types.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/web-paster.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/web-paster.d.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/web-paster.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/web-paster.native.ts -------------------------------------------------------------------------------- /src/frontend/screens/compose/web-paster.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/compose/web-paster.web.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/README.md -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/alert.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/connDialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/connDialogs.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/dialog.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/view/README.md -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/connections-panel/view/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/connections-panel/view/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/README.md -------------------------------------------------------------------------------- /src/frontend/screens/conversation/asyncstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/asyncstorage.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/conversation/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/conversation/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/README.md -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/index.d.ts -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/index.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/index.native.ts -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/index.web.ts -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/desktop-frame/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/desktop-frame/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/README.md -------------------------------------------------------------------------------- /src/frontend/screens/drawer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/index.d.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/index.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/index.native.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/index.web.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/linking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/linking.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/drawer/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/drawer/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/enums.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/asyncstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/asyncstorage.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/view/Header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/view/Header.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/view/ListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/view/ListItem.ts -------------------------------------------------------------------------------- /src/frontend/screens/feed-settings/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/feed-settings/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/README.md -------------------------------------------------------------------------------- /src/frontend/screens/global/asyncstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/asyncstorage.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/dialog.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/localization.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/global/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/global/toast.ts -------------------------------------------------------------------------------- /src/frontend/screens/indexing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/indexing/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/indexing/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/indexing/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/indexing/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/indexing/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/indexing/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/indexing/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/indexing/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/indexing/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/instructions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/instructions/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/instructions/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/instructions/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/instructions/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/instructions/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/invite-paste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/invite-paste/README.md -------------------------------------------------------------------------------- /src/frontend/screens/invite-paste/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/invite-paste/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/invite-paste/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/invite-paste/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/invite-paste/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/invite-paste/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/invite-paste/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/invite-paste/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/invite-paste/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/invite-paste/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/invite-paste/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/invite-paste/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/invite-paste/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/invite-paste/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/layouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/layouts.ts -------------------------------------------------------------------------------- /src/frontend/screens/libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/libraries/README.md -------------------------------------------------------------------------------- /src/frontend/screens/libraries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/libraries/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/migrating/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/migrating/index.d.ts -------------------------------------------------------------------------------- /src/frontend/screens/migrating/index.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/migrating/index.native.ts -------------------------------------------------------------------------------- /src/frontend/screens/migrating/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/migrating/index.web.ts -------------------------------------------------------------------------------- /src/frontend/screens/migrating/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/migrating/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/migrating/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/migrating/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/README.md -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile-edit/view/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile-edit/view/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/README.md -------------------------------------------------------------------------------- /src/frontend/screens/profile/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/alert.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/feed-id-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/feed-id-dialog.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/manage-contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/manage-contact.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/view/ConnectionDot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/view/ConnectionDot.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/view/ProfileAvatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/view/ProfileAvatar.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/view/ProfileHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/view/ProfileHeader.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/view/ProfileID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/view/ProfileID.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/view/ProfileName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/view/ProfileName.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/view/ProfileTopBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/view/ProfileTopBar.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/profile/view/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/profile/view/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/raw-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/raw-db/README.md -------------------------------------------------------------------------------- /src/frontend/screens/raw-db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/raw-db/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/raw-msg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/raw-msg/README.md -------------------------------------------------------------------------------- /src/frontend/screens/raw-msg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/raw-msg/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/recipients-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/recipients-input/README.md -------------------------------------------------------------------------------- /src/frontend/screens/recipients-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/recipients-input/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/recipients-input/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/recipients-input/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/recipients-input/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/recipients-input/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/recipients-input/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/recipients-input/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/recipients-input/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/recipients-input/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/recipients-input/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/recipients-input/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/recipients-input/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/recipients-input/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/resync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/resync/README.md -------------------------------------------------------------------------------- /src/frontend/screens/resync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/resync/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/resync/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/resync/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/resync/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/resync/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/resync/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/resync/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/resync/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/resync/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/resync/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/resync/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/README.md -------------------------------------------------------------------------------- /src/frontend/screens/search/fab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/fab.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/search/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/search/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/secret-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/secret-input/README.md -------------------------------------------------------------------------------- /src/frontend/screens/secret-input/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/secret-input/dialog.ts -------------------------------------------------------------------------------- /src/frontend/screens/secret-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/secret-input/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/secret-input/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/secret-input/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/secret-input/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/secret-input/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/secret-input/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/secret-input/view.ts -------------------------------------------------------------------------------- /src/frontend/screens/secret-output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/secret-output/README.md -------------------------------------------------------------------------------- /src/frontend/screens/secret-output/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/secret-output/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/README.md -------------------------------------------------------------------------------- /src/frontend/screens/settings/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/alert.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/asyncstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/asyncstorage.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/linking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/linking.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/view/LinkSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/view/LinkSetting.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/view/SliderSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/view/SliderSetting.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/view/ToggleSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/view/ToggleSetting.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/settings/view/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/settings/view/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/manage-contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/manage-contact.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/view/StorageHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/view/StorageHeader.ts -------------------------------------------------------------------------------- /src/frontend/screens/storage/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/storage/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/thanks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thanks/README.md -------------------------------------------------------------------------------- /src/frontend/screens/thanks/backers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thanks/backers.ts -------------------------------------------------------------------------------- /src/frontend/screens/thanks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thanks/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/README.md -------------------------------------------------------------------------------- /src/frontend/screens/thread/asyncstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/asyncstorage.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/layout.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/props.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/ssb.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/styles.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/view/FullThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/view/FullThread.ts -------------------------------------------------------------------------------- /src/frontend/screens/thread/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/thread/view/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/welcome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/welcome/README.md -------------------------------------------------------------------------------- /src/frontend/screens/welcome/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/welcome/alert.ts -------------------------------------------------------------------------------- /src/frontend/screens/welcome/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/welcome/index.ts -------------------------------------------------------------------------------- /src/frontend/screens/welcome/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/welcome/intent.ts -------------------------------------------------------------------------------- /src/frontend/screens/welcome/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/welcome/model.ts -------------------------------------------------------------------------------- /src/frontend/screens/welcome/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/welcome/navigation.ts -------------------------------------------------------------------------------- /src/frontend/screens/welcome/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/screens/welcome/view.ts -------------------------------------------------------------------------------- /src/frontend/ssb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/README.md -------------------------------------------------------------------------------- /src/frontend/ssb/channel.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/channel.android.ts -------------------------------------------------------------------------------- /src/frontend/ssb/channel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/channel.d.ts -------------------------------------------------------------------------------- /src/frontend/ssb/channel.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/channel.ios.ts -------------------------------------------------------------------------------- /src/frontend/ssb/channel.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/channel.web.ts -------------------------------------------------------------------------------- /src/frontend/ssb/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/client.ts -------------------------------------------------------------------------------- /src/frontend/ssb/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/manifest.ts -------------------------------------------------------------------------------- /src/frontend/ssb/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/plugins/README.md -------------------------------------------------------------------------------- /src/frontend/ssb/plugins/cachedAboutSelf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/plugins/cachedAboutSelf.ts -------------------------------------------------------------------------------- /src/frontend/ssb/plugins/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/plugins/hooks.ts -------------------------------------------------------------------------------- /src/frontend/ssb/plugins/publishUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/plugins/publishUtils.ts -------------------------------------------------------------------------------- /src/frontend/ssb/plugins/threadsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/plugins/threadsUtils.ts -------------------------------------------------------------------------------- /src/frontend/ssb/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/types.ts -------------------------------------------------------------------------------- /src/frontend/ssb/utils/alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/utils/alias.ts -------------------------------------------------------------------------------- /src/frontend/ssb/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/utils/constants.ts -------------------------------------------------------------------------------- /src/frontend/ssb/utils/from-ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/utils/from-ssb.ts -------------------------------------------------------------------------------- /src/frontend/ssb/utils/to-ssb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/ssb/utils/to-ssb.ts -------------------------------------------------------------------------------- /src/frontend/symbols.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/symbols.d.ts -------------------------------------------------------------------------------- /src/frontend/symbols.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/symbols.native.ts -------------------------------------------------------------------------------- /src/frontend/symbols.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/symbols.web.ts -------------------------------------------------------------------------------- /src/frontend/versionName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/src/frontend/versionName.ts -------------------------------------------------------------------------------- /test/apple-app-store-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/apple-app-store-demo/README.md -------------------------------------------------------------------------------- /test/apple-app-store-demo/flume/log.offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/apple-app-store-demo/flume/log.offset -------------------------------------------------------------------------------- /test/apple-app-store-demo/flume/log.offset.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/apple-app-store-demo/flume/log.offset.license -------------------------------------------------------------------------------- /test/apple-app-store-demo/jane-recovery-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/apple-app-store-demo/jane-recovery-words.txt -------------------------------------------------------------------------------- /test/apple-app-store-demo/secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/apple-app-store-demo/secret -------------------------------------------------------------------------------- /test/apple-app-store-demo/secret.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/apple-app-store-demo/secret.license -------------------------------------------------------------------------------- /test/benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/index.js -------------------------------------------------------------------------------- /test/benchmark/initial-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/initial-sync.js -------------------------------------------------------------------------------- /test/benchmark/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/results.csv -------------------------------------------------------------------------------- /test/benchmark/results.csv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/results.csv.license -------------------------------------------------------------------------------- /test/benchmark/sync-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/.gitignore -------------------------------------------------------------------------------- /test/benchmark/sync-server/data/flume/log.offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/data/flume/log.offset -------------------------------------------------------------------------------- /test/benchmark/sync-server/data/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/data/report.md -------------------------------------------------------------------------------- /test/benchmark/sync-server/data/secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/data/secret -------------------------------------------------------------------------------- /test/benchmark/sync-server/data/secret-b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/data/secret-b -------------------------------------------------------------------------------- /test/benchmark/sync-server/data/secret-b.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/data/secret-b.license -------------------------------------------------------------------------------- /test/benchmark/sync-server/data/secret-c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/data/secret-c -------------------------------------------------------------------------------- /test/benchmark/sync-server/data/secret-c.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/data/secret-c.license -------------------------------------------------------------------------------- /test/benchmark/sync-server/data/secret.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/data/secret.license -------------------------------------------------------------------------------- /test/benchmark/sync-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/index.js -------------------------------------------------------------------------------- /test/benchmark/sync-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/package-lock.json -------------------------------------------------------------------------------- /test/benchmark/sync-server/package-lock.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/package-lock.json.license -------------------------------------------------------------------------------- /test/benchmark/sync-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/package.json -------------------------------------------------------------------------------- /test/benchmark/sync-server/package.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/benchmark/sync-server/package.json.license -------------------------------------------------------------------------------- /test/e2e/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/README.md -------------------------------------------------------------------------------- /test/e2e/android/central.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/central.js -------------------------------------------------------------------------------- /test/e2e/android/compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/compose.js -------------------------------------------------------------------------------- /test/e2e/android/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/connections.js -------------------------------------------------------------------------------- /test/e2e/android/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/drawer.js -------------------------------------------------------------------------------- /test/e2e/android/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/feed.js -------------------------------------------------------------------------------- /test/e2e/android/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/index.js -------------------------------------------------------------------------------- /test/e2e/android/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/profile.js -------------------------------------------------------------------------------- /test/e2e/android/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/settings.js -------------------------------------------------------------------------------- /test/e2e/android/thread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/thread.js -------------------------------------------------------------------------------- /test/e2e/android/utils/recovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/utils/recovery.js -------------------------------------------------------------------------------- /test/e2e/android/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/android/welcome.js -------------------------------------------------------------------------------- /test/e2e/desktop/central.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/central.test.ts -------------------------------------------------------------------------------- /test/e2e/desktop/compose-attach.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/compose-attach.test.ts -------------------------------------------------------------------------------- /test/e2e/desktop/compose-content-warning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/compose-content-warning.test.ts -------------------------------------------------------------------------------- /test/e2e/desktop/compose-draft-save.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/compose-draft-save.test.ts -------------------------------------------------------------------------------- /test/e2e/desktop/compose.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/compose.test.ts -------------------------------------------------------------------------------- /test/e2e/desktop/fixtures/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/fixtures/image.png -------------------------------------------------------------------------------- /test/e2e/desktop/rogue-post.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/rogue-post.test.ts -------------------------------------------------------------------------------- /test/e2e/desktop/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/utils.ts -------------------------------------------------------------------------------- /test/e2e/desktop/welcome.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/e2e/desktop/welcome.test.ts -------------------------------------------------------------------------------- /test/smoke/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/smoke/android/README.md -------------------------------------------------------------------------------- /test/smoke/android/central.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/smoke/android/central.js -------------------------------------------------------------------------------- /test/smoke/android/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/smoke/android/index.js -------------------------------------------------------------------------------- /test/smoke/android/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/smoke/android/welcome.js -------------------------------------------------------------------------------- /test/smoke/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/smoke/ios/README.md -------------------------------------------------------------------------------- /test/smoke/ios/central.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/smoke/ios/central.js -------------------------------------------------------------------------------- /test/smoke/ios/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/smoke/ios/index.js -------------------------------------------------------------------------------- /test/smoke/ios/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/test/smoke/ios/welcome.js -------------------------------------------------------------------------------- /tools/analyse-backend-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/analyse-backend-bundle.js -------------------------------------------------------------------------------- /tools/backend/build-native-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/backend/build-native-modules.sh -------------------------------------------------------------------------------- /tools/backend/move-shared-libs-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/backend/move-shared-libs-android.sh -------------------------------------------------------------------------------- /tools/backend/move-to-desktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/backend/move-to-desktop.js -------------------------------------------------------------------------------- /tools/backend/move-to-nodejs-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/backend/move-to-nodejs-assets.sh -------------------------------------------------------------------------------- /tools/backend/noderify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/backend/noderify.js -------------------------------------------------------------------------------- /tools/backend/post-remove-unused-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/backend/post-remove-unused-files.sh -------------------------------------------------------------------------------- /tools/backend/pre-remove-unused-files-desktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/backend/pre-remove-unused-files-desktop.js -------------------------------------------------------------------------------- /tools/backend/pre-remove-unused-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/backend/pre-remove-unused-files.sh -------------------------------------------------------------------------------- /tools/benchmark-initial-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/benchmark-initial-sync -------------------------------------------------------------------------------- /tools/build-backend.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/build-backend.mjs -------------------------------------------------------------------------------- /tools/commit-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/commit-release -------------------------------------------------------------------------------- /tools/echo-android-changelog.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/echo-android-changelog.mjs -------------------------------------------------------------------------------- /tools/echo-emoji-changelog.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/echo-emoji-changelog.mjs -------------------------------------------------------------------------------- /tools/echo-ios-changelog.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/echo-ios-changelog.mjs -------------------------------------------------------------------------------- /tools/echo-ssb-post.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/echo-ssb-post.mjs -------------------------------------------------------------------------------- /tools/generate-changelog.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/generate-changelog.mjs -------------------------------------------------------------------------------- /tools/improve-cpuprofiler-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/improve-cpuprofiler-output.js -------------------------------------------------------------------------------- /tools/install-node-gyp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/install-node-gyp.ps1 -------------------------------------------------------------------------------- /tools/install-vs-build-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/install-vs-build-tools.ps1 -------------------------------------------------------------------------------- /tools/print-crash-aggregration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/print-crash-aggregration.js -------------------------------------------------------------------------------- /tools/print-service-desk-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/print-service-desk-report.js -------------------------------------------------------------------------------- /tools/report-libraries.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/report-libraries.mjs -------------------------------------------------------------------------------- /tools/start-appium-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/start-appium-server -------------------------------------------------------------------------------- /tools/stop-appium-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/stop-appium-server -------------------------------------------------------------------------------- /tools/sync-i18n-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/sync-i18n-data.js -------------------------------------------------------------------------------- /tools/test-e2e-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/test-e2e-android -------------------------------------------------------------------------------- /tools/test-e2e-desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/test-e2e-desktop -------------------------------------------------------------------------------- /tools/test-smoke-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/test-smoke-android -------------------------------------------------------------------------------- /tools/test-smoke-ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/test-smoke-ios -------------------------------------------------------------------------------- /tools/update-desktop-release-resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/update-desktop-release-resources -------------------------------------------------------------------------------- /tools/update-i18n-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/update-i18n-types.js -------------------------------------------------------------------------------- /tools/update-repo-changelog.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/update-repo-changelog.mjs -------------------------------------------------------------------------------- /tools/update-top-backers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/update-top-backers.mjs -------------------------------------------------------------------------------- /tools/update-version-ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/update-version-ios.js -------------------------------------------------------------------------------- /tools/update-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/update-version.js -------------------------------------------------------------------------------- /tools/validate-license-year.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tools/validate-license-year.sh -------------------------------------------------------------------------------- /translations: -------------------------------------------------------------------------------- 1 | android/app/src/main/assets/translations -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/i18n-js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/typings/i18n-js.d.ts -------------------------------------------------------------------------------- /typings/pull-stream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/typings/pull-stream.d.ts -------------------------------------------------------------------------------- /typings/react-native-dialogs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/manyverse/HEAD/typings/react-native-dialogs.d.ts --------------------------------------------------------------------------------