├── .gitignore ├── .travis.yml ├── Backend ├── README.md ├── date-to-iso-string.js ├── db-format.js ├── fix-in-reply-to.js ├── id-matches-archive-url.js ├── importer │ ├── README.md │ ├── download.js │ ├── generate.js │ ├── list-parser.js │ ├── list-parser.test.js │ ├── message-parser.js │ ├── message-parser.test.js │ ├── run.sh │ └── sample │ │ ├── List-1 │ │ ├── List-2 │ │ ├── List-3 │ │ ├── List-4 │ │ ├── List-5 │ │ ├── Message-1 │ │ ├── Message-2 │ │ ├── Message-3 │ │ ├── Message-4 │ │ └── npm-debug.log ├── list-period.js ├── logger │ └── logger.js ├── mail-logger.js ├── mail.js ├── message-number-from-archive-url.js ├── package.json ├── test │ ├── fix-in-reply-to.test.js │ ├── id-matches-archive-url.test.js │ ├── list-period.test.js │ ├── mail.test.js │ ├── message-number-from-archive-url.test.js │ └── validate-archive-url.test.js └── validate-archive-url.js ├── Build Scripts ├── backend-test.sh ├── contributors.sh ├── install-dependencies.sh └── ios-test.sh ├── Documentation Resources ├── CONTRIBUTORS ├── Community Guidelines.md ├── LICENSE ├── iOS App Structure.png ├── screenshot-1.png └── screenshot-2.png ├── README.md └── iOS └── Charter ├── .gitignore ├── Base.lproj └── LocalizableStrings.strings ├── Charter.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── Charter.xcscheme └── xcuserdata │ └── matthewpalmer.xcuserdatad │ └── xcschemes │ ├── CharterUITests.xcscheme │ └── xcschememanagement.plist ├── Charter.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ ├── Charter.xcscmblueprint │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── matthewpalmer.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── Charter ├── AppCoordinator.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── charter-1-120.png │ │ ├── charter-1-152.png │ │ ├── charter-1-167.png │ │ ├── charter-1-180.png │ │ └── charter-1-76.png │ ├── Contents.json │ ├── UIButtonBarArrowDown.imageset │ │ ├── Contents.json │ │ ├── UIButtonBarArrowDown.png │ │ └── UIButtonBarArrowDown@2x.png │ └── UIButtonBarArrowUp.imageset │ │ ├── Contents.json │ │ ├── UIButtonBarArrowUp.png │ │ └── UIButtonBarArrowUp@2x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Charter-Bridging-Header.h ├── Info.plist ├── Mailing Lists View Controller │ ├── MailingListsViewController.swift │ └── MailingListsViewController.xib ├── Models │ ├── Email.swift │ ├── EmailTest.swift │ ├── JSON │ │ ├── EmailInvalid.json │ │ ├── EmailValidButPartial.json │ │ ├── MemberEmail.json │ │ ├── PreexistingEmail1.json │ │ ├── PreexistingEmail2.json │ │ ├── PreexistingEmail3.json │ │ ├── PreexistingEmail4.json │ │ └── RootEmail.json │ ├── MailingList.swift │ └── NetworkEmail.swift ├── Resources │ └── Localizable.swift ├── Services │ ├── Data Sources │ │ ├── Cache │ │ │ ├── RealmDataSource.swift │ │ │ └── RealmDataSourceTest.swift │ │ └── Networking │ │ │ ├── Credentials.plist │ │ │ ├── EmailThreadNetworkDataSourceImpl.swift │ │ │ ├── EmailThreadNetworkDataSourceImplTest.swift │ │ │ ├── EmailThreadResponse.json │ │ │ └── SubThreadResponse.json │ ├── EmailThreadRequest.swift │ ├── EmailThreadRequestBuilder.swift │ ├── EmailThreadRequestBuilderTest.swift │ ├── EmailThreadService.swift │ ├── EmailThreadServiceDataSources.swift │ ├── EmailThreadServiceImplTest.swift │ ├── LabelService.swift │ ├── SearchRequestBuilder.swift │ └── SearchRequestBuilderTest.swift ├── Thread Detail View Controller │ ├── CodeBlockParser.swift │ ├── EmailTextRegionViewDataSource.swift │ ├── FullEmailMessageTableViewCell.swift │ ├── FullEmailMessageTableViewCell.xib │ ├── RegionView.swift │ ├── ThreadDetailDataSource.swift │ ├── ThreadDetailDataSourceImplTest.swift │ ├── ThreadDetailViewController.swift │ ├── ThreadDetailViewController.xib │ └── ThreeDotsButton.swift ├── Threads View Controller │ ├── Base.lproj │ │ ├── NoThreadsTableViewCell.xib │ │ └── SearchInProgressTableViewCell.xib │ ├── MessagePreviewTableViewCell.swift │ ├── MessagePreviewTableViewCell.xib │ ├── NoThreadsTableViewCell.swift │ ├── SearchInProgressTableViewCell.swift │ ├── ThreadsSearchViewControllerDataSource.swift │ ├── ThreadsViewController.swift │ ├── ThreadsViewController.xib │ ├── ThreadsViewControllerDataSource.swift │ ├── ThreadsViewControllerDataSourceTest.swift │ ├── es.lproj │ │ ├── NoThreadsTableViewCell.strings │ │ └── SearchInProgressTableViewCell.strings │ └── pt-PT.lproj │ │ ├── NoThreadsTableViewCell.strings │ │ └── SearchInProgressTableViewCell.strings └── Utility │ ├── Either.swift │ ├── EmailFormatter.swift │ ├── EmailFormatterTest.swift │ ├── EmailQuoteRanges.swift │ ├── NRLabel.swift │ ├── NSAttributedString_AttributesAndRanges.swift │ └── UIFont_SmallCaps.swift ├── CharterTests ├── Info.plist └── TestUtilities.swift ├── CharterUITests ├── Info.plist ├── ScreenshotData.json └── SnapshotTestCase.swift ├── Podfile ├── Podfile.lock ├── Preview.html ├── README.md ├── es.lproj └── LocalizableStrings.strings ├── fastlane ├── Appfile ├── Deliverfile ├── Fastfile ├── README.md ├── Snapfile ├── SnapshotHelper.swift └── metadata │ ├── copyright.txt │ ├── en-US │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── release_notes.txt │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── pt-PT │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── release_notes.txt │ └── support_url.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ └── secondary_second_sub_category.txt └── pt-PT.lproj └── LocalizableStrings.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/README.md -------------------------------------------------------------------------------- /Backend/date-to-iso-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/date-to-iso-string.js -------------------------------------------------------------------------------- /Backend/db-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/db-format.js -------------------------------------------------------------------------------- /Backend/fix-in-reply-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/fix-in-reply-to.js -------------------------------------------------------------------------------- /Backend/id-matches-archive-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/id-matches-archive-url.js -------------------------------------------------------------------------------- /Backend/importer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/README.md -------------------------------------------------------------------------------- /Backend/importer/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/download.js -------------------------------------------------------------------------------- /Backend/importer/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/generate.js -------------------------------------------------------------------------------- /Backend/importer/list-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/list-parser.js -------------------------------------------------------------------------------- /Backend/importer/list-parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/list-parser.test.js -------------------------------------------------------------------------------- /Backend/importer/message-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/message-parser.js -------------------------------------------------------------------------------- /Backend/importer/message-parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/message-parser.test.js -------------------------------------------------------------------------------- /Backend/importer/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/run.sh -------------------------------------------------------------------------------- /Backend/importer/sample/List-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/List-1 -------------------------------------------------------------------------------- /Backend/importer/sample/List-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/List-2 -------------------------------------------------------------------------------- /Backend/importer/sample/List-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/List-3 -------------------------------------------------------------------------------- /Backend/importer/sample/List-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/List-4 -------------------------------------------------------------------------------- /Backend/importer/sample/List-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/List-5 -------------------------------------------------------------------------------- /Backend/importer/sample/Message-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/Message-1 -------------------------------------------------------------------------------- /Backend/importer/sample/Message-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/Message-2 -------------------------------------------------------------------------------- /Backend/importer/sample/Message-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/Message-3 -------------------------------------------------------------------------------- /Backend/importer/sample/Message-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/Message-4 -------------------------------------------------------------------------------- /Backend/importer/sample/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/importer/sample/npm-debug.log -------------------------------------------------------------------------------- /Backend/list-period.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/list-period.js -------------------------------------------------------------------------------- /Backend/logger/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/logger/logger.js -------------------------------------------------------------------------------- /Backend/mail-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/mail-logger.js -------------------------------------------------------------------------------- /Backend/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/mail.js -------------------------------------------------------------------------------- /Backend/message-number-from-archive-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/message-number-from-archive-url.js -------------------------------------------------------------------------------- /Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/package.json -------------------------------------------------------------------------------- /Backend/test/fix-in-reply-to.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/test/fix-in-reply-to.test.js -------------------------------------------------------------------------------- /Backend/test/id-matches-archive-url.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/test/id-matches-archive-url.test.js -------------------------------------------------------------------------------- /Backend/test/list-period.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/test/list-period.test.js -------------------------------------------------------------------------------- /Backend/test/mail.test.js: -------------------------------------------------------------------------------- 1 | // TODO -------------------------------------------------------------------------------- /Backend/test/message-number-from-archive-url.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/test/message-number-from-archive-url.test.js -------------------------------------------------------------------------------- /Backend/test/validate-archive-url.test.js: -------------------------------------------------------------------------------- 1 | // TODO -------------------------------------------------------------------------------- /Backend/validate-archive-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Backend/validate-archive-url.js -------------------------------------------------------------------------------- /Build Scripts/backend-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Build Scripts/backend-test.sh -------------------------------------------------------------------------------- /Build Scripts/contributors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Build Scripts/contributors.sh -------------------------------------------------------------------------------- /Build Scripts/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Build Scripts/install-dependencies.sh -------------------------------------------------------------------------------- /Build Scripts/ios-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Build Scripts/ios-test.sh -------------------------------------------------------------------------------- /Documentation Resources/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Documentation Resources/CONTRIBUTORS -------------------------------------------------------------------------------- /Documentation Resources/Community Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Documentation Resources/Community Guidelines.md -------------------------------------------------------------------------------- /Documentation Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Documentation Resources/LICENSE -------------------------------------------------------------------------------- /Documentation Resources/iOS App Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Documentation Resources/iOS App Structure.png -------------------------------------------------------------------------------- /Documentation Resources/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Documentation Resources/screenshot-1.png -------------------------------------------------------------------------------- /Documentation Resources/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/Documentation Resources/screenshot-2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/README.md -------------------------------------------------------------------------------- /iOS/Charter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/.gitignore -------------------------------------------------------------------------------- /iOS/Charter/Base.lproj/LocalizableStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Base.lproj/LocalizableStrings.strings -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcodeproj/xcshareddata/xcschemes/Charter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcodeproj/xcshareddata/xcschemes/Charter.xcscheme -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcodeproj/xcuserdata/matthewpalmer.xcuserdatad/xcschemes/CharterUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcodeproj/xcuserdata/matthewpalmer.xcuserdatad/xcschemes/CharterUITests.xcscheme -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcodeproj/xcuserdata/matthewpalmer.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcodeproj/xcuserdata/matthewpalmer.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcworkspace/xcshareddata/Charter.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcworkspace/xcshareddata/Charter.xcscmblueprint -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /iOS/Charter/Charter.xcworkspace/xcuserdata/matthewpalmer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter.xcworkspace/xcuserdata/matthewpalmer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /iOS/Charter/Charter/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/AppCoordinator.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/AppDelegate.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-120.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-152.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-167.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-180.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/AppIcon.appiconset/charter-1-76.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowDown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowDown.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowDown.imageset/UIButtonBarArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowDown.imageset/UIButtonBarArrowDown.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowDown.imageset/UIButtonBarArrowDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowDown.imageset/UIButtonBarArrowDown@2x.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowUp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowUp.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowUp.imageset/UIButtonBarArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowUp.imageset/UIButtonBarArrowUp.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowUp.imageset/UIButtonBarArrowUp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Assets.xcassets/UIButtonBarArrowUp.imageset/UIButtonBarArrowUp@2x.png -------------------------------------------------------------------------------- /iOS/Charter/Charter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOS/Charter/Charter/Charter-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Charter-Bridging-Header.h -------------------------------------------------------------------------------- /iOS/Charter/Charter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Info.plist -------------------------------------------------------------------------------- /iOS/Charter/Charter/Mailing Lists View Controller/MailingListsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Mailing Lists View Controller/MailingListsViewController.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Mailing Lists View Controller/MailingListsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Mailing Lists View Controller/MailingListsViewController.xib -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/Email.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/Email.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/EmailTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/EmailTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/JSON/EmailInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/JSON/EmailInvalid.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/JSON/EmailValidButPartial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/JSON/EmailValidButPartial.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/JSON/MemberEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/JSON/MemberEmail.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/JSON/PreexistingEmail1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/JSON/PreexistingEmail1.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/JSON/PreexistingEmail2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/JSON/PreexistingEmail2.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/JSON/PreexistingEmail3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/JSON/PreexistingEmail3.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/JSON/PreexistingEmail4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/JSON/PreexistingEmail4.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/JSON/RootEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/JSON/RootEmail.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/MailingList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/MailingList.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Models/NetworkEmail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Models/NetworkEmail.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Resources/Localizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Resources/Localizable.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/Data Sources/Cache/RealmDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/Data Sources/Cache/RealmDataSource.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/Data Sources/Cache/RealmDataSourceTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/Data Sources/Cache/RealmDataSourceTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/Data Sources/Networking/Credentials.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/Data Sources/Networking/Credentials.plist -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/Data Sources/Networking/EmailThreadNetworkDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/Data Sources/Networking/EmailThreadNetworkDataSourceImpl.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/Data Sources/Networking/EmailThreadNetworkDataSourceImplTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/Data Sources/Networking/EmailThreadNetworkDataSourceImplTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/Data Sources/Networking/EmailThreadResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/Data Sources/Networking/EmailThreadResponse.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/Data Sources/Networking/SubThreadResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/Data Sources/Networking/SubThreadResponse.json -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/EmailThreadRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/EmailThreadRequest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/EmailThreadRequestBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/EmailThreadRequestBuilder.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/EmailThreadRequestBuilderTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/EmailThreadRequestBuilderTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/EmailThreadService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/EmailThreadService.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/EmailThreadServiceDataSources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/EmailThreadServiceDataSources.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/EmailThreadServiceImplTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/EmailThreadServiceImplTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/LabelService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/LabelService.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/SearchRequestBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/SearchRequestBuilder.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Services/SearchRequestBuilderTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Services/SearchRequestBuilderTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/CodeBlockParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/CodeBlockParser.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/EmailTextRegionViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/EmailTextRegionViewDataSource.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/FullEmailMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/FullEmailMessageTableViewCell.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/FullEmailMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/FullEmailMessageTableViewCell.xib -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/RegionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/RegionView.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/ThreadDetailDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/ThreadDetailDataSource.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/ThreadDetailDataSourceImplTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/ThreadDetailDataSourceImplTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/ThreadDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/ThreadDetailViewController.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/ThreadDetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/ThreadDetailViewController.xib -------------------------------------------------------------------------------- /iOS/Charter/Charter/Thread Detail View Controller/ThreeDotsButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Thread Detail View Controller/ThreeDotsButton.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/Base.lproj/NoThreadsTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/Base.lproj/NoThreadsTableViewCell.xib -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/Base.lproj/SearchInProgressTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/Base.lproj/SearchInProgressTableViewCell.xib -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/MessagePreviewTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/MessagePreviewTableViewCell.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/MessagePreviewTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/MessagePreviewTableViewCell.xib -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/NoThreadsTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/NoThreadsTableViewCell.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/SearchInProgressTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/SearchInProgressTableViewCell.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/ThreadsSearchViewControllerDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/ThreadsSearchViewControllerDataSource.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/ThreadsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/ThreadsViewController.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/ThreadsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/ThreadsViewController.xib -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/ThreadsViewControllerDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/ThreadsViewControllerDataSource.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/ThreadsViewControllerDataSourceTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/ThreadsViewControllerDataSourceTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/es.lproj/NoThreadsTableViewCell.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/es.lproj/NoThreadsTableViewCell.strings -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/es.lproj/SearchInProgressTableViewCell.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/es.lproj/SearchInProgressTableViewCell.strings -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/pt-PT.lproj/NoThreadsTableViewCell.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/pt-PT.lproj/NoThreadsTableViewCell.strings -------------------------------------------------------------------------------- /iOS/Charter/Charter/Threads View Controller/pt-PT.lproj/SearchInProgressTableViewCell.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Threads View Controller/pt-PT.lproj/SearchInProgressTableViewCell.strings -------------------------------------------------------------------------------- /iOS/Charter/Charter/Utility/Either.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Utility/Either.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Utility/EmailFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Utility/EmailFormatter.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Utility/EmailFormatterTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Utility/EmailFormatterTest.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Utility/EmailQuoteRanges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Utility/EmailQuoteRanges.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Utility/NRLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Utility/NRLabel.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Utility/NSAttributedString_AttributesAndRanges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Utility/NSAttributedString_AttributesAndRanges.swift -------------------------------------------------------------------------------- /iOS/Charter/Charter/Utility/UIFont_SmallCaps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Charter/Utility/UIFont_SmallCaps.swift -------------------------------------------------------------------------------- /iOS/Charter/CharterTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/CharterTests/Info.plist -------------------------------------------------------------------------------- /iOS/Charter/CharterTests/TestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/CharterTests/TestUtilities.swift -------------------------------------------------------------------------------- /iOS/Charter/CharterUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/CharterUITests/Info.plist -------------------------------------------------------------------------------- /iOS/Charter/CharterUITests/ScreenshotData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/CharterUITests/ScreenshotData.json -------------------------------------------------------------------------------- /iOS/Charter/CharterUITests/SnapshotTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/CharterUITests/SnapshotTestCase.swift -------------------------------------------------------------------------------- /iOS/Charter/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Podfile -------------------------------------------------------------------------------- /iOS/Charter/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Podfile.lock -------------------------------------------------------------------------------- /iOS/Charter/Preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/Preview.html -------------------------------------------------------------------------------- /iOS/Charter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/README.md -------------------------------------------------------------------------------- /iOS/Charter/es.lproj/LocalizableStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/es.lproj/LocalizableStrings.strings -------------------------------------------------------------------------------- /iOS/Charter/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/Appfile -------------------------------------------------------------------------------- /iOS/Charter/fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/Deliverfile -------------------------------------------------------------------------------- /iOS/Charter/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/Fastfile -------------------------------------------------------------------------------- /iOS/Charter/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/README.md -------------------------------------------------------------------------------- /iOS/Charter/fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/Snapfile -------------------------------------------------------------------------------- /iOS/Charter/fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | 2016 Matthew Palmer -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/metadata/en-US/description.txt -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/metadata/en-US/keywords.txt -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | http://matthewpalmer.net/charter/ -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/en-US/name.txt: -------------------------------------------------------------------------------- 1 | Charter: Mailing List Client for Swift -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/metadata/en-US/release_notes.txt -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | http://matthewpalmer.net -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | MZGenre.Reference -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/pt-PT/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/metadata/pt-PT/description.txt -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/pt-PT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/metadata/pt-PT/keywords.txt -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/pt-PT/marketing_url.txt: -------------------------------------------------------------------------------- 1 | http://matthewpalmer.net/charter/ -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/pt-PT/name.txt: -------------------------------------------------------------------------------- 1 | Charter — Swift Gestor de Subscrições -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/pt-PT/privacy_url.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/pt-PT/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/fastlane/metadata/pt-PT/release_notes.txt -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/pt-PT/support_url.txt: -------------------------------------------------------------------------------- 1 | http://matthewpalmer.net -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | MZGenre.Utilities -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Charter/fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Charter/pt-PT.lproj/LocalizableStrings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Charter/HEAD/iOS/Charter/pt-PT.lproj/LocalizableStrings.strings --------------------------------------------------------------------------------