├── .gitignore ├── CoffeeFilter.Android ├── Assets │ └── AboutAssets.txt ├── BaseActivity.cs ├── CoffeeFilter.Android.csproj ├── DetailsActivity.cs ├── Fragments │ ├── PlaceDetailsFragment.cs │ ├── PlaceFragment.cs │ ├── PlacePhotosFragment.cs │ └── PlaceReviewsFragment.cs ├── Helpers │ ├── FilterScrollView.cs │ └── SquareImageView.cs ├── InviteBroadcastReceiver.cs ├── MainActivity.cs ├── PanoramaActivity.cs ├── PluginsHelp │ ├── ConnectivityReadme.txt │ └── GeolocatorReadme.txt ├── Properties │ ├── AndroidManifest.xml │ ├── AssemblyInfo.cs │ └── _SettingsStarted.txt ├── ReferrerReceiver.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable-hdpi │ │ ├── apptheme_rate_star_big_half_holo_light.png │ │ ├── apptheme_rate_star_big_off_holo_light.png │ │ ├── apptheme_rate_star_big_on_holo_light.png │ │ ├── apptheme_rate_star_small_half_holo_light.png │ │ ├── apptheme_rate_star_small_off_holo_light.png │ │ ├── apptheme_rate_star_small_on_holo_light.png │ │ ├── ic_action_maps_navigation.png │ │ ├── ic_launcher.png │ │ ├── ic_mug1.png │ │ ├── ic_mug2.png │ │ ├── ic_mug3.png │ │ ├── ic_mug4.png │ │ ├── ic_mug5.png │ │ ├── ic_sadcoffee.png │ │ └── ic_star.png │ ├── drawable-mdpi │ │ ├── apptheme_rate_star_big_half_holo_light.png │ │ ├── apptheme_rate_star_big_off_holo_light.png │ │ ├── apptheme_rate_star_big_on_holo_light.png │ │ ├── apptheme_rate_star_small_half_holo_light.png │ │ ├── apptheme_rate_star_small_off_holo_light.png │ │ ├── apptheme_rate_star_small_on_holo_light.png │ │ ├── ic_action_maps_navigation.png │ │ ├── ic_launcher.png │ │ ├── ic_mug1.png │ │ ├── ic_mug2.png │ │ ├── ic_mug3.png │ │ ├── ic_mug4.png │ │ ├── ic_mug5.png │ │ ├── ic_sadcoffee.png │ │ └── ic_star.png │ ├── drawable-xhdpi │ │ ├── apptheme_rate_star_small_half_holo_light.png │ │ ├── apptheme_rate_star_small_off_holo_light.png │ │ ├── apptheme_rate_star_small_on_holo_light.png │ │ ├── ic_action_maps_navigation.png │ │ ├── ic_launcher.png │ │ ├── ic_mug1.png │ │ ├── ic_mug2.png │ │ ├── ic_mug3.png │ │ ├── ic_mug4.png │ │ ├── ic_mug5.png │ │ ├── ic_sadcoffee.png │ │ └── ic_star.png │ ├── drawable-xxhdpi │ │ ├── apptheme_rate_star_big_half_holo_light.png │ │ ├── apptheme_rate_star_big_off_holo_light.png │ │ ├── apptheme_rate_star_big_on_holo_light.png │ │ ├── apptheme_rate_star_small_half_holo_light.png │ │ ├── apptheme_rate_star_small_off_holo_light.png │ │ ├── apptheme_rate_star_small_on_holo_light.png │ │ ├── ic_action_maps_navigation.png │ │ ├── ic_launcher.png │ │ ├── ic_mug1.png │ │ ├── ic_mug2.png │ │ ├── ic_mug3.png │ │ ├── ic_mug4.png │ │ ├── ic_mug5.png │ │ ├── ic_sadcoffee.png │ │ └── ic_star.png │ ├── drawable-xxxhdpi │ │ ├── apptheme_rate_star_big_half_holo_light.png │ │ ├── apptheme_rate_star_big_off_holo_light.png │ │ ├── apptheme_rate_star_big_on_holo_light.png │ │ └── ic_launcher.png │ ├── drawable │ │ ├── apptheme_ratingbar_holo_light.xml │ │ ├── apptheme_ratingbar_small_holo_light.xml │ │ └── coffee_progress.xml │ ├── layout │ │ ├── details.axml │ │ ├── fragment_details.axml │ │ ├── fragment_photos.axml │ │ ├── fragment_place.axml │ │ ├── fragment_reviews.axml │ │ ├── item_photo.axml │ │ ├── item_review.axml │ │ ├── main.axml │ │ ├── panorama.axml │ │ ├── test_setup.axml │ │ └── toolbar.axml │ ├── menu │ │ ├── menu_details.xml │ │ └── menu_home.xml │ ├── values-sw720dp │ │ └── integers.xml │ ├── values-v21 │ │ └── styles.xml │ └── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ └── styles.xml ├── environment.txt └── packages.config ├── CoffeeFilter.Shared ├── CoffeeFilter.Shared.projitems ├── CoffeeFilter.Shared.shproj ├── Helpers │ ├── DateTimeUtils.cs │ ├── GeolocationUtils.cs │ ├── ResourceLoader.cs │ └── ServiceContainer.cs ├── Models │ ├── Location.cs │ ├── OperatingHours.cs │ ├── Photos.cs │ ├── Place.cs │ ├── Queries.cs │ └── Reviews.cs └── ViewModels │ ├── BaseViewModel.cs │ ├── CoffeeFilterViewModel.cs │ └── DetailsViewModel.cs ├── CoffeeFilter.UITests.Shared ├── CoffeeFilter.UITests.Shared.projitems ├── CoffeeFilter.UITests.Shared.shproj └── UITestsHelpers.cs ├── CoffeeFilter.UITests ├── CoffeeFilter.UITests.csproj ├── CoffeeFilterTests.cs ├── PredefinedSteps.cs ├── Queries │ ├── AndroidQueries.cs │ └── IScreenQueries.cs └── packages.config ├── CoffeeFilter.iOS ├── AppDelegate.cs ├── CoffeeFilter.iOS.csproj ├── Controllers │ ├── DetailsViewController.cs │ ├── DetailsViewController.designer.cs │ ├── PhotosViewController.cs │ ├── PhotosViewController.designer.cs │ ├── PlaceDetailsViewController.cs │ ├── PlaceDetailsViewController.designer.cs │ ├── ReviewsViewController.cs │ ├── ReviewsViewController.designer.cs │ ├── SearchViewController.cs │ ├── StreetViewController.cs │ ├── ViewController.cs │ └── ViewController.designer.cs ├── Entitlements.plist ├── Helpers │ ├── CloudManager.cs │ ├── Helpers.cs │ └── NibHelper.cs ├── Info.plist ├── Main.cs ├── PluginsHelp │ ├── ConnectivityReadme.txt │ └── GeolocatorReadme.txt ├── Resources │ ├── Images.xcassets │ │ ├── AppIcons.appiconset │ │ │ ├── 100x100.png │ │ │ ├── 114x114.png │ │ │ ├── 120x120.png │ │ │ ├── 152x152.png │ │ │ ├── 172x172.png │ │ │ ├── 180x180.png │ │ │ ├── 196x196.png │ │ │ ├── 29x29.png │ │ │ ├── 40x40.png │ │ │ ├── 48x48.png │ │ │ ├── 50x50.png │ │ │ ├── 55x55.png │ │ │ ├── 57x57.png │ │ │ ├── 58x58.png │ │ │ ├── 72x72.png │ │ │ ├── 76x76.png │ │ │ ├── 80x80.png │ │ │ ├── 87x87.png │ │ │ ├── 88x88.png │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── 1242x2208.png │ │ │ ├── 1536x2008.png │ │ │ ├── 1536x2048.png │ │ │ ├── 640x1136.png │ │ │ ├── 640x960.png │ │ │ ├── 750x1334.png │ │ │ ├── 768x1004.png │ │ │ ├── 768x1024.png │ │ │ └── Contents.json │ │ ├── i_star.imageset │ │ │ ├── Contents.json │ │ │ └── i_star.pdf │ │ ├── i_star_rate.imageset │ │ │ ├── Contents.json │ │ │ └── i_star_rate.pdf │ │ ├── ic_mug5.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug5.png │ │ │ ├── ic_mug5@2x.png │ │ │ └── ic_mug5@3x.png │ │ ├── ic_mug_steam.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug_steam.png │ │ │ ├── ic_mug_steam@2x.png │ │ │ └── ic_mug_steam@3x.png │ │ ├── ic_sadcoffee.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_sadcoffee.png │ │ │ ├── ic_sadcoffee@2x.png │ │ │ └── ic_sadcoffee@3x.png │ │ ├── information.imageset │ │ │ ├── Contents.json │ │ │ ├── information.png │ │ │ ├── information@2x.png │ │ │ └── information@3x.png │ │ ├── more.imageset │ │ │ ├── Contents.json │ │ │ ├── more.png │ │ │ ├── more@2x.png │ │ │ └── more@3x.png │ │ ├── near.imageset │ │ │ ├── Contents.json │ │ │ ├── near.png │ │ │ ├── near@2x.png │ │ │ └── near@3x.png │ │ ├── photos.imageset │ │ │ ├── Contents.json │ │ │ ├── photos.png │ │ │ ├── photos@2x.png │ │ │ └── photos@3x.png │ │ ├── placeholder.imageset │ │ │ ├── Contents.json │ │ │ └── placeholder.png │ │ ├── search.imageset │ │ │ ├── Contents.json │ │ │ ├── search.png │ │ │ ├── search@2x.png │ │ │ └── search@3x.png │ │ ├── syncing.imageset │ │ │ ├── Contents.json │ │ │ ├── syncing.png │ │ │ ├── syncing@2x.png │ │ │ └── syncing@3x.png │ │ ├── user_chat.imageset │ │ │ ├── Contents.json │ │ │ ├── user_chat.png │ │ │ ├── user_chat@2x.png │ │ │ └── user_chat@3x.png │ │ └── warning.imageset │ │ │ ├── Contents.json │ │ │ ├── warning.png │ │ │ ├── warning@2x.png │ │ │ └── warning@3x.png │ └── en.lproj │ │ └── Localizable.strings ├── Views │ ├── CoffeeAnimationView.cs │ ├── CoffeeAnimationView.designer.cs │ ├── CoffeeAnimationView.xib │ ├── Main.storyboard │ ├── OpenHoursView.cs │ ├── OpenHoursView.designer.cs │ ├── ParallaxTableHeader.cs │ ├── PhotoCell.cs │ ├── PhotoCell.designer.cs │ ├── PlaceDetailsCell.cs │ ├── PlaceDetailsCell.designer.cs │ ├── PlaceView.cs │ ├── PlaceView.designer.cs │ ├── PlaceView.xib │ ├── RatingView.cs │ ├── RatingView.designer.cs │ ├── ReviewCell.cs │ ├── ReviewCell.designer.cs │ ├── WarningMessageView.cs │ ├── WarningMessageView.designer.cs │ └── WarningMessageView.xib └── packages.config ├── CoffeeFilter.iOSWatchKitApp ├── CoffeeFilterDistribution.iOSWatchKitApp.csproj ├── Entitlements.plist ├── Info.plist ├── Interface.storyboard └── Resources │ ├── Images.xcassets │ ├── AppIcons.appiconset │ │ ├── 172x172.png │ │ ├── 196x196.png │ │ ├── 48x48.png │ │ ├── 55x55.png │ │ ├── 58x58.png │ │ ├── 80x80.png │ │ ├── 87x87.png │ │ ├── 88x88.png │ │ └── Contents.json │ ├── coffeeAnimation │ │ ├── ic_mug1.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug1.png │ │ │ ├── ic_mug1@2x.png │ │ │ └── ic_mug1@3x.png │ │ ├── ic_mug2.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug2.png │ │ │ ├── ic_mug2@2x.png │ │ │ └── ic_mug2@3x.png │ │ ├── ic_mug3.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug3.png │ │ │ ├── ic_mug3@2x.png │ │ │ └── ic_mug3@3x.png │ │ ├── ic_mug4.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug4.png │ │ │ ├── ic_mug4@2x.png │ │ │ └── ic_mug4@3x.png │ │ ├── ic_mug5.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug5.png │ │ │ ├── ic_mug5@2x.png │ │ │ └── ic_mug5@3x.png │ │ ├── ic_mug6.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug4.png │ │ │ ├── ic_mug4@2x.png │ │ │ └── ic_mug4@3x.png │ │ ├── ic_mug7.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug3.png │ │ │ ├── ic_mug3@2x.png │ │ │ └── ic_mug3@3x.png │ │ ├── ic_mug8.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug2.png │ │ │ ├── ic_mug2@2x.png │ │ │ └── ic_mug2@3x.png │ │ └── ic_mug9.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_mug1.png │ │ │ ├── ic_mug1@2x.png │ │ │ └── ic_mug1@3x.png │ ├── ic_star.imageset │ │ ├── Contents.json │ │ ├── ic_star.png │ │ ├── ic_star@2x.png │ │ └── ic_star@3x.png │ └── photoAnimation │ │ ├── loading_1.imageset │ │ ├── Contents.json │ │ └── loading_1.png │ │ ├── loading_10.imageset │ │ ├── Contents.json │ │ └── loading_10.png │ │ ├── loading_11.imageset │ │ ├── Contents.json │ │ └── loading_11.png │ │ ├── loading_12.imageset │ │ ├── Contents.json │ │ └── loading_12.png │ │ ├── loading_2.imageset │ │ ├── Contents.json │ │ └── loading_2.png │ │ ├── loading_3.imageset │ │ ├── Contents.json │ │ └── loading_3.png │ │ ├── loading_4.imageset │ │ ├── Contents.json │ │ └── loading_4.png │ │ ├── loading_5.imageset │ │ ├── Contents.json │ │ └── loading_5.png │ │ ├── loading_6.imageset │ │ ├── Contents.json │ │ └── loading_6.png │ │ ├── loading_7.imageset │ │ ├── Contents.json │ │ └── loading_7.png │ │ ├── loading_8.imageset │ │ ├── Contents.json │ │ └── loading_8.png │ │ └── loading_9.imageset │ │ ├── Contents.json │ │ └── loading_9.png │ └── en.lproj │ └── Localizable.strings ├── CoffeeFilter.iOSWatchKitExtension ├── CoffeeFilterContaining.iOSWatchKitExtension.csproj ├── Entitlements.plist ├── Info.plist ├── InterfaceController.cs ├── InterfaceController.designer.cs ├── LocalizationHelper.cs ├── MapDetailController.cs ├── MapDetailController.designer.cs ├── PhotoRowController.cs ├── PhotoRowController.designer.cs ├── PhotosController.cs ├── PhotosController.designer.cs ├── PlaceRowController.cs ├── PlaceRowController.designer.cs ├── PluginsHelp │ ├── ConnectivityReadme.txt │ └── GeolocatorReadme.txt ├── ReviewRowController.cs ├── ReviewRowController.designer.cs ├── ReviewsController.cs ├── ReviewsController.designer.cs └── packages.config ├── CoffeeFilter.sln ├── LICENSE.md ├── README.md └── art ├── coffeefilterdemo.gif ├── coffeefilteriosdemo.gif ├── coffeefilterwatchdemo.gif └── promo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/.gitignore -------------------------------------------------------------------------------- /CoffeeFilter.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /CoffeeFilter.Android/BaseActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/BaseActivity.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/CoffeeFilter.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/CoffeeFilter.Android.csproj -------------------------------------------------------------------------------- /CoffeeFilter.Android/DetailsActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/DetailsActivity.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Fragments/PlaceDetailsFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Fragments/PlaceDetailsFragment.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Fragments/PlaceFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Fragments/PlaceFragment.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Fragments/PlacePhotosFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Fragments/PlacePhotosFragment.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Fragments/PlaceReviewsFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Fragments/PlaceReviewsFragment.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Helpers/FilterScrollView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Helpers/FilterScrollView.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Helpers/SquareImageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Helpers/SquareImageView.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/InviteBroadcastReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/InviteBroadcastReceiver.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/MainActivity.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/PanoramaActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/PanoramaActivity.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/PluginsHelp/ConnectivityReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/PluginsHelp/ConnectivityReadme.txt -------------------------------------------------------------------------------- /CoffeeFilter.Android/PluginsHelp/GeolocatorReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/PluginsHelp/GeolocatorReadme.txt -------------------------------------------------------------------------------- /CoffeeFilter.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Properties/_SettingsStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Properties/_SettingsStarted.txt -------------------------------------------------------------------------------- /CoffeeFilter.Android/ReferrerReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/ReferrerReceiver.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_big_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_big_half_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_big_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_big_off_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_big_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_big_on_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_small_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_small_half_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_small_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_small_off_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_small_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/apptheme_rate_star_small_on_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_action_maps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_action_maps_navigation.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug1.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug2.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug3.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug4.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_mug5.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_sadcoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_sadcoffee.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-hdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-hdpi/ic_star.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_big_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_big_half_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_big_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_big_off_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_big_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_big_on_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_small_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_small_half_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_small_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_small_off_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_small_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/apptheme_rate_star_small_on_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_action_maps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_action_maps_navigation.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug1.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug2.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug3.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug4.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_mug5.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_sadcoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_sadcoffee.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-mdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-mdpi/ic_star.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/apptheme_rate_star_small_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/apptheme_rate_star_small_half_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/apptheme_rate_star_small_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/apptheme_rate_star_small_off_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/apptheme_rate_star_small_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/apptheme_rate_star_small_on_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_action_maps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_action_maps_navigation.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug1.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug2.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug3.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug4.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_mug5.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_sadcoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_sadcoffee.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xhdpi/ic_star.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_big_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_big_half_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_big_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_big_off_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_big_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_big_on_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_small_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_small_half_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_small_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_small_off_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_small_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/apptheme_rate_star_small_on_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_action_maps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_action_maps_navigation.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug1.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug2.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug3.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug4.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_mug5.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_sadcoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_sadcoffee.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxhdpi/ic_star.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxxhdpi/apptheme_rate_star_big_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxxhdpi/apptheme_rate_star_big_half_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxxhdpi/apptheme_rate_star_big_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxxhdpi/apptheme_rate_star_big_off_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxxhdpi/apptheme_rate_star_big_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxxhdpi/apptheme_rate_star_big_on_holo_light.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable/apptheme_ratingbar_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable/apptheme_ratingbar_holo_light.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable/apptheme_ratingbar_small_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable/apptheme_ratingbar_small_holo_light.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/drawable/coffee_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/drawable/coffee_progress.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/details.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/details.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/fragment_details.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/fragment_details.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/fragment_photos.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/fragment_photos.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/fragment_place.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/fragment_place.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/fragment_reviews.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/fragment_reviews.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/item_photo.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/item_photo.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/item_review.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/item_review.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/main.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/panorama.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/panorama.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/test_setup.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/test_setup.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/layout/toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/layout/toolbar.axml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/menu/menu_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/menu/menu_details.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/menu/menu_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/menu/menu_home.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/values-sw720dp/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/values-sw720dp/integers.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/values-v21/styles.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/values/arrays.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/values/dimens.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/values/integers.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/values/strings.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /CoffeeFilter.Android/environment.txt: -------------------------------------------------------------------------------- 1 | MONO_GC_PARAMS=bridge-implementation=new -------------------------------------------------------------------------------- /CoffeeFilter.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Android/packages.config -------------------------------------------------------------------------------- /CoffeeFilter.Shared/CoffeeFilter.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/CoffeeFilter.Shared.projitems -------------------------------------------------------------------------------- /CoffeeFilter.Shared/CoffeeFilter.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/CoffeeFilter.Shared.shproj -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Helpers/DateTimeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Helpers/DateTimeUtils.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Helpers/GeolocationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Helpers/GeolocationUtils.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Helpers/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Helpers/ResourceLoader.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Helpers/ServiceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Helpers/ServiceContainer.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Models/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Models/Location.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Models/OperatingHours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Models/OperatingHours.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Models/Photos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Models/Photos.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Models/Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Models/Place.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Models/Queries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Models/Queries.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/Models/Reviews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/Models/Reviews.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/ViewModels/CoffeeFilterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/ViewModels/CoffeeFilterViewModel.cs -------------------------------------------------------------------------------- /CoffeeFilter.Shared/ViewModels/DetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.Shared/ViewModels/DetailsViewModel.cs -------------------------------------------------------------------------------- /CoffeeFilter.UITests.Shared/CoffeeFilter.UITests.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests.Shared/CoffeeFilter.UITests.Shared.projitems -------------------------------------------------------------------------------- /CoffeeFilter.UITests.Shared/CoffeeFilter.UITests.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests.Shared/CoffeeFilter.UITests.Shared.shproj -------------------------------------------------------------------------------- /CoffeeFilter.UITests.Shared/UITestsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests.Shared/UITestsHelpers.cs -------------------------------------------------------------------------------- /CoffeeFilter.UITests/CoffeeFilter.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests/CoffeeFilter.UITests.csproj -------------------------------------------------------------------------------- /CoffeeFilter.UITests/CoffeeFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests/CoffeeFilterTests.cs -------------------------------------------------------------------------------- /CoffeeFilter.UITests/PredefinedSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests/PredefinedSteps.cs -------------------------------------------------------------------------------- /CoffeeFilter.UITests/Queries/AndroidQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests/Queries/AndroidQueries.cs -------------------------------------------------------------------------------- /CoffeeFilter.UITests/Queries/IScreenQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests/Queries/IScreenQueries.cs -------------------------------------------------------------------------------- /CoffeeFilter.UITests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.UITests/packages.config -------------------------------------------------------------------------------- /CoffeeFilter.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/CoffeeFilter.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/CoffeeFilter.iOS.csproj -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/DetailsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/DetailsViewController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/DetailsViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/DetailsViewController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/PhotosViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/PhotosViewController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/PhotosViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/PhotosViewController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/PlaceDetailsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/PlaceDetailsViewController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/PlaceDetailsViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/PlaceDetailsViewController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/ReviewsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/ReviewsViewController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/ReviewsViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/ReviewsViewController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/SearchViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/SearchViewController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/StreetViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/StreetViewController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/ViewController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Controllers/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Controllers/ViewController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Entitlements.plist -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Helpers/CloudManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Helpers/CloudManager.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Helpers/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Helpers/Helpers.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Helpers/NibHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Helpers/NibHelper.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Info.plist -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Main.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/PluginsHelp/ConnectivityReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/PluginsHelp/ConnectivityReadme.txt -------------------------------------------------------------------------------- /CoffeeFilter.iOS/PluginsHelp/GeolocatorReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/PluginsHelp/GeolocatorReadme.txt -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/100x100.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/114x114.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/120x120.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/152x152.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/172x172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/172x172.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/180x180.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/196x196.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/29x29.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/40x40.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/48x48.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/50x50.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/55x55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/55x55.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/57x57.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/58x58.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/72x72.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/76x76.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/80x80.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/87x87.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/88x88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/88x88.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/1242x2208.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/1536x2008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/1536x2008.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/1536x2048.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/640x1136.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/640x960.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/750x1334.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/768x1004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/768x1004.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/768x1024.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/i_star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/i_star.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/i_star.imageset/i_star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/i_star.imageset/i_star.pdf -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/i_star_rate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/i_star_rate.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/i_star_rate.imageset/i_star_rate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/i_star_rate.imageset/i_star_rate.pdf -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug5.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug5.imageset/ic_mug5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug5.imageset/ic_mug5.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug5.imageset/ic_mug5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug5.imageset/ic_mug5@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug5.imageset/ic_mug5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug5.imageset/ic_mug5@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug_steam.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug_steam.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug_steam.imageset/ic_mug_steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug_steam.imageset/ic_mug_steam.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug_steam.imageset/ic_mug_steam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug_steam.imageset/ic_mug_steam@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug_steam.imageset/ic_mug_steam@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_mug_steam.imageset/ic_mug_steam@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_sadcoffee.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_sadcoffee.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_sadcoffee.imageset/ic_sadcoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_sadcoffee.imageset/ic_sadcoffee.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_sadcoffee.imageset/ic_sadcoffee@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_sadcoffee.imageset/ic_sadcoffee@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/ic_sadcoffee.imageset/ic_sadcoffee@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/ic_sadcoffee.imageset/ic_sadcoffee@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/information.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/information.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/information.imageset/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/information.imageset/information.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/information.imageset/information@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/information.imageset/information@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/information.imageset/information@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/information.imageset/information@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/more.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/more.imageset/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/more.imageset/more.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/more.imageset/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/more.imageset/more@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/more.imageset/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/more.imageset/more@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/near.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/near.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/near.imageset/near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/near.imageset/near.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/near.imageset/near@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/near.imageset/near@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/near.imageset/near@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/near.imageset/near@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/photos.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/photos.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/photos.imageset/photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/photos.imageset/photos.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/photos.imageset/photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/photos.imageset/photos@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/photos.imageset/photos@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/photos.imageset/photos@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/placeholder.imageset/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/placeholder.imageset/placeholder.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/search.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/search.imageset/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/search.imageset/search.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/search.imageset/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/search.imageset/search@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/search.imageset/search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/search.imageset/search@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/syncing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/syncing.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/syncing.imageset/syncing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/syncing.imageset/syncing.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/syncing.imageset/syncing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/syncing.imageset/syncing@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/syncing.imageset/syncing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/syncing.imageset/syncing@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/user_chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/user_chat.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/user_chat.imageset/user_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/user_chat.imageset/user_chat.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/user_chat.imageset/user_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/user_chat.imageset/user_chat@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/user_chat.imageset/user_chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/user_chat.imageset/user_chat@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/warning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/warning.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/warning.imageset/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/warning.imageset/warning.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/warning.imageset/warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/warning.imageset/warning@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/Images.xcassets/warning.imageset/warning@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/Images.xcassets/warning.imageset/warning@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/CoffeeAnimationView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/CoffeeAnimationView.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/CoffeeAnimationView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/CoffeeAnimationView.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/CoffeeAnimationView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/CoffeeAnimationView.xib -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/Main.storyboard -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/OpenHoursView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/OpenHoursView.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/OpenHoursView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/OpenHoursView.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/ParallaxTableHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/ParallaxTableHeader.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/PhotoCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/PhotoCell.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/PhotoCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/PhotoCell.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/PlaceDetailsCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/PlaceDetailsCell.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/PlaceDetailsCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/PlaceDetailsCell.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/PlaceView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/PlaceView.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/PlaceView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/PlaceView.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/PlaceView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/PlaceView.xib -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/RatingView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/RatingView.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/RatingView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/RatingView.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/ReviewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/ReviewCell.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/ReviewCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/ReviewCell.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/WarningMessageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/WarningMessageView.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/WarningMessageView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/WarningMessageView.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOS/Views/WarningMessageView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/Views/WarningMessageView.xib -------------------------------------------------------------------------------- /CoffeeFilter.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOS/packages.config -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/CoffeeFilterDistribution.iOSWatchKitApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/CoffeeFilterDistribution.iOSWatchKitApp.csproj -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Entitlements.plist -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Info.plist -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Interface.storyboard -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/172x172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/172x172.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/196x196.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/48x48.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/55x55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/55x55.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/58x58.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/80x80.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/87x87.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/88x88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/88x88.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug1.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug1.imageset/ic_mug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug1.imageset/ic_mug1.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug1.imageset/ic_mug1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug1.imageset/ic_mug1@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug1.imageset/ic_mug1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug1.imageset/ic_mug1@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug2.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug2.imageset/ic_mug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug2.imageset/ic_mug2.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug2.imageset/ic_mug2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug2.imageset/ic_mug2@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug2.imageset/ic_mug2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug2.imageset/ic_mug2@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug3.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug3.imageset/ic_mug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug3.imageset/ic_mug3.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug3.imageset/ic_mug3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug3.imageset/ic_mug3@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug3.imageset/ic_mug3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug3.imageset/ic_mug3@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug4.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug4.imageset/ic_mug4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug4.imageset/ic_mug4.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug4.imageset/ic_mug4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug4.imageset/ic_mug4@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug4.imageset/ic_mug4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug4.imageset/ic_mug4@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug5.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug5.imageset/ic_mug5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug5.imageset/ic_mug5.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug5.imageset/ic_mug5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug5.imageset/ic_mug5@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug5.imageset/ic_mug5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug5.imageset/ic_mug5@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug6.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug6.imageset/ic_mug4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug6.imageset/ic_mug4.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug6.imageset/ic_mug4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug6.imageset/ic_mug4@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug6.imageset/ic_mug4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug6.imageset/ic_mug4@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug7.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug7.imageset/ic_mug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug7.imageset/ic_mug3.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug7.imageset/ic_mug3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug7.imageset/ic_mug3@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug7.imageset/ic_mug3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug7.imageset/ic_mug3@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug8.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug8.imageset/ic_mug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug8.imageset/ic_mug2.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug8.imageset/ic_mug2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug8.imageset/ic_mug2@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug8.imageset/ic_mug2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug8.imageset/ic_mug2@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug9.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug9.imageset/ic_mug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug9.imageset/ic_mug1.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug9.imageset/ic_mug1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug9.imageset/ic_mug1@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug9.imageset/ic_mug1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/coffeeAnimation/ic_mug9.imageset/ic_mug1@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/ic_star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/ic_star.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/ic_star.imageset/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/ic_star.imageset/ic_star.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/ic_star.imageset/ic_star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/ic_star.imageset/ic_star@2x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/ic_star.imageset/ic_star@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/ic_star.imageset/ic_star@3x.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_1.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_1.imageset/loading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_1.imageset/loading_1.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_10.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_10.imageset/loading_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_10.imageset/loading_10.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_11.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_11.imageset/loading_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_11.imageset/loading_11.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_12.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_12.imageset/loading_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_12.imageset/loading_12.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_2.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_2.imageset/loading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_2.imageset/loading_2.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_3.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_3.imageset/loading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_3.imageset/loading_3.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_4.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_4.imageset/loading_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_4.imageset/loading_4.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_5.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_5.imageset/loading_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_5.imageset/loading_5.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_6.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_6.imageset/loading_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_6.imageset/loading_6.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_7.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_7.imageset/loading_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_7.imageset/loading_7.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_8.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_8.imageset/loading_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_8.imageset/loading_8.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_9.imageset/Contents.json -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_9.imageset/loading_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/Images.xcassets/photoAnimation/loading_9.imageset/loading_9.png -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitApp/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitApp/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/CoffeeFilterContaining.iOSWatchKitExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/CoffeeFilterContaining.iOSWatchKitExtension.csproj -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/Entitlements.plist -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/Info.plist -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/InterfaceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/InterfaceController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/InterfaceController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/InterfaceController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/LocalizationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/LocalizationHelper.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/MapDetailController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/MapDetailController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/MapDetailController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/MapDetailController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/PhotoRowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/PhotoRowController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/PhotoRowController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/PhotoRowController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/PhotosController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/PhotosController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/PhotosController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/PhotosController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/PlaceRowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/PlaceRowController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/PlaceRowController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/PlaceRowController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/PluginsHelp/ConnectivityReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/PluginsHelp/ConnectivityReadme.txt -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/PluginsHelp/GeolocatorReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/PluginsHelp/GeolocatorReadme.txt -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/ReviewRowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/ReviewRowController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/ReviewRowController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/ReviewRowController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/ReviewsController.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/ReviewsController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/ReviewsController.designer.cs -------------------------------------------------------------------------------- /CoffeeFilter.iOSWatchKitExtension/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.iOSWatchKitExtension/packages.config -------------------------------------------------------------------------------- /CoffeeFilter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/CoffeeFilter.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/README.md -------------------------------------------------------------------------------- /art/coffeefilterdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/art/coffeefilterdemo.gif -------------------------------------------------------------------------------- /art/coffeefilteriosdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/art/coffeefilteriosdemo.gif -------------------------------------------------------------------------------- /art/coffeefilterwatchdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/art/coffeefilterwatchdemo.gif -------------------------------------------------------------------------------- /art/promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/Coffee-Filter/HEAD/art/promo.png --------------------------------------------------------------------------------