├── .gitignore ├── .swiftlint.yml ├── BUILDING_MIDDLEMAC.md ├── CODE_OF_CONDUCT.md ├── HELPBOOK.md ├── LICENSE ├── README.md ├── ShipShape.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── IDETemplateMacros.plist ├── ShipShape ├── Activities │ ├── ASCApp.swift │ ├── ASCLogView.swift │ ├── ASCView.swift │ ├── AppListingView.swift │ ├── AppReview │ │ ├── ASCReviewDetails.swift │ │ └── AppReviewView.swift │ ├── AppSection.swift │ ├── Availability │ │ ├── ASCAppAvailability.swift │ │ └── AppAvailabilityView.swift │ ├── BasicInformation │ │ └── BasicInformationView.swift │ ├── Builds │ │ ├── ASCAppBuild.swift │ │ ├── ASCImageAsset.swift │ │ └── BuildsView.swift │ ├── CustomerReviews │ │ ├── ASCCustomerReview.swift │ │ ├── ASCCustomerReviewResponse.swift │ │ ├── CustomerReviewsView.swift │ │ ├── RatingView.swift │ │ └── ReviewTranslationView.swift │ ├── InAppPurchases │ │ ├── ASCInAppPurchase.swift │ │ └── InAppPurchasesView.swift │ ├── Localizations │ │ ├── ASCVersionLocalization.swift │ │ ├── LocalePickerView.swift │ │ └── LocalizationsView.swift │ ├── Nominations │ │ ├── ASCAppNomination.swift │ │ └── NominationsView.swift │ ├── PerformanceMetrics │ │ ├── ASCPerformanceMetrics.swift │ │ └── PerformanceMetricsView.swift │ ├── Screenshots │ │ ├── ASCAppScreenshot.swift │ │ ├── ASCAppScreenshotSets.swift │ │ ├── ScreenshotSetView.swift │ │ └── ScreenshotsView.swift │ ├── Subscriptions │ │ ├── ASCSubscription.swift │ │ ├── ASCSubscriptionGroup.swift │ │ ├── ASCSubscriptionGroupLocalization.swift │ │ └── SubscriptionsView.swift │ ├── Versions │ │ ├── ASCAppVersion.swift │ │ └── VersionsView.swift │ └── Welcome │ │ └── WelcomeView.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── appstore1024.png │ │ ├── ipad152.png │ │ ├── ipad76.png │ │ ├── ipadNotification20.png │ │ ├── ipadNotification40.png │ │ ├── ipadPro167.png │ │ ├── ipadSettings29.png │ │ ├── ipadSettings58.png │ │ ├── ipadSpotlight40.png │ │ ├── ipadSpotlight80.png │ │ ├── iphone120.png │ │ ├── iphone180.png │ │ ├── mac1024.png │ │ ├── mac128.png │ │ ├── mac16.png │ │ ├── mac256.png │ │ ├── mac32.png │ │ ├── mac512.png │ │ ├── mac64.png │ │ ├── notification40.png │ │ ├── notification60.png │ │ ├── settings58.png │ │ ├── settings87.png │ │ ├── spotlight120.png │ │ └── spotlight80.png │ └── Contents.json ├── Client │ ├── ASCClient-GetEndpoints.swift │ ├── ASCClient-PostEndpoints.swift │ ├── ASCClient.swift │ ├── ASCClientError.swift │ ├── ASCIncludedData.swift │ └── ASCPayload.swift ├── ContentView.swift ├── Extensions │ ├── Array-ContentStatuses.swift │ ├── String-AppStoreState.swift │ ├── String-ApprovalState.swift │ ├── String-DeviceFamily.swift │ ├── String-DeviceName.swift │ ├── String-InAppPurchaseType.swift │ ├── String-NominationState.swift │ ├── String-NominationType.swift │ ├── String-Platform.swift │ ├── String-ProcessingState.swift │ ├── String-SubscriptionLength.swift │ ├── String-TerritoryName.swift │ └── String-VersionCompare.swift ├── Info.plist ├── Protocols │ └── URLSessionProtocol.swift ├── Reusables │ ├── ASCIdentifiedType.swift │ ├── LoadState.swift │ ├── LoadingView.swift │ ├── PostState.swift │ ├── PostingObjects.swift │ ├── PostingView.swift │ ├── ReloadButton.swift │ └── StyledTextEditor.swift ├── Settings │ ├── Constants.swift │ ├── DefaultValues.swift │ └── UserSettings.swift ├── ShipShape.entitlements ├── ShipShapeApp.swift └── Utilities │ └── Logger.swift ├── ShipShapeTests └── ASCClientTests.swift └── helpbook_source ├── .gitignore ├── .ruby-version ├── Contents ├── Info.plist.erb └── Resources │ ├── SharedGlobalAssets │ ├── _data │ │ └── locale-list.json │ ├── _layouts │ │ ├── layout-apple-modern-aside.haml │ │ ├── layout-apple-modern.haml │ │ ├── layout-blank.haml │ │ └── layout-hpd.haml │ ├── _partials │ │ └── _partials_dir_partial.erb │ ├── convention │ │ ├── icon-webclip-120x120.png │ │ ├── icon-webclip-152x152.png │ │ ├── icon-webclip-57x57.png │ │ ├── icon-webclip-76x76.png │ │ ├── icon-webclip-ipad.png │ │ ├── icon-webclip-ipad_2x.png │ │ ├── icon-webclip-iphone.png │ │ ├── icon-webclip-iphone_2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ └── icon_32x32@2x.png │ ├── css │ │ ├── apple │ │ │ ├── apple.css │ │ │ └── css │ │ │ │ └── img │ │ │ │ ├── L0200_LeftArrow_2x.png │ │ │ │ ├── L0201_RightArrow_2x.png │ │ │ │ ├── arrow-blue.svg │ │ │ │ ├── arrow.svg │ │ │ │ ├── ask-siri.svg │ │ │ │ ├── button-clear-search.png │ │ │ │ ├── button-close-2.png │ │ │ │ ├── button-close-learnmore.png │ │ │ │ ├── button-close.png │ │ │ │ ├── button-search-small.png │ │ │ │ ├── button-search.png │ │ │ │ ├── button-toc-rtl.png │ │ │ │ ├── button-toc-small-rtl.png │ │ │ │ ├── button-toc-small.png │ │ │ │ ├── button-toc-toggle-rtl.png │ │ │ │ ├── button-toc-toggle.png │ │ │ │ ├── button-toc.png │ │ │ │ ├── changelanguage_icon2x.png │ │ │ │ ├── force-click.svg │ │ │ │ ├── icon-arrow-2.svg │ │ │ │ ├── icon-arrow.png │ │ │ │ ├── icon-close.svg │ │ │ │ ├── icon-external-link-lg.png │ │ │ │ ├── icon-external-link.png │ │ │ │ ├── icon-pause.svg │ │ │ │ ├── icon-play.svg │ │ │ │ ├── icon-replay.svg │ │ │ │ ├── icon-warning-black.png │ │ │ │ ├── icon-warning-eu.png │ │ │ │ ├── icon-warning.png │ │ │ │ ├── icon-webclip-120x120.png │ │ │ │ ├── icon-webclip-152x152.png │ │ │ │ ├── icon-webclip-57x57.png │ │ │ │ ├── icon-webclip-76x76.png │ │ │ │ ├── icon-webclip-ipad.png │ │ │ │ ├── icon-webclip-ipad_2x.png │ │ │ │ ├── icon-webclip-iphone.png │ │ │ │ ├── icon-webclip-iphone_2x.png │ │ │ │ ├── movie-play_2x.png │ │ │ │ ├── nav-left.svg │ │ │ │ ├── nav-paddle-left.png │ │ │ │ ├── nav-paddle-right.png │ │ │ │ ├── nav-right.svg │ │ │ │ ├── search_image_large.svg │ │ │ │ ├── tip.svg │ │ │ │ ├── toc_blue_large.svg │ │ │ │ └── toc_large.svg │ │ └── middlemac │ │ │ ├── github.css.scss │ │ │ ├── middlemac.css.scss │ │ │ ├── note.svg │ │ │ ├── tip.svg │ │ │ └── warning.svg │ ├── fonts │ │ └── _dummy.txt │ └── js │ │ ├── app.5.1.27.js │ │ ├── middlemac-debug.js │ │ └── vendor.js │ ├── en.lproj │ ├── 10_app_store_api_key.html.md.erb │ ├── ExactMatch.plist.erb │ ├── InfoPlist.strings.erb │ ├── copyright.html.md.erb │ ├── index.html.md.erb │ ├── index_hpd.html.md.erb │ ├── locale-info.json.erb │ ├── navigation.json.erb │ └── searchTree.json.erb │ ├── index.html.erb │ └── locale-list.json.erb ├── Gemfile ├── Gemfile.lock ├── config.rb ├── makefile └── middlemac.webloc /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | .DS_Store 3 | .build/ 4 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /BUILDING_MIDDLEMAC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/BUILDING_MIDDLEMAC.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HELPBOOK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/HELPBOOK.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/README.md -------------------------------------------------------------------------------- /ShipShape.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ShipShape.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ShipShape.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ShipShape.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /ShipShape/Activities/ASCApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/ASCApp.swift -------------------------------------------------------------------------------- /ShipShape/Activities/ASCLogView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/ASCLogView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/ASCView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/ASCView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/AppListingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/AppListingView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/AppReview/ASCReviewDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/AppReview/ASCReviewDetails.swift -------------------------------------------------------------------------------- /ShipShape/Activities/AppReview/AppReviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/AppReview/AppReviewView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/AppSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/AppSection.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Availability/ASCAppAvailability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Availability/ASCAppAvailability.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Availability/AppAvailabilityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Availability/AppAvailabilityView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/BasicInformation/BasicInformationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/BasicInformation/BasicInformationView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Builds/ASCAppBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Builds/ASCAppBuild.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Builds/ASCImageAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Builds/ASCImageAsset.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Builds/BuildsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Builds/BuildsView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/CustomerReviews/ASCCustomerReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/CustomerReviews/ASCCustomerReview.swift -------------------------------------------------------------------------------- /ShipShape/Activities/CustomerReviews/ASCCustomerReviewResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/CustomerReviews/ASCCustomerReviewResponse.swift -------------------------------------------------------------------------------- /ShipShape/Activities/CustomerReviews/CustomerReviewsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/CustomerReviews/CustomerReviewsView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/CustomerReviews/RatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/CustomerReviews/RatingView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/CustomerReviews/ReviewTranslationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/CustomerReviews/ReviewTranslationView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/InAppPurchases/ASCInAppPurchase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/InAppPurchases/ASCInAppPurchase.swift -------------------------------------------------------------------------------- /ShipShape/Activities/InAppPurchases/InAppPurchasesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/InAppPurchases/InAppPurchasesView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Localizations/ASCVersionLocalization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Localizations/ASCVersionLocalization.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Localizations/LocalePickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Localizations/LocalePickerView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Localizations/LocalizationsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Localizations/LocalizationsView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Nominations/ASCAppNomination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Nominations/ASCAppNomination.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Nominations/NominationsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Nominations/NominationsView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/PerformanceMetrics/ASCPerformanceMetrics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/PerformanceMetrics/ASCPerformanceMetrics.swift -------------------------------------------------------------------------------- /ShipShape/Activities/PerformanceMetrics/PerformanceMetricsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/PerformanceMetrics/PerformanceMetricsView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Screenshots/ASCAppScreenshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Screenshots/ASCAppScreenshot.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Screenshots/ASCAppScreenshotSets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Screenshots/ASCAppScreenshotSets.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Screenshots/ScreenshotSetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Screenshots/ScreenshotSetView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Screenshots/ScreenshotsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Screenshots/ScreenshotsView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Subscriptions/ASCSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Subscriptions/ASCSubscription.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Subscriptions/ASCSubscriptionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Subscriptions/ASCSubscriptionGroup.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Subscriptions/ASCSubscriptionGroupLocalization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Subscriptions/ASCSubscriptionGroupLocalization.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Subscriptions/SubscriptionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Subscriptions/SubscriptionsView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Versions/ASCAppVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Versions/ASCAppVersion.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Versions/VersionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Versions/VersionsView.swift -------------------------------------------------------------------------------- /ShipShape/Activities/Welcome/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Activities/Welcome/WelcomeView.swift -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/appstore1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/appstore1024.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipad152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipad152.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipad76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipad76.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipadNotification20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipadNotification20.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipadNotification40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipadNotification40.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipadPro167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipadPro167.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipadSettings29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipadSettings29.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipadSettings58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipadSettings58.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipadSpotlight40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipadSpotlight40.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/ipadSpotlight80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/ipadSpotlight80.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/iphone120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/iphone120.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/iphone180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/iphone180.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/mac1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/mac1024.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/mac128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/mac128.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/mac16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/mac16.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/mac256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/mac256.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/mac32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/mac32.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/mac512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/mac512.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/mac64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/mac64.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/notification40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/notification40.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/notification60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/notification60.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/settings58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/settings58.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/settings87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/settings87.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/spotlight120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/spotlight120.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/AppIcon.appiconset/spotlight80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/AppIcon.appiconset/spotlight80.png -------------------------------------------------------------------------------- /ShipShape/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ShipShape/Client/ASCClient-GetEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Client/ASCClient-GetEndpoints.swift -------------------------------------------------------------------------------- /ShipShape/Client/ASCClient-PostEndpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Client/ASCClient-PostEndpoints.swift -------------------------------------------------------------------------------- /ShipShape/Client/ASCClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Client/ASCClient.swift -------------------------------------------------------------------------------- /ShipShape/Client/ASCClientError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Client/ASCClientError.swift -------------------------------------------------------------------------------- /ShipShape/Client/ASCIncludedData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Client/ASCIncludedData.swift -------------------------------------------------------------------------------- /ShipShape/Client/ASCPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Client/ASCPayload.swift -------------------------------------------------------------------------------- /ShipShape/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/ContentView.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/Array-ContentStatuses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/Array-ContentStatuses.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-AppStoreState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-AppStoreState.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-ApprovalState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-ApprovalState.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-DeviceFamily.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-DeviceFamily.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-DeviceName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-DeviceName.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-InAppPurchaseType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-InAppPurchaseType.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-NominationState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-NominationState.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-NominationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-NominationType.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-Platform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-Platform.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-ProcessingState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-ProcessingState.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-SubscriptionLength.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-SubscriptionLength.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-TerritoryName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-TerritoryName.swift -------------------------------------------------------------------------------- /ShipShape/Extensions/String-VersionCompare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Extensions/String-VersionCompare.swift -------------------------------------------------------------------------------- /ShipShape/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Info.plist -------------------------------------------------------------------------------- /ShipShape/Protocols/URLSessionProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Protocols/URLSessionProtocol.swift -------------------------------------------------------------------------------- /ShipShape/Reusables/ASCIdentifiedType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Reusables/ASCIdentifiedType.swift -------------------------------------------------------------------------------- /ShipShape/Reusables/LoadState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Reusables/LoadState.swift -------------------------------------------------------------------------------- /ShipShape/Reusables/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Reusables/LoadingView.swift -------------------------------------------------------------------------------- /ShipShape/Reusables/PostState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Reusables/PostState.swift -------------------------------------------------------------------------------- /ShipShape/Reusables/PostingObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Reusables/PostingObjects.swift -------------------------------------------------------------------------------- /ShipShape/Reusables/PostingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Reusables/PostingView.swift -------------------------------------------------------------------------------- /ShipShape/Reusables/ReloadButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Reusables/ReloadButton.swift -------------------------------------------------------------------------------- /ShipShape/Reusables/StyledTextEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Reusables/StyledTextEditor.swift -------------------------------------------------------------------------------- /ShipShape/Settings/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Settings/Constants.swift -------------------------------------------------------------------------------- /ShipShape/Settings/DefaultValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Settings/DefaultValues.swift -------------------------------------------------------------------------------- /ShipShape/Settings/UserSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Settings/UserSettings.swift -------------------------------------------------------------------------------- /ShipShape/ShipShape.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/ShipShape.entitlements -------------------------------------------------------------------------------- /ShipShape/ShipShapeApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/ShipShapeApp.swift -------------------------------------------------------------------------------- /ShipShape/Utilities/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShape/Utilities/Logger.swift -------------------------------------------------------------------------------- /ShipShapeTests/ASCClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/ShipShapeTests/ASCClientTests.swift -------------------------------------------------------------------------------- /helpbook_source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/.gitignore -------------------------------------------------------------------------------- /helpbook_source/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.4 2 | -------------------------------------------------------------------------------- /helpbook_source/Contents/Info.plist.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Info.plist.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/_data/locale-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/_data/locale-list.json -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/_layouts/layout-apple-modern-aside.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/_layouts/layout-apple-modern-aside.haml -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/_layouts/layout-apple-modern.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/_layouts/layout-apple-modern.haml -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/_layouts/layout-blank.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/_layouts/layout-blank.haml -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/_layouts/layout-hpd.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/_layouts/layout-hpd.haml -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/_partials/_partials_dir_partial.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/_partials/_partials_dir_partial.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-120x120.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-152x152.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-57x57.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-76x76.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-ipad.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-ipad_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-ipad_2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-iphone.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-iphone_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon-webclip-iphone_2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon_256x256.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon_256x256@2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon_32x32.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/convention/icon_32x32@2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/apple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/apple.css -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/L0200_LeftArrow_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/L0200_LeftArrow_2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/L0201_RightArrow_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/L0201_RightArrow_2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/arrow-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/arrow-blue.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/arrow.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/ask-siri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/ask-siri.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-clear-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-clear-search.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-close-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-close-2.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-close-learnmore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-close-learnmore.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-close.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-search-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-search-small.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-search.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-rtl.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-small-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-small-rtl.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-small.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-toggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-toggle-rtl.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc-toggle.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/button-toc.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/changelanguage_icon2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/changelanguage_icon2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/force-click.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/force-click.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-arrow-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-arrow-2.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-arrow.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-close.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-external-link-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-external-link-lg.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-external-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-external-link.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-pause.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-play.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-replay.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-warning-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-warning-black.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-warning-eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-warning-eu.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-warning.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-120x120.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-152x152.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-57x57.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-76x76.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-ipad.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-ipad_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-ipad_2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-iphone.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-iphone_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/icon-webclip-iphone_2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/movie-play_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/movie-play_2x.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/nav-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/nav-left.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/nav-paddle-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/nav-paddle-left.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/nav-paddle-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/nav-paddle-right.png -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/nav-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/nav-right.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/search_image_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/search_image_large.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/tip.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/toc_blue_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/toc_blue_large.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/toc_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/apple/css/img/toc_large.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/github.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/github.css.scss -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/middlemac.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/middlemac.css.scss -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/note.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/tip.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/css/middlemac/warning.svg -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/fonts/_dummy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/js/app.5.1.27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/js/app.5.1.27.js -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/js/middlemac-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/js/middlemac-debug.js -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/SharedGlobalAssets/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/SharedGlobalAssets/js/vendor.js -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/10_app_store_api_key.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/en.lproj/10_app_store_api_key.html.md.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/ExactMatch.plist.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/en.lproj/ExactMatch.plist.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/InfoPlist.strings.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/en.lproj/InfoPlist.strings.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/copyright.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/en.lproj/copyright.html.md.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/index.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/en.lproj/index.html.md.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/index_hpd.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/en.lproj/index_hpd.html.md.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/locale-info.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/en.lproj/locale-info.json.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/navigation.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/en.lproj/navigation.json.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/en.lproj/searchTree.json.erb: -------------------------------------------------------------------------------- 1 | <%= hb_search_tree %> 2 | -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/index.html.erb -------------------------------------------------------------------------------- /helpbook_source/Contents/Resources/locale-list.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Contents/Resources/locale-list.json.erb -------------------------------------------------------------------------------- /helpbook_source/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Gemfile -------------------------------------------------------------------------------- /helpbook_source/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/Gemfile.lock -------------------------------------------------------------------------------- /helpbook_source/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/config.rb -------------------------------------------------------------------------------- /helpbook_source/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/makefile -------------------------------------------------------------------------------- /helpbook_source/middlemac.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/ShipShape/HEAD/helpbook_source/middlemac.webloc --------------------------------------------------------------------------------