Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove prefix use in public APIs and respell Upload as DirectUpload #84

Merged
merged 19 commits into from
Jul 31, 2023

Commits on Jul 31, 2023

  1. Configuration menu
    Copy the full SHA
    c337d33 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a541f25 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    67d5ec4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c001a28 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5c77e87 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5a5bc6a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0167c61 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    313ebc2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a282dd7 View commit details
    Browse the repository at this point in the history
  10. Renames

    DirectUploadManagerDelegate.uploadListUpdated(with:) ->
    DirectUploadManagerDelegate.didUpdate(managedDirectUploads:)
    
    DirectUploadManager.allManagedUploads() ->
    DirectUploadManager.allManagedDirectUploads()
    
    DirectUploadManager.findStartedUpload(ofFile:) ->
    DirectUploadManager.startedDirectUpload(ofFile:)
    
    DirectUploadManager.resumeUpload(ofFile:) ->
    DirectUploadManager.resumeDirectUpload(ofFile:)
    
    DirectUploadManager.resumeUpload(ofFile:completion:) ->
    DirectUploadManager.resumeDirectUpload(ofFile:completion:)
    
    DirectUploadManager.resumeAllUploads() ->
    DirectUploadManager.resumeAllDirectUploads()
    andrewjl-mux committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    805b688 View commit details
    Browse the repository at this point in the history
  11. Fix docs typo separately

    andrewjl-mux committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    cdbfc5f View commit details
    Browse the repository at this point in the history
  12. Fix Example

    andrewjl-mux committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    1bdeb98 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    df57f37 View commit details
    Browse the repository at this point in the history
  14. Docs

    andrewjl-mux committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    98baf92 View commit details
    Browse the repository at this point in the history
  15. Unnest DirectUploadError

    Remove Error.parseAsUploadError(lastSeenUploadStatus:)
    andrewjl-mux committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    f79c59e View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    cd133b0 View commit details
    Browse the repository at this point in the history
  17. InputStatus renames

    uploadSucceeded -> finished, wraps DirectUploadResult
    uploadFailed -> finished, wraps DirectUploadResult
    andrewjl-mux committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    dc19afd View commit details
    Browse the repository at this point in the history
  18. InputStatus renames 2

    awaitingUploadConfirmation -> awaitingConfirmation
    uploadInProgress -> transportInProgress
    uploadPaused -> paused
    andrewjl-mux committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    02e2222 View commit details
    Browse the repository at this point in the history
  19. DirectUpload.Success -> DirectUpload.SuccessDetails

    To distinguish from DirectUploadResult.success
    andrewjl-mux committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    a256147 View commit details
    Browse the repository at this point in the history