├── .github └── FUNDING.yml ├── LICENSE ├── Newstagram ├── Newstagram.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── grzegorzsurma.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── grzegorzsurma.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Newstagram.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── grzegorzsurma.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── Newstagram │ ├── Application │ │ └── AppDelegate.swift │ ├── Config │ │ ├── Constants.swift │ │ └── Info.plist │ ├── Data │ │ ├── Entities │ │ │ └── Article.swift │ │ └── Networking │ │ │ └── ApiManager.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ ├── Icon-App-72x72@2x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ │ ├── Icon-Small-50x50@1x.png │ │ │ │ ├── Icon-Small-50x50@2x.png │ │ │ │ └── ItunesArtwork@2x.png │ │ │ ├── Contents.json │ │ │ ├── Logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Logo.pdf │ │ │ ├── NoData.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NoData.pdf │ │ │ ├── Placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iu.jpeg │ │ │ ├── iTunesArtwork@1x.png │ │ │ ├── iTunesArtwork@2x.png │ │ │ └── iTunesArtwork@3x.png │ │ └── Paralax │ │ │ └── Sparrow │ │ │ ├── Animation │ │ │ ├── SPAnimation.swift │ │ │ ├── SPAnimationSpring.swift │ │ │ └── SPAnimationUpward.swift │ │ │ ├── Audio │ │ │ └── SPAudioPlayer.swift │ │ │ ├── Color │ │ │ └── SPUIColorExtenshion.swift │ │ │ ├── Constraints │ │ │ └── SPConstraintsAssistent.swift │ │ │ ├── Delay │ │ │ └── SPDelay.swift │ │ │ ├── Device │ │ │ └── SPUIDeviceExtenshion.swift │ │ │ ├── Figure │ │ │ └── BezierPathFigure │ │ │ │ └── SPBezierPathFigure.swift │ │ │ ├── Image │ │ │ └── SPUIImageExtenshion.swift │ │ │ ├── InternetConnection │ │ │ └── SPInternetConnection.swift │ │ │ ├── Launch │ │ │ └── Animation │ │ │ │ ├── SPLaunchAnimation.swift │ │ │ │ ├── Slide │ │ │ │ └── SPLaunchAnimationSlideExtenshion.swift │ │ │ │ └── asTwitter │ │ │ │ └── SPLaunchAnimationTwitterExtenshion.swift │ │ │ └── Random │ │ │ └── SPRandom.swift │ ├── Screens │ │ ├── Article │ │ │ ├── ArticleTableViewCell.swift │ │ │ └── ArticleViewController.swift │ │ └── Main │ │ │ └── MainViewController.swift │ ├── Storyboards │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ └── Utils │ │ ├── Dates.swift │ │ └── UserDefaults.swift ├── Podfile └── Pods │ ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnimatedImageView.swift │ │ ├── CacheSerializer.swift │ │ ├── Filter.swift │ │ ├── FormatIndicatedCacheSerializer.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageModifier.swift │ │ ├── ImagePrefetcher.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageTransition.swift │ │ ├── ImageView+Kingfisher.swift │ │ ├── Indicator.swift │ │ ├── Kingfisher.h │ │ ├── Kingfisher.swift │ │ ├── KingfisherManager.swift │ │ ├── KingfisherOptionsInfo.swift │ │ ├── Placeholder.swift │ │ ├── RequestModifier.swift │ │ ├── Resource.swift │ │ ├── String+MD5.swift │ │ ├── ThreadHelper.swift │ │ └── UIButton+Kingfisher.swift │ ├── MKDropdownMenu │ ├── LICENSE │ ├── MKDropdownMenu │ │ ├── MKDropdownMenu.h │ │ └── MKDropdownMenu.m │ └── README.md │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── grzegorzsurma.xcuserdatad │ │ └── xcschemes │ │ ├── Kingfisher.xcscheme │ │ ├── MKDropdownMenu.xcscheme │ │ ├── Pods-Newstagram.xcscheme │ │ ├── StatusProvider.xcscheme │ │ └── xcschememanagement.plist │ ├── StatusProvider │ ├── LICENSE │ ├── README.md │ └── StatusProvider │ │ └── StatusProvider │ │ ├── DefaultStatusView.swift │ │ └── StatusProvider.swift │ └── Target Support Files │ ├── Kingfisher │ ├── Info.plist │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.modulemap │ └── Kingfisher.xcconfig │ ├── MKDropdownMenu │ ├── Info.plist │ ├── MKDropdownMenu-dummy.m │ ├── MKDropdownMenu-prefix.pch │ ├── MKDropdownMenu-umbrella.h │ ├── MKDropdownMenu.modulemap │ └── MKDropdownMenu.xcconfig │ ├── Pods-Newstagram │ ├── Info.plist │ ├── Pods-Newstagram-acknowledgements.markdown │ ├── Pods-Newstagram-acknowledgements.plist │ ├── Pods-Newstagram-dummy.m │ ├── Pods-Newstagram-frameworks.sh │ ├── Pods-Newstagram-resources.sh │ ├── Pods-Newstagram-umbrella.h │ ├── Pods-Newstagram.debug.xcconfig │ ├── Pods-Newstagram.modulemap │ └── Pods-Newstagram.release.xcconfig │ └── StatusProvider │ ├── Info.plist │ ├── StatusProvider-dummy.m │ ├── StatusProvider-prefix.pch │ ├── StatusProvider-umbrella.h │ ├── StatusProvider.modulemap │ └── StatusProvider.xcconfig ├── README.md └── assets ├── newstagram_icon_web.png ├── screenshot_1.png └── screenshot_2.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: gsurma 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/LICENSE -------------------------------------------------------------------------------- /Newstagram/Newstagram.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Newstagram/Newstagram.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Newstagram/Newstagram.xcodeproj/project.xcworkspace/xcuserdata/grzegorzsurma.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram.xcodeproj/project.xcworkspace/xcuserdata/grzegorzsurma.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Newstagram/Newstagram.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Newstagram/Newstagram.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Newstagram/Newstagram.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Newstagram/Newstagram.xcworkspace/xcuserdata/grzegorzsurma.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram.xcworkspace/xcuserdata/grzegorzsurma.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Newstagram/Newstagram.xcworkspace/xcuserdata/grzegorzsurma.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram.xcworkspace/xcuserdata/grzegorzsurma.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Newstagram/Newstagram/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Config/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Config/Constants.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Config/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Config/Info.plist -------------------------------------------------------------------------------- /Newstagram/Newstagram/Data/Entities/Article.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Data/Entities/Article.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Data/Networking/ApiManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Data/Networking/ApiManager.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/Logo.imageset/Logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/Logo.imageset/Logo.pdf -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/NoData.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/NoData.imageset/Contents.json -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/NoData.imageset/NoData.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/NoData.imageset/NoData.pdf -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/Placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/Placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/Placeholder.imageset/iu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/Placeholder.imageset/iu.jpeg -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/iTunesArtwork@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/iTunesArtwork@1x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Assets.xcassets/iTunesArtwork@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Assets.xcassets/iTunesArtwork@3x.png -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Animation/SPAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Animation/SPAnimation.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Animation/SPAnimationSpring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Animation/SPAnimationSpring.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Animation/SPAnimationUpward.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Animation/SPAnimationUpward.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Audio/SPAudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Audio/SPAudioPlayer.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Color/SPUIColorExtenshion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Color/SPUIColorExtenshion.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Constraints/SPConstraintsAssistent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Constraints/SPConstraintsAssistent.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Delay/SPDelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Delay/SPDelay.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Device/SPUIDeviceExtenshion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Device/SPUIDeviceExtenshion.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Figure/BezierPathFigure/SPBezierPathFigure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Figure/BezierPathFigure/SPBezierPathFigure.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Image/SPUIImageExtenshion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Image/SPUIImageExtenshion.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/InternetConnection/SPInternetConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/InternetConnection/SPInternetConnection.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Launch/Animation/SPLaunchAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Launch/Animation/SPLaunchAnimation.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Launch/Animation/Slide/SPLaunchAnimationSlideExtenshion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Launch/Animation/Slide/SPLaunchAnimationSlideExtenshion.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Launch/Animation/asTwitter/SPLaunchAnimationTwitterExtenshion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Launch/Animation/asTwitter/SPLaunchAnimationTwitterExtenshion.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Resources/Paralax/Sparrow/Random/SPRandom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Resources/Paralax/Sparrow/Random/SPRandom.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Screens/Article/ArticleTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Screens/Article/ArticleTableViewCell.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Screens/Article/ArticleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Screens/Article/ArticleViewController.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Screens/Main/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Screens/Main/MainViewController.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Storyboards/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Storyboards/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Newstagram/Newstagram/Storyboards/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Storyboards/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Newstagram/Newstagram/Utils/Dates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Utils/Dates.swift -------------------------------------------------------------------------------- /Newstagram/Newstagram/Utils/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Newstagram/Utils/UserDefaults.swift -------------------------------------------------------------------------------- /Newstagram/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Podfile -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/AnimatedImageView.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/CacheSerializer.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/Filter.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/Image.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/ImageCache.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/ImageDownloader.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/ImageModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/ImageModifier.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/ImagePrefetcher.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/ImageProcessor.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/ImageTransition.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/Indicator.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/Kingfisher.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/KingfisherManager.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/Placeholder.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/RequestModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/RequestModifier.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/Resource.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/String+MD5.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/ThreadHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/ThreadHelper.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /Newstagram/Pods/MKDropdownMenu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/MKDropdownMenu/LICENSE -------------------------------------------------------------------------------- /Newstagram/Pods/MKDropdownMenu/MKDropdownMenu/MKDropdownMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/MKDropdownMenu/MKDropdownMenu/MKDropdownMenu.h -------------------------------------------------------------------------------- /Newstagram/Pods/MKDropdownMenu/MKDropdownMenu/MKDropdownMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/MKDropdownMenu/MKDropdownMenu/MKDropdownMenu.m -------------------------------------------------------------------------------- /Newstagram/Pods/MKDropdownMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/MKDropdownMenu/README.md -------------------------------------------------------------------------------- /Newstagram/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/Kingfisher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/Kingfisher.xcscheme -------------------------------------------------------------------------------- /Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/MKDropdownMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/MKDropdownMenu.xcscheme -------------------------------------------------------------------------------- /Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/Pods-Newstagram.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/Pods-Newstagram.xcscheme -------------------------------------------------------------------------------- /Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/StatusProvider.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/StatusProvider.xcscheme -------------------------------------------------------------------------------- /Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Pods.xcodeproj/xcuserdata/grzegorzsurma.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Newstagram/Pods/StatusProvider/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/StatusProvider/LICENSE -------------------------------------------------------------------------------- /Newstagram/Pods/StatusProvider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/StatusProvider/README.md -------------------------------------------------------------------------------- /Newstagram/Pods/StatusProvider/StatusProvider/StatusProvider/DefaultStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/StatusProvider/StatusProvider/StatusProvider/DefaultStatusView.swift -------------------------------------------------------------------------------- /Newstagram/Pods/StatusProvider/StatusProvider/StatusProvider/StatusProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/StatusProvider/StatusProvider/StatusProvider/StatusProvider.swift -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Kingfisher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Kingfisher/Info.plist -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/MKDropdownMenu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/MKDropdownMenu/Info.plist -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu-dummy.m -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu-prefix.pch -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu-umbrella.h -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu.modulemap -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/MKDropdownMenu/MKDropdownMenu.xcconfig -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Info.plist -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-acknowledgements.markdown -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-acknowledgements.plist -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-dummy.m -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-frameworks.sh -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-resources.sh -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram-umbrella.h -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram.debug.xcconfig -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram.modulemap -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/Pods-Newstagram/Pods-Newstagram.release.xcconfig -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/StatusProvider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/StatusProvider/Info.plist -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider-dummy.m -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider-prefix.pch -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider-umbrella.h -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider.modulemap -------------------------------------------------------------------------------- /Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/Newstagram/Pods/Target Support Files/StatusProvider/StatusProvider.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/README.md -------------------------------------------------------------------------------- /assets/newstagram_icon_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/assets/newstagram_icon_web.png -------------------------------------------------------------------------------- /assets/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/assets/screenshot_1.png -------------------------------------------------------------------------------- /assets/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsurma/newstagram/HEAD/assets/screenshot_2.png --------------------------------------------------------------------------------