├── .gitignore ├── LICENSE ├── ParseOSX.framework ├── Headers ├── ParseOSX ├── Resources └── Versions │ ├── 1.1.22 │ ├── Headers │ │ ├── PFACL.h │ │ ├── PFAnonymousUtils.h │ │ ├── PFCloud.h │ │ ├── PFConstants.h │ │ ├── PFFacebookUtils.h │ │ ├── PFFile.h │ │ ├── PFGeoPoint.h │ │ ├── PFImageView.h │ │ ├── PFInstallation.h │ │ ├── PFLogInView.h │ │ ├── PFLogInViewController.h │ │ ├── PFObject.h │ │ ├── PFProduct.h │ │ ├── PFProductTableViewController.h │ │ ├── PFPurchase.h │ │ ├── PFPurchaseTableViewCell.h │ │ ├── PFPush.h │ │ ├── PFQuery.h │ │ ├── PFQueryTableViewController.h │ │ ├── PFRelation.h │ │ ├── PFRole.h │ │ ├── PFSignUpView.h │ │ ├── PFSignUpViewController.h │ │ ├── PFTableViewCell.h │ │ ├── PFTwitterUtils.h │ │ ├── PFUser.h │ │ ├── PF_EGORefreshTableHeaderView.h │ │ ├── PF_FBCacheDescriptor.h │ │ ├── PF_FBCacheIndex.h │ │ ├── PF_FBConnect.h │ │ ├── PF_FBContentLink.h │ │ ├── PF_FBDataDiskCache.h │ │ ├── PF_FBDialog.h │ │ ├── PF_FBError.h │ │ ├── PF_FBFrictionlessRequestSettings.h │ │ ├── PF_FBFriendPickerCacheDescriptor.h │ │ ├── PF_FBFriendPickerViewController+Internal.h │ │ ├── PF_FBFriendPickerViewController.h │ │ ├── PF_FBGraphLocation.h │ │ ├── PF_FBGraphObject.h │ │ ├── PF_FBGraphObjectPagingLoader.h │ │ ├── PF_FBGraphObjectTableCell.h │ │ ├── PF_FBGraphObjectTableDataSource.h │ │ ├── PF_FBGraphObjectTableSelection.h │ │ ├── PF_FBGraphPlace.h │ │ ├── PF_FBGraphUser.h │ │ ├── PF_FBLogger.h │ │ ├── PF_FBLoginDialog.h │ │ ├── PF_FBLoginView.h │ │ ├── PF_FBNativeDialogs.h │ │ ├── PF_FBOpenGraphAction.h │ │ ├── PF_FBPlacePickerCacheDescriptor.h │ │ ├── PF_FBPlacePickerViewController+Internal.h │ │ ├── PF_FBPlacePickerViewController.h │ │ ├── PF_FBProfilePictureView.h │ │ ├── PF_FBRequest.h │ │ ├── PF_FBRequestBody.h │ │ ├── PF_FBRequestConnection+Internal.h │ │ ├── PF_FBRequestConnection.h │ │ ├── PF_FBSDKVersion.h │ │ ├── PF_FBSession+Internal.h │ │ ├── PF_FBSession+Protected.h │ │ ├── PF_FBSession.h │ │ ├── PF_FBSessionManualTokenCachingStrategy.h │ │ ├── PF_FBSessionTokenCachingStrategy.h │ │ ├── PF_FBSettings+Internal.h │ │ ├── PF_FBSettings.h │ │ ├── PF_FBTestSession+Internal.h │ │ ├── PF_FBTestSession.h │ │ ├── PF_FBURLConnection.h │ │ ├── PF_FBUserSettingsViewController.h │ │ ├── PF_FBUtility.h │ │ ├── PF_FBViewController+Internal.h │ │ ├── PF_FBViewController.h │ │ ├── PF_Facebook.h │ │ ├── PF_FacebookSDK.h │ │ ├── PF_MBProgressHUD.h │ │ ├── PF_Twitter.h │ │ └── Parse.h │ ├── ParseOSX │ └── Resources │ │ ├── Info.plist │ │ └── Localizable.strings │ └── Current ├── README.md ├── TodoList.xcodeproj └── project.pbxproj └── TodoList ├── TDAppDelegate.h ├── TDAppDelegate.m ├── TDAuthWindowController.h ├── TDAuthWindowController.m ├── TDAuthWindowController.xib ├── TDItemTableCellView.h ├── TDItemTableCellView.m ├── TDMainWindowController.h ├── TDMainWindowController.m ├── TDMainWindowController.xib ├── TodoList-Info.plist ├── TodoList-Prefix.pch ├── TodoList.icns ├── en.lproj ├── Credits.rtf ├── InfoPlist.strings └── MainMenu.xib └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/LICENSE -------------------------------------------------------------------------------- /ParseOSX.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /ParseOSX.framework/ParseOSX: -------------------------------------------------------------------------------- 1 | Versions/Current/ParseOSX -------------------------------------------------------------------------------- /ParseOSX.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFACL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFACL.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFAnonymousUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFAnonymousUtils.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFCloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFCloud.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFConstants.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFFacebookUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFFacebookUtils.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFFile.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFGeoPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFGeoPoint.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFImageView.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFInstallation.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFLogInView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFLogInView.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFLogInViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFLogInViewController.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFObject.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFProduct.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFProductTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFProductTableViewController.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFPurchase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFPurchase.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFPurchaseTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFPurchaseTableViewCell.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFPush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFPush.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFQuery.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFQueryTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFQueryTableViewController.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFRelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFRelation.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFRole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFRole.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFSignUpView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFSignUpView.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFSignUpViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFSignUpViewController.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFTableViewCell.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFTwitterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFTwitterUtils.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PFUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PFUser.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_EGORefreshTableHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_EGORefreshTableHeaderView.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBCacheDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBCacheDescriptor.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBCacheIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBCacheIndex.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBConnect.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBContentLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBContentLink.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBDataDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBDataDiskCache.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBDialog.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBError.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBFrictionlessRequestSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBFrictionlessRequestSettings.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBFriendPickerCacheDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBFriendPickerCacheDescriptor.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBFriendPickerViewController+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBFriendPickerViewController+Internal.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBFriendPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBFriendPickerViewController.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphLocation.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObject.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObjectPagingLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObjectPagingLoader.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObjectTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObjectTableCell.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObjectTableDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObjectTableDataSource.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObjectTableSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphObjectTableSelection.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphPlace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphPlace.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBGraphUser.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBLogger.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBLoginDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBLoginDialog.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBLoginView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBLoginView.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBNativeDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBNativeDialogs.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBOpenGraphAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBOpenGraphAction.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBPlacePickerCacheDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBPlacePickerCacheDescriptor.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBPlacePickerViewController+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBPlacePickerViewController+Internal.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBPlacePickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBPlacePickerViewController.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBProfilePictureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBProfilePictureView.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBRequest.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBRequestBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBRequestBody.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBRequestConnection+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBRequestConnection+Internal.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBRequestConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBRequestConnection.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSDKVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSDKVersion.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSession+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSession+Internal.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSession+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSession+Protected.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSession.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSessionManualTokenCachingStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSessionManualTokenCachingStrategy.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSessionTokenCachingStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSessionTokenCachingStrategy.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSettings+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSettings+Internal.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBSettings.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBTestSession+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBTestSession+Internal.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBTestSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBTestSession.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBURLConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBURLConnection.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBUserSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBUserSettingsViewController.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBUtility.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBViewController+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBViewController+Internal.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FBViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FBViewController.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_Facebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_Facebook.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_FacebookSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_FacebookSDK.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_MBProgressHUD.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/PF_Twitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/PF_Twitter.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Headers/Parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Headers/Parse.h -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/ParseOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/ParseOSX -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Resources/Info.plist -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/1.1.22/Resources/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/ParseOSX.framework/Versions/1.1.22/Resources/Localizable.strings -------------------------------------------------------------------------------- /ParseOSX.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 1.1.22 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/README.md -------------------------------------------------------------------------------- /TodoList.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TodoList/TDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDAppDelegate.h -------------------------------------------------------------------------------- /TodoList/TDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDAppDelegate.m -------------------------------------------------------------------------------- /TodoList/TDAuthWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDAuthWindowController.h -------------------------------------------------------------------------------- /TodoList/TDAuthWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDAuthWindowController.m -------------------------------------------------------------------------------- /TodoList/TDAuthWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDAuthWindowController.xib -------------------------------------------------------------------------------- /TodoList/TDItemTableCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDItemTableCellView.h -------------------------------------------------------------------------------- /TodoList/TDItemTableCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDItemTableCellView.m -------------------------------------------------------------------------------- /TodoList/TDMainWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDMainWindowController.h -------------------------------------------------------------------------------- /TodoList/TDMainWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDMainWindowController.m -------------------------------------------------------------------------------- /TodoList/TDMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TDMainWindowController.xib -------------------------------------------------------------------------------- /TodoList/TodoList-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TodoList-Info.plist -------------------------------------------------------------------------------- /TodoList/TodoList-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TodoList-Prefix.pch -------------------------------------------------------------------------------- /TodoList/TodoList.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/TodoList.icns -------------------------------------------------------------------------------- /TodoList/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /TodoList/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TodoList/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /TodoList/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/TodoOSX/HEAD/TodoList/main.m --------------------------------------------------------------------------------