├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── .prettierrc.js ├── .travis.yml ├── .watchmanconfig ├── App.js ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPERS.md ├── LICENSE ├── README.md ├── RELEASE_HOWTO.md ├── TERMS_AND_PRIVACY_POLICY.md ├── android ├── .buckconfig ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── org │ │ │ └── felfele │ │ │ └── feeds │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 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 │ │ └── launch_screen.png │ │ ├── mipmap-ldpi │ │ └── launch_screen.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── launch_screen.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── launch_screen.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── launch_screen.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── launch_screen.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── debug.keystore ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── link-assets-manifest.json └── settings.gradle ├── app-site-association └── apple-app-site-association ├── app.json ├── babel.config.js ├── docs ├── SocialApi.md ├── SocialApiDiagrams.xml ├── SocialApiPostFeedUpdate.md ├── SocialApiPostsOnSwarm.md ├── post1.png ├── post2-with-image.png ├── post2-with-uploaded-image.png ├── swarm-feed1.png └── swarm-feed2.png ├── e2e ├── OnboardingTest.spec.js ├── PostWorkflowTest.spec.js ├── init.js └── mocha.opts ├── exploreData.json ├── fonts ├── Roboto-Bold.ttf ├── Roboto-Medium.ttf └── Roboto-Regular.ttf ├── google-play-badge.png ├── icon.png ├── iconBeta.png ├── icon_android_foreground.png ├── images ├── assets │ └── defaultuser.png ├── felfele-assistant.png └── icon-white-transparent.png ├── index.js ├── ios ├── Feeds.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── feeds.xcscheme ├── Felfele-tvOS │ └── Info.plist ├── Felfele-tvOSTests │ └── Info.plist ├── Felfele │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Felfele.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── ios-marketing-1024x1024-1x.png │ │ │ ├── ipad-20x20-1x.png │ │ │ ├── ipad-20x20-2x.png │ │ │ ├── ipad-29x29-1x.png │ │ │ ├── ipad-29x29-2x.png │ │ │ ├── ipad-40x40-1x.png │ │ │ ├── ipad-40x40-2x.png │ │ │ ├── ipad-50x50-1x.png │ │ │ ├── ipad-50x50-2x.png │ │ │ ├── ipad-72x72-1x.png │ │ │ ├── ipad-72x72-2x.png │ │ │ ├── ipad-76x76-1x.png │ │ │ ├── ipad-76x76-2x.png │ │ │ ├── ipad-83.5x83.5-2x.png │ │ │ ├── iphone-20x20-2x.png │ │ │ ├── iphone-20x20-3x.png │ │ │ ├── iphone-29x29-1x.png │ │ │ ├── iphone-29x29-2x.png │ │ │ ├── iphone-29x29-3x.png │ │ │ ├── iphone-40x40-2x.png │ │ │ ├── iphone-40x40-3x.png │ │ │ ├── iphone-57x57-1x.png │ │ │ ├── iphone-57x57-2x.png │ │ │ ├── iphone-60x60-2x.png │ │ │ └── iphone-60x60-3x.png │ │ ├── AppIconBeta.appiconset │ │ │ ├── Contents.json │ │ │ ├── ios-marketing-1024x1024-1x.png │ │ │ ├── ipad-20x20-1x.png │ │ │ ├── ipad-20x20-2x.png │ │ │ ├── ipad-29x29-1x.png │ │ │ ├── ipad-29x29-2x.png │ │ │ ├── ipad-40x40-1x.png │ │ │ ├── ipad-40x40-2x.png │ │ │ ├── ipad-50x50-1x.png │ │ │ ├── ipad-50x50-2x.png │ │ │ ├── ipad-72x72-1x.png │ │ │ ├── ipad-72x72-2x.png │ │ │ ├── ipad-76x76-1x.png │ │ │ ├── ipad-76x76-2x.png │ │ │ ├── ipad-83.5x83.5-2x.png │ │ │ ├── iphone-20x20-2x.png │ │ │ ├── iphone-20x20-3x.png │ │ │ ├── iphone-29x29-1x.png │ │ │ ├── iphone-29x29-2x.png │ │ │ ├── iphone-29x29-3x.png │ │ │ ├── iphone-40x40-2x.png │ │ │ ├── iphone-40x40-3x.png │ │ │ ├── iphone-57x57-1x.png │ │ │ ├── iphone-57x57-2x.png │ │ │ ├── iphone-60x60-2x.png │ │ │ └── iphone-60x60-3x.png │ │ ├── Contents.json │ │ └── splash.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-white-transparent-1x-1.png │ │ │ ├── icon-white-transparent-2x-1.png │ │ │ └── icon-white-transparent-3x-1.png │ ├── Info.plist │ └── main.m ├── FelfeleTests │ ├── FelfeleTests.m │ └── Info.plist ├── Launch Screen.storyboard ├── Podfile ├── Podfile.lock ├── feeds.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── link-assets-manifest.json ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── rn-cli.config.js ├── screenshot-mobile.png ├── scripts ├── build_android_signed_release.sh ├── build_android_unsigned_release.sh ├── build_xcode_archive.sh ├── cli.sh ├── export_keystore_passes_macos.sh ├── fix_androidx.sh ├── get_build_number.sh ├── git_tag.sh ├── git_update_branch.sh ├── increase_build_number.sh ├── increase_version_number.sh ├── patch_version_ts.sh ├── release_beta.sh ├── release_new_version.sh ├── tests │ ├── private_channel_contact_list.sh │ ├── private_channel_contact_post.sh │ └── setup_default_contacts.sh └── upload_android_release.sh ├── src ├── App.tsx ├── BuildEnvironment.ts ├── Version.ts ├── actions │ ├── ActionTypes.ts │ ├── Actions.ts │ ├── actionHelpers.ts │ ├── asyncActions.ts │ └── types.ts ├── cli │ ├── cli.ts │ ├── cliHelpers.ts │ ├── cliParser.ts │ ├── html.ts │ ├── logo-data-url.ts │ ├── post.ts │ ├── publish.ts │ └── rss.ts ├── defaultImages.ts ├── helpers │ ├── Debug.ts │ ├── HtmlUtils.ts │ ├── RSSFeedHelpers.ts │ ├── RSSPostHelpers.ts │ ├── Utils.ts │ ├── assertEquals.ts │ ├── atomFeedHelpers.ts │ ├── conversion.ts │ ├── dateHelpers.ts │ ├── dialogs.ts │ ├── favicon.ts │ ├── feedHelpers.ts │ ├── htmlMetaData.ts │ ├── imageDataHelpers.ts │ ├── immutable.ts │ ├── linkHelpers.ts │ ├── log.ts │ ├── markdown.ts │ ├── navigation.ts │ ├── opaqueTypes.ts │ ├── openGraph.ts │ ├── opmlImport.ts │ ├── postHelpers.ts │ ├── redditFeedHelpers.ts │ ├── restart.ts │ ├── safeFetch.ts │ ├── tryExpr.ts │ ├── twitterFeedHelpers.ts │ ├── urlUtils.ts │ └── youtubeFeedHelpers.ts ├── models │ ├── Author.ts │ ├── ContentFilter.ts │ ├── Feed.ts │ ├── ImageData.ts │ ├── Metadata.ts │ ├── Model.ts │ ├── Post.ts │ ├── Settings.ts │ └── recommendation │ │ └── NewsSource.ts ├── reducers │ ├── AppState.ts │ ├── defaultData.ts │ ├── index.ts │ ├── migration.ts │ └── version0.ts ├── selectors │ └── selectors.ts ├── store │ ├── felfeleInit.ts │ └── index.ts ├── styles.ts ├── swarm │ └── Swarm.ts └── ui │ ├── buttons │ ├── RowButton.tsx │ ├── TwoButton.tsx │ └── WideButton.tsx │ ├── card │ ├── Card.tsx │ ├── CardContainer.ts │ ├── CardMarkdown.tsx │ └── __mocks__ │ │ └── CardMarkdown.tsx │ ├── misc │ ├── Avatar.tsx │ ├── ChildrenProps.ts │ ├── ErrorBoundary.tsx │ ├── FragmentSafeAreaView.tsx │ ├── GridCard.tsx │ ├── ImageDataView.tsx │ ├── LoadingView.tsx │ ├── NavigationHeader.tsx │ ├── PlaceholderCard.tsx │ ├── RefreshableFeed.tsx │ ├── SimpleTextInput.tsx │ ├── StatusBarView.tsx │ ├── TabBarPlaceholder.tsx │ ├── TopLevelErrorBoundary.tsx │ ├── TouchableView.tsx │ ├── __mocks__ │ │ └── Carousel.tsx │ └── text.tsx │ └── screens │ ├── bug-report │ └── BugReportScreen.tsx │ ├── debug │ ├── DebugScreen.tsx │ └── DebugScreenContainer.ts │ ├── explore │ ├── CategoriesContainer.tsx │ ├── CategoriesScreen.tsx │ ├── NewsSourceGridContainer.tsx │ ├── NewsSourceGridScreen.tsx │ ├── SubCategoriesContainer.tsx │ └── SubCategoriesScreen.tsx │ ├── export-import │ ├── ExportImportScreen.tsx │ ├── ExportScreen.tsx │ └── ExportScreenContainer.ts │ ├── feed-info │ ├── FeedInfo.tsx │ ├── FeedInfoContainer.ts │ └── RSSFeedInfo.tsx │ ├── feed-link-reader │ ├── FeedLinkReader.tsx │ └── FeedLinkReaderContainer.ts │ ├── feed-view │ ├── FeedContainer.ts │ ├── FeedView.tsx │ ├── FeedViewContainer.ts │ └── NewSourceFeedContainer.ts │ ├── filters │ ├── FilterEditorContainer.ts │ ├── FilterEditorScreen.tsx │ ├── FilterListScreen.tsx │ └── FilterListScreenContainer.ts │ ├── log-viewer │ ├── LogViewerScreen.tsx │ └── LogViewerScreenContainer.ts │ ├── public-channels │ ├── PublicChannelsContainer.ts │ ├── PublicChannelsListContainer.ts │ ├── PublicChannelsListView.tsx │ └── PublicChannelsScreen.tsx │ ├── rss-feed │ ├── RSSFeedLoader.tsx │ └── RSSFeedLoaderContainer.ts │ └── settings │ ├── PrivacyPolicy.tsx │ ├── SettingsScreen.tsx │ ├── SettingsScreenContainer.ts │ ├── SwarmSettings.tsx │ └── SwarmSettingsContainer.ts ├── test ├── cliParserTest.ts ├── components │ └── CardTest.tsx └── helpers │ ├── HtmlUtilsTest.ts │ ├── RSSPostHelpersTest.ts │ ├── conversionTest.ts │ ├── dateHelpersTest.ts │ ├── feedHelpersTest.ts │ ├── markdownTest.ts │ ├── openGraph.ts │ ├── postHelpersTest.ts │ ├── redditFeedHelpersTest.ts │ ├── tryExprTest.ts │ └── urlUtilsTest.ts ├── testflight-badge.png ├── tsconfig.json └── tslint.json /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/App.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/RELEASE_HOWTO.md -------------------------------------------------------------------------------- /TERMS_AND_PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/TERMS_AND_PRIVACY_POLICY.md -------------------------------------------------------------------------------- /android/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/.buckconfig -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/main/java/org/felfele/feeds/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/java/org/felfele/feeds/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/felfele/feeds/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/java/org/felfele/feeds/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-hdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-ldpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-mdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xhdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xxhdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/debug.keystore -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/link-assets-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/link-assets-manifest.json -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app-site-association/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/app-site-association/apple-app-site-association -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/SocialApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/SocialApi.md -------------------------------------------------------------------------------- /docs/SocialApiDiagrams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/SocialApiDiagrams.xml -------------------------------------------------------------------------------- /docs/SocialApiPostFeedUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/SocialApiPostFeedUpdate.md -------------------------------------------------------------------------------- /docs/SocialApiPostsOnSwarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/SocialApiPostsOnSwarm.md -------------------------------------------------------------------------------- /docs/post1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/post1.png -------------------------------------------------------------------------------- /docs/post2-with-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/post2-with-image.png -------------------------------------------------------------------------------- /docs/post2-with-uploaded-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/post2-with-uploaded-image.png -------------------------------------------------------------------------------- /docs/swarm-feed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/swarm-feed1.png -------------------------------------------------------------------------------- /docs/swarm-feed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/docs/swarm-feed2.png -------------------------------------------------------------------------------- /e2e/OnboardingTest.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/e2e/OnboardingTest.spec.js -------------------------------------------------------------------------------- /e2e/PostWorkflowTest.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/e2e/PostWorkflowTest.spec.js -------------------------------------------------------------------------------- /e2e/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/e2e/init.js -------------------------------------------------------------------------------- /e2e/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/e2e/mocha.opts -------------------------------------------------------------------------------- /exploreData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/exploreData.json -------------------------------------------------------------------------------- /fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/google-play-badge.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/icon.png -------------------------------------------------------------------------------- /iconBeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/iconBeta.png -------------------------------------------------------------------------------- /icon_android_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/icon_android_foreground.png -------------------------------------------------------------------------------- /images/assets/defaultuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/images/assets/defaultuser.png -------------------------------------------------------------------------------- /images/felfele-assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/images/felfele-assistant.png -------------------------------------------------------------------------------- /images/icon-white-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/images/icon-white-transparent.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/index.js -------------------------------------------------------------------------------- /ios/Feeds.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Feeds.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Feeds.xcodeproj/xcshareddata/xcschemes/feeds.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Feeds.xcodeproj/xcshareddata/xcschemes/feeds.xcscheme -------------------------------------------------------------------------------- /ios/Felfele-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/Felfele-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/Felfele/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/AppDelegate.h -------------------------------------------------------------------------------- /ios/Felfele/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/AppDelegate.m -------------------------------------------------------------------------------- /ios/Felfele/Felfele.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Felfele.entitlements -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ios-marketing-1024x1024-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ios-marketing-1024x1024-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-20x20-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-20x20-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-20x20-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-20x20-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-29x29-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-29x29-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-29x29-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-29x29-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-40x40-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-40x40-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-40x40-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-40x40-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-50x50-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-50x50-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-50x50-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-50x50-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-72x72-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-72x72-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-72x72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-72x72-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-76x76-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-76x76-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-76x76-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-76x76-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-83.5x83.5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/ipad-83.5x83.5-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-20x20-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-20x20-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-20x20-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-20x20-3x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-29x29-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-29x29-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-29x29-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-29x29-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-29x29-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-29x29-3x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-40x40-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-40x40-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-40x40-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-40x40-3x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-57x57-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-57x57-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-57x57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-57x57-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-60x60-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-60x60-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-60x60-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIcon.appiconset/iphone-60x60-3x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ios-marketing-1024x1024-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ios-marketing-1024x1024-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-20x20-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-20x20-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-20x20-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-20x20-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-29x29-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-29x29-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-29x29-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-29x29-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-40x40-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-40x40-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-40x40-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-40x40-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-50x50-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-50x50-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-50x50-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-50x50-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-72x72-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-72x72-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-72x72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-72x72-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-76x76-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-76x76-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-76x76-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-76x76-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-83.5x83.5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/ipad-83.5x83.5-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-20x20-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-20x20-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-20x20-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-20x20-3x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-29x29-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-29x29-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-29x29-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-29x29-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-29x29-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-29x29-3x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-40x40-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-40x40-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-40x40-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-40x40-3x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-57x57-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-57x57-1x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-57x57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-57x57-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-60x60-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-60x60-2x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-60x60-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/AppIconBeta.appiconset/iphone-60x60-3x.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/splash.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/splash.imageset/icon-white-transparent-1x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/splash.imageset/icon-white-transparent-1x-1.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/splash.imageset/icon-white-transparent-2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/splash.imageset/icon-white-transparent-2x-1.png -------------------------------------------------------------------------------- /ios/Felfele/Images.xcassets/splash.imageset/icon-white-transparent-3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Images.xcassets/splash.imageset/icon-white-transparent-3x-1.png -------------------------------------------------------------------------------- /ios/Felfele/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/Info.plist -------------------------------------------------------------------------------- /ios/Felfele/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Felfele/main.m -------------------------------------------------------------------------------- /ios/FelfeleTests/FelfeleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/FelfeleTests/FelfeleTests.m -------------------------------------------------------------------------------- /ios/FelfeleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/FelfeleTests/Info.plist -------------------------------------------------------------------------------- /ios/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Launch Screen.storyboard -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/feeds.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/feeds.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/feeds.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/feeds.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/link-assets-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/ios/link-assets-manifest.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/jest.config.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/react-native.config.js -------------------------------------------------------------------------------- /rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/rn-cli.config.js -------------------------------------------------------------------------------- /screenshot-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/screenshot-mobile.png -------------------------------------------------------------------------------- /scripts/build_android_signed_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/build_android_signed_release.sh -------------------------------------------------------------------------------- /scripts/build_android_unsigned_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/build_android_unsigned_release.sh -------------------------------------------------------------------------------- /scripts/build_xcode_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/build_xcode_archive.sh -------------------------------------------------------------------------------- /scripts/cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/cli.sh -------------------------------------------------------------------------------- /scripts/export_keystore_passes_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/export_keystore_passes_macos.sh -------------------------------------------------------------------------------- /scripts/fix_androidx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/fix_androidx.sh -------------------------------------------------------------------------------- /scripts/get_build_number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/get_build_number.sh -------------------------------------------------------------------------------- /scripts/git_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/git_tag.sh -------------------------------------------------------------------------------- /scripts/git_update_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/git_update_branch.sh -------------------------------------------------------------------------------- /scripts/increase_build_number.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | npm run increment-build 4 | -------------------------------------------------------------------------------- /scripts/increase_version_number.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | npm version patch --no-git-tag 4 | -------------------------------------------------------------------------------- /scripts/patch_version_ts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/patch_version_ts.sh -------------------------------------------------------------------------------- /scripts/release_beta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/release_beta.sh -------------------------------------------------------------------------------- /scripts/release_new_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/release_new_version.sh -------------------------------------------------------------------------------- /scripts/tests/private_channel_contact_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/tests/private_channel_contact_list.sh -------------------------------------------------------------------------------- /scripts/tests/private_channel_contact_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/tests/private_channel_contact_post.sh -------------------------------------------------------------------------------- /scripts/tests/setup_default_contacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/tests/setup_default_contacts.sh -------------------------------------------------------------------------------- /scripts/upload_android_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/scripts/upload_android_release.sh -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/BuildEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/BuildEnvironment.ts -------------------------------------------------------------------------------- /src/Version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/Version.ts -------------------------------------------------------------------------------- /src/actions/ActionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/actions/ActionTypes.ts -------------------------------------------------------------------------------- /src/actions/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/actions/Actions.ts -------------------------------------------------------------------------------- /src/actions/actionHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/actions/actionHelpers.ts -------------------------------------------------------------------------------- /src/actions/asyncActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/actions/asyncActions.ts -------------------------------------------------------------------------------- /src/actions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/actions/types.ts -------------------------------------------------------------------------------- /src/cli/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/cli/cli.ts -------------------------------------------------------------------------------- /src/cli/cliHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/cli/cliHelpers.ts -------------------------------------------------------------------------------- /src/cli/cliParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/cli/cliParser.ts -------------------------------------------------------------------------------- /src/cli/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/cli/html.ts -------------------------------------------------------------------------------- /src/cli/logo-data-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/cli/logo-data-url.ts -------------------------------------------------------------------------------- /src/cli/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/cli/post.ts -------------------------------------------------------------------------------- /src/cli/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/cli/publish.ts -------------------------------------------------------------------------------- /src/cli/rss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/cli/rss.ts -------------------------------------------------------------------------------- /src/defaultImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/defaultImages.ts -------------------------------------------------------------------------------- /src/helpers/Debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/Debug.ts -------------------------------------------------------------------------------- /src/helpers/HtmlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/HtmlUtils.ts -------------------------------------------------------------------------------- /src/helpers/RSSFeedHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/RSSFeedHelpers.ts -------------------------------------------------------------------------------- /src/helpers/RSSPostHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/RSSPostHelpers.ts -------------------------------------------------------------------------------- /src/helpers/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/Utils.ts -------------------------------------------------------------------------------- /src/helpers/assertEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/assertEquals.ts -------------------------------------------------------------------------------- /src/helpers/atomFeedHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/atomFeedHelpers.ts -------------------------------------------------------------------------------- /src/helpers/conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/conversion.ts -------------------------------------------------------------------------------- /src/helpers/dateHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/dateHelpers.ts -------------------------------------------------------------------------------- /src/helpers/dialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/dialogs.ts -------------------------------------------------------------------------------- /src/helpers/favicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/favicon.ts -------------------------------------------------------------------------------- /src/helpers/feedHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/feedHelpers.ts -------------------------------------------------------------------------------- /src/helpers/htmlMetaData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/htmlMetaData.ts -------------------------------------------------------------------------------- /src/helpers/imageDataHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/imageDataHelpers.ts -------------------------------------------------------------------------------- /src/helpers/immutable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/immutable.ts -------------------------------------------------------------------------------- /src/helpers/linkHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/linkHelpers.ts -------------------------------------------------------------------------------- /src/helpers/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/log.ts -------------------------------------------------------------------------------- /src/helpers/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/markdown.ts -------------------------------------------------------------------------------- /src/helpers/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/navigation.ts -------------------------------------------------------------------------------- /src/helpers/opaqueTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/opaqueTypes.ts -------------------------------------------------------------------------------- /src/helpers/openGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/openGraph.ts -------------------------------------------------------------------------------- /src/helpers/opmlImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/opmlImport.ts -------------------------------------------------------------------------------- /src/helpers/postHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/postHelpers.ts -------------------------------------------------------------------------------- /src/helpers/redditFeedHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/redditFeedHelpers.ts -------------------------------------------------------------------------------- /src/helpers/restart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/restart.ts -------------------------------------------------------------------------------- /src/helpers/safeFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/safeFetch.ts -------------------------------------------------------------------------------- /src/helpers/tryExpr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/tryExpr.ts -------------------------------------------------------------------------------- /src/helpers/twitterFeedHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/twitterFeedHelpers.ts -------------------------------------------------------------------------------- /src/helpers/urlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/urlUtils.ts -------------------------------------------------------------------------------- /src/helpers/youtubeFeedHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/helpers/youtubeFeedHelpers.ts -------------------------------------------------------------------------------- /src/models/Author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/models/Author.ts -------------------------------------------------------------------------------- /src/models/ContentFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/models/ContentFilter.ts -------------------------------------------------------------------------------- /src/models/Feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/models/Feed.ts -------------------------------------------------------------------------------- /src/models/ImageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/models/ImageData.ts -------------------------------------------------------------------------------- /src/models/Metadata.ts: -------------------------------------------------------------------------------- 1 | export interface Metadata { 2 | highestSeenPostId: number 3 | } 4 | -------------------------------------------------------------------------------- /src/models/Model.ts: -------------------------------------------------------------------------------- 1 | export interface Model { 2 | _id?: number | string 3 | } 4 | -------------------------------------------------------------------------------- /src/models/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/models/Post.ts -------------------------------------------------------------------------------- /src/models/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/models/Settings.ts -------------------------------------------------------------------------------- /src/models/recommendation/NewsSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/models/recommendation/NewsSource.ts -------------------------------------------------------------------------------- /src/reducers/AppState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/reducers/AppState.ts -------------------------------------------------------------------------------- /src/reducers/defaultData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/reducers/defaultData.ts -------------------------------------------------------------------------------- /src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/reducers/index.ts -------------------------------------------------------------------------------- /src/reducers/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/reducers/migration.ts -------------------------------------------------------------------------------- /src/reducers/version0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/reducers/version0.ts -------------------------------------------------------------------------------- /src/selectors/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/selectors/selectors.ts -------------------------------------------------------------------------------- /src/store/felfeleInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/store/felfeleInit.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/styles.ts -------------------------------------------------------------------------------- /src/swarm/Swarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/swarm/Swarm.ts -------------------------------------------------------------------------------- /src/ui/buttons/RowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/buttons/RowButton.tsx -------------------------------------------------------------------------------- /src/ui/buttons/TwoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/buttons/TwoButton.tsx -------------------------------------------------------------------------------- /src/ui/buttons/WideButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/buttons/WideButton.tsx -------------------------------------------------------------------------------- /src/ui/card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/card/Card.tsx -------------------------------------------------------------------------------- /src/ui/card/CardContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/card/CardContainer.ts -------------------------------------------------------------------------------- /src/ui/card/CardMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/card/CardMarkdown.tsx -------------------------------------------------------------------------------- /src/ui/card/__mocks__/CardMarkdown.tsx: -------------------------------------------------------------------------------- 1 | export const CardMarkdown = () => null 2 | -------------------------------------------------------------------------------- /src/ui/misc/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/Avatar.tsx -------------------------------------------------------------------------------- /src/ui/misc/ChildrenProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/ChildrenProps.ts -------------------------------------------------------------------------------- /src/ui/misc/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/ui/misc/FragmentSafeAreaView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/FragmentSafeAreaView.tsx -------------------------------------------------------------------------------- /src/ui/misc/GridCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/GridCard.tsx -------------------------------------------------------------------------------- /src/ui/misc/ImageDataView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/ImageDataView.tsx -------------------------------------------------------------------------------- /src/ui/misc/LoadingView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/LoadingView.tsx -------------------------------------------------------------------------------- /src/ui/misc/NavigationHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/NavigationHeader.tsx -------------------------------------------------------------------------------- /src/ui/misc/PlaceholderCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/PlaceholderCard.tsx -------------------------------------------------------------------------------- /src/ui/misc/RefreshableFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/RefreshableFeed.tsx -------------------------------------------------------------------------------- /src/ui/misc/SimpleTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/SimpleTextInput.tsx -------------------------------------------------------------------------------- /src/ui/misc/StatusBarView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/StatusBarView.tsx -------------------------------------------------------------------------------- /src/ui/misc/TabBarPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/TabBarPlaceholder.tsx -------------------------------------------------------------------------------- /src/ui/misc/TopLevelErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/TopLevelErrorBoundary.tsx -------------------------------------------------------------------------------- /src/ui/misc/TouchableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/TouchableView.tsx -------------------------------------------------------------------------------- /src/ui/misc/__mocks__/Carousel.tsx: -------------------------------------------------------------------------------- 1 | export const Carousel = () => null 2 | -------------------------------------------------------------------------------- /src/ui/misc/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/misc/text.tsx -------------------------------------------------------------------------------- /src/ui/screens/bug-report/BugReportScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/bug-report/BugReportScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/debug/DebugScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/debug/DebugScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/debug/DebugScreenContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/debug/DebugScreenContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/explore/CategoriesContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/explore/CategoriesContainer.tsx -------------------------------------------------------------------------------- /src/ui/screens/explore/CategoriesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/explore/CategoriesScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/explore/NewsSourceGridContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/explore/NewsSourceGridContainer.tsx -------------------------------------------------------------------------------- /src/ui/screens/explore/NewsSourceGridScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/explore/NewsSourceGridScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/explore/SubCategoriesContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/explore/SubCategoriesContainer.tsx -------------------------------------------------------------------------------- /src/ui/screens/explore/SubCategoriesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/explore/SubCategoriesScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/export-import/ExportImportScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/export-import/ExportImportScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/export-import/ExportScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/export-import/ExportScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/export-import/ExportScreenContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/export-import/ExportScreenContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/feed-info/FeedInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-info/FeedInfo.tsx -------------------------------------------------------------------------------- /src/ui/screens/feed-info/FeedInfoContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-info/FeedInfoContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/feed-info/RSSFeedInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-info/RSSFeedInfo.tsx -------------------------------------------------------------------------------- /src/ui/screens/feed-link-reader/FeedLinkReader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-link-reader/FeedLinkReader.tsx -------------------------------------------------------------------------------- /src/ui/screens/feed-link-reader/FeedLinkReaderContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-link-reader/FeedLinkReaderContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/feed-view/FeedContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-view/FeedContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/feed-view/FeedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-view/FeedView.tsx -------------------------------------------------------------------------------- /src/ui/screens/feed-view/FeedViewContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-view/FeedViewContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/feed-view/NewSourceFeedContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/feed-view/NewSourceFeedContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/filters/FilterEditorContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/filters/FilterEditorContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/filters/FilterEditorScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/filters/FilterEditorScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/filters/FilterListScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/filters/FilterListScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/filters/FilterListScreenContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/filters/FilterListScreenContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/log-viewer/LogViewerScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/log-viewer/LogViewerScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/log-viewer/LogViewerScreenContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/log-viewer/LogViewerScreenContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/public-channels/PublicChannelsContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/public-channels/PublicChannelsContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/public-channels/PublicChannelsListContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/public-channels/PublicChannelsListContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/public-channels/PublicChannelsListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/public-channels/PublicChannelsListView.tsx -------------------------------------------------------------------------------- /src/ui/screens/public-channels/PublicChannelsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/public-channels/PublicChannelsScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/rss-feed/RSSFeedLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/rss-feed/RSSFeedLoader.tsx -------------------------------------------------------------------------------- /src/ui/screens/rss-feed/RSSFeedLoaderContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/rss-feed/RSSFeedLoaderContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/settings/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/settings/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /src/ui/screens/settings/SettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/settings/SettingsScreen.tsx -------------------------------------------------------------------------------- /src/ui/screens/settings/SettingsScreenContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/settings/SettingsScreenContainer.ts -------------------------------------------------------------------------------- /src/ui/screens/settings/SwarmSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/settings/SwarmSettings.tsx -------------------------------------------------------------------------------- /src/ui/screens/settings/SwarmSettingsContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/src/ui/screens/settings/SwarmSettingsContainer.ts -------------------------------------------------------------------------------- /test/cliParserTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/cliParserTest.ts -------------------------------------------------------------------------------- /test/components/CardTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/components/CardTest.tsx -------------------------------------------------------------------------------- /test/helpers/HtmlUtilsTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/HtmlUtilsTest.ts -------------------------------------------------------------------------------- /test/helpers/RSSPostHelpersTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/RSSPostHelpersTest.ts -------------------------------------------------------------------------------- /test/helpers/conversionTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/conversionTest.ts -------------------------------------------------------------------------------- /test/helpers/dateHelpersTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/dateHelpersTest.ts -------------------------------------------------------------------------------- /test/helpers/feedHelpersTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/feedHelpersTest.ts -------------------------------------------------------------------------------- /test/helpers/markdownTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/markdownTest.ts -------------------------------------------------------------------------------- /test/helpers/openGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/openGraph.ts -------------------------------------------------------------------------------- /test/helpers/postHelpersTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/postHelpersTest.ts -------------------------------------------------------------------------------- /test/helpers/redditFeedHelpersTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/redditFeedHelpersTest.ts -------------------------------------------------------------------------------- /test/helpers/tryExprTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/tryExprTest.ts -------------------------------------------------------------------------------- /test/helpers/urlUtilsTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/test/helpers/urlUtilsTest.ts -------------------------------------------------------------------------------- /testflight-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/testflight-badge.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felfele/feeds/HEAD/tslint.json --------------------------------------------------------------------------------