├── .DS_Store ├── .gitignore ├── Constellational Share Extension ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── ShareViewController.h └── ShareViewController.m ├── Constellational.entitlements ├── Constellational.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── Constellational.xccheckout │ └── xcuserdata │ │ └── arpith.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ └── Constellational.xcscheme └── xcuserdata │ └── arpith.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Constellational Share Extension.xcscheme │ └── xcschememanagement.plist ├── Constellational.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── arpith.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── ConstellationalTests ├── ConstellationalTests.m └── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── GoogleAppIndexing │ ├── Changelog │ ├── Frameworks │ │ └── GoogleAppIndexing.framework │ │ │ ├── GoogleAppIndexing │ │ │ └── Headers │ │ │ ├── GSDAppIndexing.h │ │ │ ├── GSDDeepLink.h │ │ │ └── GoogleAppIndexing.h │ ├── README.txt │ └── Resources │ │ └── GoogleAppIndexingResources.bundle │ │ ├── Info.plist │ │ ├── Roboto-Regular.ttf │ │ ├── ar.lproj │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ └── Localizable.strings │ │ ├── da.lproj │ │ └── Localizable.strings │ │ ├── de.lproj │ │ └── Localizable.strings │ │ ├── el.lproj │ │ └── Localizable.strings │ │ ├── en-GB.lproj │ │ └── Localizable.strings │ │ ├── en.lproj │ │ └── Localizable.strings │ │ ├── es.lproj │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ └── Localizable.strings │ │ ├── hr.lproj │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ └── Localizable.strings │ │ ├── id.lproj │ │ └── Localizable.strings │ │ ├── it.lproj │ │ └── Localizable.strings │ │ ├── iw.lproj │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ └── Localizable.strings │ │ ├── ms.lproj │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ └── Localizable.strings │ │ ├── no.lproj │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ └── Localizable.strings │ │ ├── th.lproj │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ └── Localizable.strings │ │ ├── zh-CN.lproj │ │ └── Localizable.strings │ │ └── zh-TW.lproj │ │ └── Localizable.strings ├── Headers │ └── Public │ │ └── GoogleAppIndexing │ │ └── GoogleAppIndexing │ │ ├── GSDAppIndexing.h │ │ ├── GSDDeepLink.h │ │ └── GoogleAppIndexing.h ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── arpith.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-Constellational Share Extension.xcscheme │ │ ├── Pods-Constellational.xcscheme │ │ ├── Pods-ConstellationalTests.xcscheme │ │ ├── Pods.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── Pods-Constellational Share Extension │ ├── Pods-Constellational Share Extension-acknowledgements.markdown │ ├── Pods-Constellational Share Extension-acknowledgements.plist │ ├── Pods-Constellational Share Extension-dummy.m │ ├── Pods-Constellational Share Extension-frameworks.sh │ ├── Pods-Constellational Share Extension-resources.sh │ ├── Pods-Constellational Share Extension.debug.xcconfig │ └── Pods-Constellational Share Extension.release.xcconfig │ ├── Pods-Constellational │ ├── Pods-Constellational-acknowledgements.markdown │ ├── Pods-Constellational-acknowledgements.plist │ ├── Pods-Constellational-dummy.m │ ├── Pods-Constellational-frameworks.sh │ ├── Pods-Constellational-resources.sh │ ├── Pods-Constellational.debug.xcconfig │ └── Pods-Constellational.release.xcconfig │ ├── Pods-ConstellationalTests │ ├── Pods-ConstellationalTests-acknowledgements.markdown │ ├── Pods-ConstellationalTests-acknowledgements.plist │ ├── Pods-ConstellationalTests-dummy.m │ ├── Pods-ConstellationalTests-frameworks.sh │ ├── Pods-ConstellationalTests-resources.sh │ ├── Pods-ConstellationalTests.debug.xcconfig │ └── Pods-ConstellationalTests.release.xcconfig │ └── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-frameworks.sh │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig ├── README.md ├── actions ├── DraftActions.js ├── EditActions.js ├── FollowActions.js ├── HistoryActions.js ├── PostActions.js └── SettingActions.js ├── components ├── BackButton.js ├── BigButton.js ├── BodyText.js ├── CancelButton.js ├── CreateButton.js ├── EditPage.js ├── FollowButton.js ├── Heading.js ├── NavBar.js ├── NavPage.js ├── Post.js ├── PostButton.js ├── PostList.js ├── PostsPage.js ├── Subheading.js └── WelcomePage.js ├── dispatcher └── AppDispatcher.js ├── iOS ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── LaunchScreen.xib ├── Images.xcassets │ ├── .DS_Store │ ├── AppIcon-1.appiconset │ │ ├── Contents.json │ │ ├── Icon-40.png │ │ ├── Icon-40@2x (1).png │ │ ├── Icon-60@2x (1).png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small.png │ │ └── Icon-Small@2x (1).png │ ├── AppIcon.appiconset │ │ ├── .DS_Store │ │ ├── Contents.json │ │ ├── Icon-40@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-Small@2x.png │ │ └── Icon-Small@3x.png │ ├── Contents.json │ ├── Icon-40.imageset │ │ ├── Contents.json │ │ └── Icon-40@2x.png │ ├── Icon-60.imageset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ └── Icon-60@3x.png │ └── Icon-Small.imageset │ │ ├── Contents.json │ │ ├── Icon-Small@2x.png │ │ └── Icon-Small@3x.png ├── Info.plist ├── main.jsbundle └── main.m ├── index.ios.js ├── package.json └── stores ├── DraftStore.js ├── EditStore.js ├── FollowStore.js ├── HistoryStore.js ├── PostStore.js └── SettingStore.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /Constellational Share Extension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational Share Extension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Constellational Share Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational Share Extension/Info.plist -------------------------------------------------------------------------------- /Constellational Share Extension/ShareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational Share Extension/ShareViewController.h -------------------------------------------------------------------------------- /Constellational Share Extension/ShareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational Share Extension/ShareViewController.m -------------------------------------------------------------------------------- /Constellational.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.entitlements -------------------------------------------------------------------------------- /Constellational.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Constellational.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Constellational.xcodeproj/project.xcworkspace/xcshareddata/Constellational.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/project.xcworkspace/xcshareddata/Constellational.xccheckout -------------------------------------------------------------------------------- /Constellational.xcodeproj/project.xcworkspace/xcuserdata/arpith.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/project.xcworkspace/xcuserdata/arpith.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Constellational.xcodeproj/project.xcworkspace/xcuserdata/arpith.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/project.xcworkspace/xcuserdata/arpith.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Constellational.xcodeproj/xcshareddata/xcschemes/Constellational.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/xcshareddata/xcschemes/Constellational.xcscheme -------------------------------------------------------------------------------- /Constellational.xcodeproj/xcuserdata/arpith.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/xcuserdata/arpith.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Constellational.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Constellational Share Extension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Constellational Share Extension.xcscheme -------------------------------------------------------------------------------- /Constellational.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Constellational.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Constellational.xcworkspace/xcuserdata/arpith.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Constellational.xcworkspace/xcuserdata/arpith.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ConstellationalTests/ConstellationalTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/ConstellationalTests/ConstellationalTests.m -------------------------------------------------------------------------------- /ConstellationalTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/ConstellationalTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Changelog -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/GoogleAppIndexing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/GoogleAppIndexing -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GSDAppIndexing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GSDAppIndexing.h -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GSDDeepLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GSDDeepLink.h -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GoogleAppIndexing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GoogleAppIndexing.h -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/README.txt -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/Info.plist -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/iw.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/iw.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/zh-CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/zh-CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/zh-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/GoogleAppIndexing/Resources/GoogleAppIndexingResources.bundle/zh-TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAppIndexing/GoogleAppIndexing/GSDAppIndexing.h: -------------------------------------------------------------------------------- 1 | ../../../../GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GSDAppIndexing.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAppIndexing/GoogleAppIndexing/GSDDeepLink.h: -------------------------------------------------------------------------------- 1 | ../../../../GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GSDDeepLink.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAppIndexing/GoogleAppIndexing/GoogleAppIndexing.h: -------------------------------------------------------------------------------- 1 | ../../../../GoogleAppIndexing/Frameworks/GoogleAppIndexing.framework/Headers/GoogleAppIndexing.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Pods-Constellational Share Extension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Pods-Constellational Share Extension.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Pods-Constellational.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Pods-Constellational.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Pods-ConstellationalTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Pods-ConstellationalTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Pods.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/Pods.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/arpith.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational Share Extension/Pods-Constellational Share Extension.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational/Pods-Constellational-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational/Pods-Constellational-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational/Pods-Constellational-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational/Pods-Constellational-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational/Pods-Constellational-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational/Pods-Constellational-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational/Pods-Constellational-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational/Pods-Constellational-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational/Pods-Constellational-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational/Pods-Constellational-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational/Pods-Constellational.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational/Pods-Constellational.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Constellational/Pods-Constellational.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-Constellational/Pods-Constellational.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods-ConstellationalTests/Pods-ConstellationalTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods/Pods-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iOS 2 | React Native app 3 | -------------------------------------------------------------------------------- /actions/DraftActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/actions/DraftActions.js -------------------------------------------------------------------------------- /actions/EditActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/actions/EditActions.js -------------------------------------------------------------------------------- /actions/FollowActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/actions/FollowActions.js -------------------------------------------------------------------------------- /actions/HistoryActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/actions/HistoryActions.js -------------------------------------------------------------------------------- /actions/PostActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/actions/PostActions.js -------------------------------------------------------------------------------- /actions/SettingActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/actions/SettingActions.js -------------------------------------------------------------------------------- /components/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/BackButton.js -------------------------------------------------------------------------------- /components/BigButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/BigButton.js -------------------------------------------------------------------------------- /components/BodyText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/BodyText.js -------------------------------------------------------------------------------- /components/CancelButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/CancelButton.js -------------------------------------------------------------------------------- /components/CreateButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/CreateButton.js -------------------------------------------------------------------------------- /components/EditPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/EditPage.js -------------------------------------------------------------------------------- /components/FollowButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/FollowButton.js -------------------------------------------------------------------------------- /components/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/Heading.js -------------------------------------------------------------------------------- /components/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/NavBar.js -------------------------------------------------------------------------------- /components/NavPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/NavPage.js -------------------------------------------------------------------------------- /components/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/Post.js -------------------------------------------------------------------------------- /components/PostButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/PostButton.js -------------------------------------------------------------------------------- /components/PostList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/PostList.js -------------------------------------------------------------------------------- /components/PostsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/PostsPage.js -------------------------------------------------------------------------------- /components/Subheading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/Subheading.js -------------------------------------------------------------------------------- /components/WelcomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/components/WelcomePage.js -------------------------------------------------------------------------------- /dispatcher/AppDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/dispatcher/AppDispatcher.js -------------------------------------------------------------------------------- /iOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/.DS_Store -------------------------------------------------------------------------------- /iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/AppDelegate.h -------------------------------------------------------------------------------- /iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/AppDelegate.m -------------------------------------------------------------------------------- /iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /iOS/Images.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/.DS_Store -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon-1.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon-1.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon-1.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon-1.appiconset/Icon-40.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon-1.appiconset/Icon-40@2x (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon-1.appiconset/Icon-40@2x (1).png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon-1.appiconset/Icon-60@2x (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon-1.appiconset/Icon-60@2x (1).png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon-1.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon-1.appiconset/Icon-76.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon-1.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon-1.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon-1.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon-1.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon-1.appiconset/Icon-Small@2x (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon-1.appiconset/Icon-Small@2x (1).png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon.appiconset/.DS_Store -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/Icon-40.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Icon-40.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/Icon-40.imageset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Icon-40.imageset/Icon-40@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/Icon-60.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Icon-60.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/Icon-60.imageset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Icon-60.imageset/Icon-60@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/Icon-60.imageset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Icon-60.imageset/Icon-60@3x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/Icon-Small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Icon-Small.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/Icon-Small.imageset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Icon-Small.imageset/Icon-Small@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/Icon-Small.imageset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Images.xcassets/Icon-Small.imageset/Icon-Small@3x.png -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/Info.plist -------------------------------------------------------------------------------- /iOS/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/main.jsbundle -------------------------------------------------------------------------------- /iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/iOS/main.m -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/index.ios.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/package.json -------------------------------------------------------------------------------- /stores/DraftStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/stores/DraftStore.js -------------------------------------------------------------------------------- /stores/EditStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/stores/EditStore.js -------------------------------------------------------------------------------- /stores/FollowStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/stores/FollowStore.js -------------------------------------------------------------------------------- /stores/HistoryStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/stores/HistoryStore.js -------------------------------------------------------------------------------- /stores/PostStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/stores/PostStore.js -------------------------------------------------------------------------------- /stores/SettingStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constellational/iOS/HEAD/stores/SettingStore.js --------------------------------------------------------------------------------