Skip to content

Commit

Permalink
Rename master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
msaps committed Dec 23, 2020
1 parent b328b2b commit d2ba38d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ This is the core class of the project, and is the main externally facing compone

### Management

All inner view controller management is contained within the [PageboyViewController+Management](https://github.com/uias/Pageboy/blob/master/Sources/Pageboy/PageboyViewController%2BManagement.swift) extension.
All inner view controller management is contained within the [PageboyViewController+Management](https://github.com/uias/Pageboy/blob/main/Sources/Pageboy/PageboyViewController%2BManagement.swift) extension.

This is also where the internal `UIPageViewController` instance is managed. Any additional functionality relevant to the `UIPageViewController` or management of child view controllers should be added to this extension.

### Scroll Detection

The [PageboyViewController+ScrollDetection](https://github.com/uias/Pageboy/blob/master/Sources/Pageboy/PageboyViewController%2BScrollDetection.swift) extension handles responding to scroll updates in addition to all the functions for observing the internal scroll view.
The [PageboyViewController+ScrollDetection](https://github.com/uias/Pageboy/blob/main/Sources/Pageboy/PageboyViewController%2BScrollDetection.swift) extension handles responding to scroll updates in addition to all the functions for observing the internal scroll view.

This extension also responds to the internal `UIPageViewControllerDelegate` and handles infinite scrolling behaviour etc.

### Transitioning

The custom transitioning support available in `Pageboy` is provided by the [PageboyViewController+Transitioning](https://github.com/uias/Pageboy/blob/master/Sources/Pageboy/Transitioning/PageboyViewController%2BTransitioning.swift) extension. In conjunction with [TransitionOperation](https://github.com/uias/Pageboy/blob/master/Sources/Pageboy/Transitioning/TransitionOperation.swift) object, custom transitioning is made available through the use of `CATransition` in place of the built in `UIPageViewController` animations.
The custom transitioning support available in `Pageboy` is provided by the [PageboyViewController+Transitioning](https://github.com/uias/Pageboy/blob/main/Sources/Pageboy/Transitioning/PageboyViewController%2BTransitioning.swift) extension. In conjunction with [TransitionOperation](https://github.com/uias/Pageboy/blob/main/Sources/Pageboy/Transitioning/TransitionOperation.swift) object, custom transitioning is made available through the use of `CATransition` in place of the built in `UIPageViewController` animations.

Any updates or tweaks to animated transitioning should be made here.

Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ platform :ios do
name: version,
tag_name: version,
description: "#{version} release.",
commitish: "master"
commitish: "main"
)

# Push spec
Expand Down

0 comments on commit d2ba38d

Please sign in to comment.