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

DrawerKit 0.3.4 release #44

Merged
merged 1 commit into from
Nov 15, 2017
Merged

DrawerKit 0.3.4 release #44

merged 1 commit into from
Nov 15, 2017

Conversation

wltrup
Copy link
Contributor

@wltrup wltrup commented Nov 15, 2017

This PR brings master to version 0.3.4 by adding the following change:

  • Adds a new configuration parameter for the handle view, namely, its vertical position with respect to the presented view's frame.

* Update README.md (#23)

* Release 0.2.0 (#28)

* Added git ignore file

* Added project workspace

* Added tab bar template project

* Added DrawerKit empty framework

* Added basic view controllers and storyboards

* Fixed broken outlets

* Added implementation of DrawerKit. A few bits to complete still.

* Hooked up the view controllers to the custom presentation.

* Added clamping to the three possible resting positions of the drawer

* Added more configuration to the presenting VC

* Fixed a few glitches related to allowing partial expansion or not, and some refactoring.

* Removed the two timing configurations and now using only one for all animations.

* Added support for not having the gesture recognisers.

* Fixed a potential division by zero.

* Adding more configuration controls to presenting VC. WIP.

* Added debug mode.

* Added some TODOs

* Renamed a function to make it clear it's a debugging feature.

* Minor refactoring.

* Renamed some source files for better clarity of intention.

* Removed source headers.

* Changed the presented VC to make a larger drawer (easier to play with).

* Changed some parameters as per Sam's input.

* Improved behaviour of corner rounding at the two edges of the screen. Still not a perfect solution because the animator's completion block is, surprisingly, not always called. Apparently, that's a bug in UIViewPropertyAnimator.

* Made the logic for the drawer behaviour easier to read, because Sergey doesn't like `guard` with boolean statements. ;)

* Moved some code closer to where it's actually used.

* Minor formatting.

* Added a fix to the corner-radius animation issue whereby the corner radius would not be set to zero because the property animator's completion would not always be called. Now we force it to zero on presentationTransitionDidEnd() (for the appropriate drawer ending positions).

* Disabled automatic code signing.

* The heights of the bands surrounding the resting position of the drawer are now given in absolute rather than relative terms.

* Oopsie... committed a compiler error. Fixed now.

* Added a scrollview to the presented view controller in the demo app, for testing how scrolling interacts with the drag gesture recogniser in the presentation controller.

* Added an interaction controller, the first step in fixing the non-interactive presentation/dismissal itself.

* Renamed TransitionAnimator to AnimationController.

* Renamed a file to match the extension it's about.

* Duh, it was supposed to be AnimationController, not AnimatorController.

* Implemented interactive controller for the presentation and dismissal, and cleaned up the code for the animation controller (it doesn't need to know anything about the drawers).

* Added license file and CocoaPods podspec. Not passing lint just yet.

* Removed indirect access to configuration parameters.

* Removed currently unused source file TransitionGeometry.

* Fixed company name in the license file.

* Cleared the team entry in the demo app.

* Demo app: adding controls for all the configurable parameters. WIP.

* Added control for manipulating cubic Bezier control points, CubicBezierView.

* Added all the controls to the presenter VC.

* Fixed a TODO comment.

* Make sure that durationInSeconds is a positive value.

* Removed all references to coversStatusBar since that hasn't been implemented yet.

* Make sure that flickSpeedThreshold is a non-negative value. Also, if zero, disables support for flicking.

* Make sure that upperMarkGap and lowerMarkGap are non-negative values.

* Only add debugging mark lines if at least one of upperMarkGap and lowerMarkGap is a positive value.

* Make sure that maximumCornerRadius is a non-negative value.

* Only animate the corner radius if maximumCornerRadius is strictly positive.

* Make sure that numberOfTapsForOutsideDrawerDismissal is a non-negative value.

* Resolved an issue with animating rounding the presented view corners.

* Simplified the demo app to its bare essentials. No more configuration controls to the wazoo.

* Added based documentation to the library.

* Preliminary version of README. WIP.

* Removed unused assets.

* Added some pseudo-code to the README, to explain the presentation/dismissal logic.

* Code style change.

* Removed unnecessary [weak self] capture lists.

* Changed default value of durationInSeconds from 0.8 to 0.3 seconds.

* Fixed a botched global search/replace in DrawerConfiguration+Equatable.

* Renamed evil local gr variables to less evil names.

* Fixed guard statements as per comments.

* Removed a comment.

* Removed a protocol extension.

* Make sure that the height of the partially expanded drawer is non-negative.

* Added documentation to all exposed public entities.

* Style change as per comments.

* Fixed documentation.

* Updated README file.

* Tweaked the README file.

* Decreased the deployment target requirement, from 10.3 to 10.0.

* Removed hidden extension in the LICENSE file.

* Fixed source_files entry in the podspec. Removed the exclude_files entry.

* Added a .swift-version file with the appropriate version of Swift to pod lib lint the pod.

* Fixed the homepage in the podspec.

* Fixed a bug when running under iOS 10 in which the initial presentation animation doesn't complete, therefore not invoking viewDidAppear, which causes the drawer not to show up at all. The work-around means that the initial presentation and dismissal aren't interactive but Product signed off on that decision. The drawers work fine under iOS 11.

* Style change.

* Killed the use of IUO references.

* Changed author email address in the podspec.

* Added support for Carthage.

* [ci skip] Removed a commented out section from the README. Also, an excuse to turn CI off since DrawerKit fails it for lack of configuration for testing.

* Added CircleCI config file. (#9)

* Added CircleCI config file.

* Changed circle.yml to "test" with the simulator, which disables testing

* Let's try this one more time, shall we?

* And again

* Fixed circle.yml

* And again

* Fixed circle.yml

* Fixed circle.yml.

* Added CircleCI badge to README.

* Simplified circle.yml build command.

* Added dependency management commands to circle.yml

* Fixed podspec source item. (#12)

* Fixed podspec source item.

* Missed the s in https.

* DrawerKit release 0.0.1 (#13) (#14)

* Added git ignore file

* Added project workspace

* Added tab bar template project

* Added DrawerKit empty framework

* Added basic view controllers and storyboards

* Fixed broken outlets

* Added implementation of DrawerKit. A few bits to complete still.

* Hooked up the view controllers to the custom presentation.

* Added clamping to the three possible resting positions of the drawer

* Added more configuration to the presenting VC

* Fixed a few glitches related to allowing partial expansion or not, and some refactoring.

* Removed the two timing configurations and now using only one for all animations.

* Added support for not having the gesture recognisers.

* Fixed a potential division by zero.

* Adding more configuration controls to presenting VC. WIP.

* Added debug mode.

* Added some TODOs

* Renamed a function to make it clear it's a debugging feature.

* Minor refactoring.

* Renamed some source files for better clarity of intention.

* Removed source headers.

* Changed the presented VC to make a larger drawer (easier to play with).

* Changed some parameters as per Sam's input.

* Improved behaviour of corner rounding at the two edges of the screen. Still not a perfect solution because the animator's completion block is, surprisingly, not always called. Apparently, that's a bug in UIViewPropertyAnimator.

* Made the logic for the drawer behaviour easier to read, because Sergey doesn't like `guard` with boolean statements. ;)

* Moved some code closer to where it's actually used.

* Minor formatting.

* Added a fix to the corner-radius animation issue whereby the corner radius would not be set to zero because the property animator's completion would not always be called. Now we force it to zero on presentationTransitionDidEnd() (for the appropriate drawer ending positions).

* Disabled automatic code signing.

* The heights of the bands surrounding the resting position of the drawer are now given in absolute rather than relative terms.

* Oopsie... committed a compiler error. Fixed now.

* Added a scrollview to the presented view controller in the demo app, for testing how scrolling interacts with the drag gesture recogniser in the presentation controller.

* Added an interaction controller, the first step in fixing the non-interactive presentation/dismissal itself.

* Renamed TransitionAnimator to AnimationController.

* Renamed a file to match the extension it's about.

* Duh, it was supposed to be AnimationController, not AnimatorController.

* Implemented interactive controller for the presentation and dismissal, and cleaned up the code for the animation controller (it doesn't need to know anything about the drawers).

* Added license file and CocoaPods podspec. Not passing lint just yet.

* Removed indirect access to configuration parameters.

* Removed currently unused source file TransitionGeometry.

* Fixed company name in the license file.

* Cleared the team entry in the demo app.

* Demo app: adding controls for all the configurable parameters. WIP.

* Added control for manipulating cubic Bezier control points, CubicBezierView.

* Added all the controls to the presenter VC.

* Fixed a TODO comment.

* Make sure that durationInSeconds is a positive value.

* Removed all references to coversStatusBar since that hasn't been implemented yet.

* Make sure that flickSpeedThreshold is a non-negative value. Also, if zero, disables support for flicking.

* Make sure that upperMarkGap and lowerMarkGap are non-negative values.

* Only add debugging mark lines if at least one of upperMarkGap and lowerMarkGap is a positive value.

* Make sure that maximumCornerRadius is a non-negative value.

* Only animate the corner radius if maximumCornerRadius is strictly positive.

* Make sure that numberOfTapsForOutsideDrawerDismissal is a non-negative value.

* Resolved an issue with animating rounding the presented view corners.

* Simplified the demo app to its bare essentials. No more configuration controls to the wazoo.

* Added based documentation to the library.

* Preliminary version of README. WIP.

* Removed unused assets.

* Added some pseudo-code to the README, to explain the presentation/dismissal logic.

* Code style change.

* Removed unnecessary [weak self] capture lists.

* Changed default value of durationInSeconds from 0.8 to 0.3 seconds.

* Fixed a botched global search/replace in DrawerConfiguration+Equatable.

* Renamed evil local gr variables to less evil names.

* Fixed guard statements as per comments.

* Removed a comment.

* Removed a protocol extension.

* Make sure that the height of the partially expanded drawer is non-negative.

* Added documentation to all exposed public entities.

* Style change as per comments.

* Fixed documentation.

* Updated README file.

* Tweaked the README file.

* Decreased the deployment target requirement, from 10.3 to 10.0.

* Removed hidden extension in the LICENSE file.

* Fixed source_files entry in the podspec. Removed the exclude_files entry.

* Added a .swift-version file with the appropriate version of Swift to pod lib lint the pod.

* Fixed the homepage in the podspec.

* Fixed a bug when running under iOS 10 in which the initial presentation animation doesn't complete, therefore not invoking viewDidAppear, which causes the drawer not to show up at all. The work-around means that the initial presentation and dismissal aren't interactive but Product signed off on that decision. The drawers work fine under iOS 11.

* Style change.

* Killed the use of IUO references.

* Changed author email address in the podspec.

* Added support for Carthage.

* [ci skip] Removed a commented out section from the README. Also, an excuse to turn CI off since DrawerKit fails it for lack of configuration for testing.

* Added CircleCI config file. (#9)

* Added CircleCI config file.

* Changed circle.yml to "test" with the simulator, which disables testing

* Let's try this one more time, shall we?

* And again

* Fixed circle.yml

* And again

* Fixed circle.yml

* Fixed circle.yml.

* Added CircleCI badge to README.

* Simplified circle.yml build command.

* Added dependency management commands to circle.yml

* Fixed podspec source item. (#12)

* Fixed podspec source item.

* Missed the s in https.

* Add gif and fixes the circle CI badge. (#17)

* Adds a gif and fixes the circleci badge.

* Moved the gif down a bit.

* Removed extra space below the gif.

* Changes version from 0.0.1 to 0.1. (#18)

* Add missing link to Carthage (#15)

* Fix to README (#21)

* Changed version number from 0.0.1 to 0.1.1 in the dependency management sections of the README file.

* Fix README as per David's suggestion.

* Update podspec in preparation for release 0.1.2.

* Revert "Update podspec in preparation for release 0.1.2."

This reverts commit df1c07aa3ab36e1b82fc630ac847695edc928818.

* Add 4 UI tests to check the Drawer Kit demo app is working (#22)

- Open the drawer
- Close the drawer
- Slide to full screen
- Tap close on fully open drawer

* Run UI Tests as part of the CircleCI build (#25)

* Experiment in running the UI tests as part of the circleci build

* Fixed name in scheme

* Change simulator being used to match local environment

* Add scheme for demo with UI tests

* Between a branch build and the merge the version available for the simulator seems to have changed. This updates the yml file to reflect this (#26)

* New features (#27)

* Update README.md (#23)

* Fixed version number in Carthage section.

* Renamed some properties and functions, for better clarity of intention.

* More renaming along the same lines as the last commit.

* Added support for tapping on the drawer to fully present it

* More renaming.

* Turned on debug mode in the demo app.

* Make sure that quantities are always in their expected ranges.

* Introduced an enumeration for drawer states

* Removed extra blank line

* Replaced the DrawerPresenting protocol with a new protocol, DrawerCoordinating, and made it so that objects other than view controllers can also coordinate the presentation of drawers.

* Changed some configuration parameters in the demo app.

* Tweaked the demo.

* Added ChangeLog and updated ReadMe.

* More changes to ReadMe.

* Updated podspec.

* More changes to the ChangeLog and ReadMe files.

* Fixed guard indentation, as per comments.

* Fixed guard indentations, as per comments.

* DrawerKit 0.3.0 release (#35)

* Added git ignore file

* Added project workspace

* Added tab bar template project

* Added DrawerKit empty framework

* Added basic view controllers and storyboards

* Fixed broken outlets

* Added implementation of DrawerKit. A few bits to complete still.

* Hooked up the view controllers to the custom presentation.

* Added clamping to the three possible resting positions of the drawer

* Added more configuration to the presenting VC

* Fixed a few glitches related to allowing partial expansion or not, and some refactoring.

* Removed the two timing configurations and now using only one for all animations.

* Added support for not having the gesture recognisers.

* Fixed a potential division by zero.

* Adding more configuration controls to presenting VC. WIP.

* Added debug mode.

* Added some TODOs

* Renamed a function to make it clear it's a debugging feature.

* Minor refactoring.

* Renamed some source files for better clarity of intention.

* Removed source headers.

* Changed the presented VC to make a larger drawer (easier to play with).

* Changed some parameters as per Sam's input.

* Improved behaviour of corner rounding at the two edges of the screen. Still not a perfect solution because the animator's completion block is, surprisingly, not always called. Apparently, that's a bug in UIViewPropertyAnimator.

* Made the logic for the drawer behaviour easier to read, because Sergey doesn't like `guard` with boolean statements. ;)

* Moved some code closer to where it's actually used.

* Minor formatting.

* Added a fix to the corner-radius animation issue whereby the corner radius would not be set to zero because the property animator's completion would not always be called. Now we force it to zero on presentationTransitionDidEnd() (for the appropriate drawer ending positions).

* Disabled automatic code signing.

* The heights of the bands surrounding the resting position of the drawer are now given in absolute rather than relative terms.

* Oopsie... committed a compiler error. Fixed now.

* Added a scrollview to the presented view controller in the demo app, for testing how scrolling interacts with the drag gesture recogniser in the presentation controller.

* Added an interaction controller, the first step in fixing the non-interactive presentation/dismissal itself.

* Renamed TransitionAnimator to AnimationController.

* Renamed a file to match the extension it's about.

* Duh, it was supposed to be AnimationController, not AnimatorController.

* Implemented interactive controller for the presentation and dismissal, and cleaned up the code for the animation controller (it doesn't need to know anything about the drawers).

* Added license file and CocoaPods podspec. Not passing lint just yet.

* Removed indirect access to configuration parameters.

* Removed currently unused source file TransitionGeometry.

* Fixed company name in the license file.

* Cleared the team entry in the demo app.

* Demo app: adding controls for all the configurable parameters. WIP.

* Added control for manipulating cubic Bezier control points, CubicBezierView.

* Added all the controls to the presenter VC.

* Fixed a TODO comment.

* Make sure that durationInSeconds is a positive value.

* Removed all references to coversStatusBar since that hasn't been implemented yet.

* Make sure that flickSpeedThreshold is a non-negative value. Also, if zero, disables support for flicking.

* Make sure that upperMarkGap and lowerMarkGap are non-negative values.

* Only add debugging mark lines if at least one of upperMarkGap and lowerMarkGap is a positive value.

* Make sure that maximumCornerRadius is a non-negative value.

* Only animate the corner radius if maximumCornerRadius is strictly positive.

* Make sure that numberOfTapsForOutsideDrawerDismissal is a non-negative value.

* Resolved an issue with animating rounding the presented view corners.

* Simplified the demo app to its bare essentials. No more configuration controls to the wazoo.

* Added based documentation to the library.

* Preliminary version of README. WIP.

* Removed unused assets.

* Added some pseudo-code to the README, to explain the presentation/dismissal logic.

* Code style change.

* Removed unnecessary [weak self] capture lists.

* Changed default value of durationInSeconds from 0.8 to 0.3 seconds.

* Fixed a botched global search/replace in DrawerConfiguration+Equatable.

* Renamed evil local gr variables to less evil names.

* Fixed guard statements as per comments.

* Removed a comment.

* Removed a protocol extension.

* Make sure that the height of the partially expanded drawer is non-negative.

* Added documentation to all exposed public entities.

* Style change as per comments.

* Fixed documentation.

* Updated README file.

* Tweaked the README file.

* Decreased the deployment target requirement, from 10.3 to 10.0.

* Removed hidden extension in the LICENSE file.

* Fixed source_files entry in the podspec. Removed the exclude_files entry.

* Added a .swift-version file with the appropriate version of Swift to pod lib lint the pod.

* Fixed the homepage in the podspec.

* Fixed a bug when running under iOS 10 in which the initial presentation animation doesn't complete, therefore not invoking viewDidAppear, which causes the drawer not to show up at all. The work-around means that the initial presentation and dismissal aren't interactive but Product signed off on that decision. The drawers work fine under iOS 11.

* Style change.

* Killed the use of IUO references.

* Changed author email address in the podspec.

* Added support for Carthage.

* [ci skip] Removed a commented out section from the README. Also, an excuse to turn CI off since DrawerKit fails it for lack of configuration for testing.

* Added CircleCI config file. (#9)

* Added CircleCI config file.

* Changed circle.yml to "test" with the simulator, which disables testing

* Let's try this one more time, shall we?

* And again

* Fixed circle.yml

* And again

* Fixed circle.yml

* Fixed circle.yml.

* Added CircleCI badge to README.

* Simplified circle.yml build command.

* Added dependency management commands to circle.yml

* Fixed podspec source item. (#12)

* Fixed podspec source item.

* Missed the s in https.

* DrawerKit release 0.0.1 (#13) (#14)

* Added git ignore file

* Added project workspace

* Added tab bar template project

* Added DrawerKit empty framework

* Added basic view controllers and storyboards

* Fixed broken outlets

* Added implementation of DrawerKit. A few bits to complete still.

* Hooked up the view controllers to the custom presentation.

* Added clamping to the three possible resting positions of the drawer

* Added more configuration to the presenting VC

* Fixed a few glitches related to allowing partial expansion or not, and some refactoring.

* Removed the two timing configurations and now using only one for all animations.

* Added support for not having the gesture recognisers.

* Fixed a potential division by zero.

* Adding more configuration controls to presenting VC. WIP.

* Added debug mode.

* Added some TODOs

* Renamed a function to make it clear it's a debugging feature.

* Minor refactoring.

* Renamed some source files for better clarity of intention.

* Removed source headers.

* Changed the presented VC to make a larger drawer (easier to play with).

* Changed some parameters as per Sam's input.

* Improved behaviour of corner rounding at the two edges of the screen. Still not a perfect solution because the animator's completion block is, surprisingly, not always called. Apparently, that's a bug in UIViewPropertyAnimator.

* Made the logic for the drawer behaviour easier to read, because Sergey doesn't like `guard` with boolean statements. ;)

* Moved some code closer to where it's actually used.

* Minor formatting.

* Added a fix to the corner-radius animation issue whereby the corner radius would not be set to zero because the property animator's completion would not always be called. Now we force it to zero on presentationTransitionDidEnd() (for the appropriate drawer ending positions).

* Disabled automatic code signing.

* The heights of the bands surrounding the resting position of the drawer are now given in absolute rather than relative terms.

* Oopsie... committed a compiler error. Fixed now.

* Added a scrollview to the presented view controller in the demo app, for testing how scrolling interacts with the drag gesture recogniser in the presentation controller.

* Added an interaction controller, the first step in fixing the non-interactive presentation/dismissal itself.

* Renamed TransitionAnimator to AnimationController.

* Renamed a file to match the extension it's about.

* Duh, it was supposed to be AnimationController, not AnimatorController.

* Implemented interactive controller for the presentation and dismissal, and cleaned up the code for the animation controller (it doesn't need to know anything about the drawers).

* Added license file and CocoaPods podspec. Not passing lint just yet.

* Removed indirect access to configuration parameters.

* Removed currently unused source file TransitionGeometry.

* Fixed company name in the license file.

* Cleared the team entry in the demo app.

* Demo app: adding controls for all the configurable parameters. WIP.

* Added control for manipulating cubic Bezier control points, CubicBezierView.

* Added all the controls to the presenter VC.

* Fixed a TODO comment.

* Make sure that durationInSeconds is a positive value.

* Removed all references to coversStatusBar since that hasn't been implemented yet.

* Make sure that flickSpeedThreshold is a non-negative value. Also, if zero, disables support for flicking.

* Make sure that upperMarkGap and lowerMarkGap are non-negative values.

* Only add debugging mark lines if at least one of upperMarkGap and lowerMarkGap is a positive value.

* Make sure that maximumCornerRadius is a non-negative value.

* Only animate the corner radius if maximumCornerRadius is strictly positive.

* Make sure that numberOfTapsForOutsideDrawerDismissal is a non-negative value.

* Resolved an issue with animating rounding the presented view corners.

* Simplified the demo app to its bare essentials. No more configuration controls to the wazoo.

* Added based documentation to the library.

* Preliminary version of README. WIP.

* Removed unused assets.

* Added some pseudo-code to the README, to explain the presentation/dismissal logic.

* Code style change.

* Removed unnecessary [weak self] capture lists.

* Changed default value of durationInSeconds from 0.8 to 0.3 seconds.

* Fixed a botched global search/replace in DrawerConfiguration+Equatable.

* Renamed evil local gr variables to less evil names.

* Fixed guard statements as per comments.

* Removed a comment.

* Removed a protocol extension.

* Make sure that the height of the partially expanded drawer is non-negative.

* Added documentation to all exposed public entities.

* Style change as per comments.

* Fixed documentation.

* Updated README file.

* Tweaked the README file.

* Decreased the deployment target requirement, from 10.3 to 10.0.

* Removed hidden extension in the LICENSE file.

* Fixed source_files entry in the podspec. Removed the exclude_files entry.

* Added a .swift-version file with the appropriate version of Swift to pod lib lint the pod.

* Fixed the homepage in the podspec.

* Fixed a bug when running under iOS 10 in which the initial presentation animation doesn't complete, therefore not invoking viewDidAppear, which causes the drawer not to show up at all. The work-around means that the initial presentation and dismissal aren't interactive but Product signed off on that decision. The drawers work fine under iOS 11.

* Style change.

* Killed the use of IUO references.

* Changed author email address in the podspec.

* Added support for Carthage.

* [ci skip] Removed a commented out section from the README. Also, an excuse to turn CI off since DrawerKit fails it for lack of configuration for testing.

* Added CircleCI config file. (#9)

* Added CircleCI config file.

* Changed circle.yml to "test" with the simulator, which disables testing

* Let's try this one more time, shall we?

* And again

* Fixed circle.yml

* And again

* Fixed circle.yml

* Fixed circle.yml.

* Added CircleCI badge to README.

* Simplified circle.yml build command.

* Added dependency management commands to circle.yml

* Fixed podspec source item. (#12)

* Fixed podspec source item.

* Missed the s in https.

* Add gif and fixes the circle CI badge. (#17)

* Adds a gif and fixes the circleci badge.

* Moved the gif down a bit.

* Removed extra space below the gif.

* Changes version from 0.0.1 to 0.1. (#18)

* Add missing link to Carthage (#15)

* Fix to README (#21)

* Changed version number from 0.0.1 to 0.1.1 in the dependency management sections of the README file.

* Fix README as per David's suggestion.

* Update podspec in preparation for release 0.1.2.

* Revert "Update podspec in preparation for release 0.1.2."

This reverts commit df1c07aa3ab36e1b82fc630ac847695edc928818.

* Add 4 UI tests to check the Drawer Kit demo app is working (#22)

- Open the drawer
- Close the drawer
- Slide to full screen
- Tap close on fully open drawer

* Run UI Tests as part of the CircleCI build (#25)

* Experiment in running the UI tests as part of the circleci build

* Fixed name in scheme

* Change simulator being used to match local environment

* Add scheme for demo with UI tests

* Between a branch build and the merge the version available for the simulator seems to have changed. This updates the yml file to reflect this (#26)

* New features (#27)

* Update README.md (#23)

* Fixed version number in Carthage section.

* Renamed some properties and functions, for better clarity of intention.

* More renaming along the same lines as the last commit.

* Added support for tapping on the drawer to fully present it

* More renaming.

* Turned on debug mode in the demo app.

* Make sure that quantities are always in their expected ranges.

* Introduced an enumeration for drawer states

* Removed extra blank line

* Replaced the DrawerPresenting protocol with a new protocol, DrawerCoordinating, and made it so that objects other than view controllers can also coordinate the presentation of drawers.

* Changed some configuration parameters in the demo app.

* Tweaked the demo.

* Added ChangeLog and updated ReadMe.

* More changes to ReadMe.

* Updated podspec.

* More changes to the ChangeLog and ReadMe files.

* Fixed guard indentation, as per comments.

* Fixed guard indentations, as per comments.

* New features and preparation for release 0.3.0 (#30)

* Update README.md (#23)

* Fixed version number in Carthage section.

* Renamed some properties and functions, for better clarity of intention.

* More renaming along the same lines as the last commit.

* Added support for tapping on the drawer to fully present it

* More renaming.

* Turned on debug mode in the demo app.

* Make sure that quantities are always in their expected ranges.

* Introduced an enumeration for drawer states

* Removed extra blank line

* Replaced the DrawerPresenting protocol with a new protocol, DrawerCoordinating, and made it so that objects other than view controllers can also coordinate the presentation of drawers.

* Changed some configuration parameters in the demo app.

* Large refactoring work in preparation for adding concurrent animations.

* WIP on concurrent animations

* Replaced the suffix Signature with Handler in DrawerAnimationActions.

* Added a number of TODO comments

* Minor change, for clarity.

* Changed some config params in the demo app.

* Turns out it's ok to simply return false in these two comparisons.

* Fixed code formatting.

* Fixed a subtle bug whereby UIKit animations that ended at positions differing by as much as 0.5 points were considered to have ended at different points when they should have ended at the same position.

* Fixed a bug whereby scaling animated in only one direction.

* Added example animations from the collapsed state to the fully expanded state, and back.

* Added support for automatically adding a handle view and automatically animating it.

* Added support for not covering a portion of the screen when fully expanding the drawer.

* Removed TODOs that have been handled already.

* Small refactoring.

* More refactoring.

* Added previous gif.

* Display the gifs at the same size.

* Removed an extraneous comment.

* Minor English corrections.

* Renamed some properties to avoid abbreviations. Not all abbreviations could be removed, however, because Swift doesn't allow functions and properties to have the same name.

* Merge master into dev (#32)

* Update README.md (#23)

* Release 0.2.0 (#28)

* Added git ignore file

* Added project workspace

* Added tab bar template project

* Added DrawerKit empty framework

* Added basic view controllers and storyboards

* Fixed broken outlets

* Added implementation of DrawerKit. A few bits to complete still.

* Hooked up the view controllers to the custom presentation.

* Added clamping to the three possible resting positions of the drawer

* Added more configuration to the presenting VC

* Fixed a few glitches related to allowing partial expansion or not, and some refactoring.

* Removed the two timing configurations and now using only one for all animations.

* Added support for not having the gesture recognisers.

* Fixed a potential division by zero.

* Adding more configuration controls to presenting VC. WIP.

* Added debug mode.

* Added some TODOs

* Renamed a function to make it clear it's a debugging feature.

* Minor refactoring.

* Renamed some source files for better clarity of intention.

* Removed source headers.

* Changed the presented VC to make a larger drawer (easier to play with).

* Changed some parameters as per Sam's input.

* Improved behaviour of corner rounding at the two edges of the screen. Still not a perfect solution because the animator's completion block is, surprisingly, not always called. Apparently, that's a bug in UIViewPropertyAnimator.

* Made the logic for the drawer behaviour easier to read, because Sergey doesn't like `guard` with boolean statements. ;)

* Moved some code closer to where it's actually used.

* Minor formatting.

* Added a fix to the corner-radius animation issue whereby the corner radius would not be set to zero because the property animator's completion would not always be called. Now we force it to zero on presentationTransitionDidEnd() (for the appropriate drawer ending positions).

* Disabled automatic code signing.

* The heights of the bands surrounding the resting position of the drawer are now given in absolute rather than relative terms.

* Oopsie... committed a compiler error. Fixed now.

* Added a scrollview to the presented view controller in the demo app, for testing how scrolling interacts with the drag gesture recogniser in the presentation controller.

* Added an interaction controller, the first step in fixing the non-interactive presentation/dismissal itself.

* Renamed TransitionAnimator to AnimationController.

* Renamed a file to match the extension it's about.

* Duh, it was supposed to be AnimationController, not AnimatorController.

* Implemented interactive controller for the presentation and dismissal, and cleaned up the code for the animation controller (it doesn't need to know anything about the drawers).

* Added license file and CocoaPods podspec. Not passing lint just yet.

* Removed indirect access to configuration parameters.

* Removed currently unused source file TransitionGeometry.

* Fixed company name in the license file.

* Cleared the team entry in the demo app.

* Demo app: adding controls for all the configurable parameters. WIP.

* Added control for manipulating cubic Bezier control points, CubicBezierView.

* Added all the controls to the presenter VC.

* Fixed a TODO comment.

* Make sure that durationInSeconds is a positive value.

* Removed all references to coversStatusBar since that hasn't been implemented yet.

* Make sure that flickSpeedThreshold is a non-negative value. Also, if zero, disables support for flicking.

* Make sure that upperMarkGap and lowerMarkGap are non-negative values.

* Only add debugging mark lines if at least one of upperMarkGap and lowerMarkGap is a positive value.

* Make sure that maximumCornerRadius is a non-negative value.

* Only animate the corner radius if maximumCornerRadius is strictly positive.

* Make sure that numberOfTapsForOutsideDrawerDismissal is a non-negative value.

* Resolved an issue with animating rounding the presented view corners.

* Simplified the demo app to its bare essentials. No more configuration controls to the wazoo.

* Added based documentation to the library.

* Preliminary version of README. WIP.

* Removed unused assets.

* Added some pseudo-code to the README, to explain the presentation/dismissal logic.

* Code style change.

* Removed unnecessary [weak self] capture lists.

* Changed default value of durationInSeconds from 0.8 to 0.3 seconds.

* Fixed a botched global search/replace in DrawerConfiguration+Equatable.

* Renamed evil local gr variables to less evil names.

* Fixed guard statements as per comments.

* Removed a comment.

* Removed a protocol extension.

* Make sure that the height of the partially expanded drawer is non-negative.

* Added documentation to all exposed public entities.

* Style change as per comments.

* Fixed documentation.

* Updated README file.

* Tweaked the README file.

* Decreased the deployment target requirement, from 10.3 to 10.0.

* Removed hidden extension in the LICENSE file.

* Fixed source_files entry in the podspec. Removed the exclude_files entry.

* Added a .swift-version file with the appropriate version of Swift to pod lib lint the pod.

* Fixed the homepage in the podspec.

* Fixed a bug when running under iOS 10 in which the initial presentation animation doesn't complete, therefore not invoking viewDidAppear, which causes the drawer not to show up at all. The work-around means that the initial presentation and dismissal aren't interactive but Product signed off on that decision. The drawers work fine under iOS 11.

* Style change.

* Killed the use of IUO references.

* Changed author email address in the podspec.

* Added support for Carthage.

* [ci skip] Removed a commented out section from the README. Also, an excuse to turn CI off since DrawerKit fails it for lack of configuration for testing.

* Added CircleCI config file. (#9)

* Added CircleCI config file.

* Changed circle.yml to "test" with the simulator, which disables testing

* Let's try this one more time, shall we?

* And again

* Fixed circle.yml

* And again

* Fixed circle.yml

* Fixed circle.yml.

* Added CircleCI badge to README.

* Simplified circle.yml build command.

* Added dependency management commands to circle.yml

* Fixed podspec source item. (#12)

* Fixed podspec source item.

* Missed the s in https.

* DrawerKit release 0.0.1 (#13) (#14)

* Added git ignore file

* Added project workspace

* Added tab bar template project

* Added DrawerKit empty framework

* Added basic view controllers and storyboards

* Fixed broken outlets

* Added implementation of DrawerKit. A few bits to complete still.

* Hooked up the view controllers to the custom presentation.

* Added clamping to the three possible resting positions of the drawer

* Added more configuration to the presenting VC

* Fixed a few glitches related to allowing partial expansion or not, and some refactoring.

* Removed the two timing configurations and now using only one for all animations.

* Added support for not having the gesture recognisers.

* Fixed a potential division by zero.

* Adding more configuration controls to presenting VC. WIP.

* Added debug mode.

* Added some TODOs

* Renamed a function to make it clear it's a debugging feature.

* Minor refactoring.

* Renamed some source files for better clarity of intention.

* Removed source headers.

* Changed the presented VC to make a larger drawer (easier to play with).

* Changed some parameters as per Sam's input.

* Improved behaviour of corner rounding at the two edges of the screen. Still not a perfect solution because the animator's completion block is, surprisingly, not always called. Apparently, that's a bug in UIViewPropertyAnimator.

* Made the logic for the drawer behaviour easier to read, because Sergey doesn't like `guard` with boolean statements. ;)

* Moved some code closer to where it's actually used.

* Minor formatting.

* Added a fix to the corner-radius animation issue whereby the corner radius would not be set to zero because the property animator's completion would not always be called. Now we force it to zero on presentationTransitionDidEnd() (for the appropriate drawer ending positions).

* Disabled automatic code signing.

* The heights of the bands surrounding the resting position of the drawer are now given in absolute rather than relative terms.

* Oopsie... committed a compiler error. Fixed now.

* Added a scrollview to the presented view controller in the demo app, for testing how scrolling interacts with the drag gesture recogniser in the presentation controller.

* Added an interaction controller, the first step in fixing the non-interactive presentation/dismissal itself.

* Renamed TransitionAnimator to AnimationController.

* Renamed a file to match the extension it's about.

* Duh, it was supposed to be AnimationController, not AnimatorController.

* Implemented interactive controller for the presentation and dismissal, and cleaned up the code for the animation controller (it doesn't need to know anything about the drawers).

* Added license file and CocoaPods podspec. Not passing lint just yet.

* Removed indirect access to configuration parameters.

* Removed currently unused source file TransitionGeometry.

* Fixed company name in the license file.

* Cleared the team entry in the demo app.

* Demo app: adding controls for all the configurable parameters. WIP.

* Added control for manipulating cubic Bezier control points, CubicBezierView.

* Added all the controls to the presenter VC.

* Fixed a TODO comment.

* Make sure that durationInSeconds is a positive value.

* Removed all references to coversStatusBar since that hasn't been implemented yet.

* Make sure that flickSpeedThreshold is a non-negative value. Also, if zero, disables support for flicking.

* Make sure that upperMarkGap and lowerMarkGap are non-negative values.

* Only add debugging mark lines if at least one of upperMarkGap and lowerMarkGap is a positive value.

* Make sure that maximumCornerRadius is a non-negative value.

* Only animate the corner radius if maximumCornerRadius is strictly positive.

* Make sure that numberOfTapsForOutsideDrawerDismissal is a non-negative value.

* Resolved an issue with animating rounding the presented view corners.

* Simplified the demo app to its bare essentials. No more configuration controls to the wazoo.

* Added based documentation to the library.

* Preliminary version of README. WIP.

* Removed unused assets.

* Added some pseudo-code to the README, to explain the presentation/dismissal logic.

* Code style change.

* Removed unnecessary [weak self] capture lists.

* Changed default value of durationInSeconds from 0.8 to 0.3 seconds.

* Fixed a botched global search/replace in DrawerConfiguration+Equatable.

* Renamed evil local gr variables to less evil names.

* Fixed guard statements as per comments.

* Removed a comment.

* Removed a protocol extension.

* Make sure that the height of the partially expanded drawer is non-negative.

* Added documentation to all exposed public entities.

* Style change as per comments.

* Fixed documentation.

* Updated README file.

* Tweaked the README file.

* Decreased the deployment target requirement, from 10.3 to 10.0.

* Removed hidden extension in the LICENSE file.

* Fixed source_files entry in the podspec. Removed the exclude_files entry.

* Added a .swift-version file with the appropriate version of Swift to pod lib lint the pod.

* Fixed the homepage in the podspec.

* Fixed a bug when running under iOS 10 in which the initial presentation animation doesn't complete, therefore not invoking viewDidAppear, which causes the drawer not to show up at all. The work-around means that the initial presentation and dismissal aren't interactive but Product signed off on that decision. The drawers work fine under iOS 11.

* Style change.

* Killed the use of IUO references.

* Changed author email address in the podspec.

* Added support for Carthage.

* [ci skip] Removed a commented out section from the README. Also, an excuse to turn CI off since DrawerKit fails it for lack of configuration for testing.

* Added CircleCI config file. (#9)

* Added CircleCI config file.

* Changed circle.yml to "test" with the simulator, which disables testing

* Let's try this one more time, shall we?

* And again

* Fixed circle.yml

* And again

* Fixed circle.yml

* Fixed circle.yml.

* Added CircleCI badge to README.

* Simplified circle.yml build command.

* Added dependency management commands to circle.yml

* Fixed podspec source item. (#12)

* Fixed podspec source item.

* Missed the s in https.

* Add gif and fixes the circle CI badge. (#17)

* Adds a gif and fixes the circleci badge.

* Moved the gif down a bit.

* Removed extra space below the gif.

* Changes version from 0.0.1 to 0.1. (#18)

* Add missing link to Carthage (#15)

* Fix to README (#21)

* Changed version number from 0.0.1 to 0.1.1 in the dependency management sections of the README file.

* Fix README as per David's suggestion.

* Update podspec in preparation for release 0.1.2.

* Revert "Update podspec in preparation for release 0.1.2."

This reverts commit df1c07aa3ab36e1b82fc630ac847695edc928818.

* Add 4 UI tests to check the Drawer Kit demo app is working (#22)

- Open the drawer
- Close the drawer
- Slide to full screen
- Tap close on fully open drawer

* Run UI Tests as part of the CircleCI build (#25)

* Experiment in running the UI tests as part of the circleci build

* Fixed name in scheme

* Change simulator being used to match local environment

* Add scheme for demo with UI tests

* Between a branch build and the merge the version available for the simulator seems to have changed. This updates the yml file to reflect this (#26)

* New features (#27)

* Update README.md (#23)

* Fixed version number in Carthage section.

* Renamed some properties and functions, for better clarity of intention.

* More renaming along the same lines as the last commit.

* Added support for tapping on the drawer to fully present it

* More renaming.

* Turned on debug mode in the demo app.

* Make sure that quantities are always in their expected ranges.

* Introduced an enumeration for drawer states

* Removed extra blank line

* Replaced the DrawerPresenting protocol with a new protocol, DrawerCoordinating, and made it so that objects other than view controllers can also coordinate the presentation of drawers.

* Changed some configuration parameters in the demo app.

* Tweaked the demo.

* Added ChangeLog and updated ReadMe.

* More changes to ReadMe.

* Updated podspec.

* More changes to the ChangeLog and ReadMe files.

* Fixed guard indentation, as per comments.

* Fixed guard indentations, as per comments.

* Removed files that were supposed to have been removed already.

* Removed files that were supposed to have been removed already.

* DrawerKit release 0.3.1 (#37)

* Added git ignore file

* Added project workspace

* Added tab bar template project

* Added DrawerKit empty framework

* Added basic view controllers and storyboards

* Fixed broken outlets

* Added implementation of DrawerKit. A few bits to complete still.

* Hooked up the view controllers to the custom presentation.

* Added clamping to the three possible resting positions of the drawer

* Added more configuration to the presenting VC

* Fixed a few glitches related to allowing partial expansion or not, and some refactoring.

* Removed the two timing configurations and now using only one for all animations.

* Added support for not having the gesture recognisers.

* Fixed a potential division by zero.

* Adding more configuration controls to presenting VC. WIP.

* Added debug mode.

* Added some TODOs

* Renamed a function to make it clear it's a debugging feature.

* Minor refactoring.

* Renamed some source files for better clarity of intention.

* Removed source headers.

* Changed the presented VC to make a larger drawer (easier to play with).

* Changed some parameters as per Sam's input.

* Improved behaviour of corner rounding at the two edges of the screen. Still not a perfect solution because the animator's completion block is, surprisingly, not always called. Apparently, that's a bug in UIViewPropertyAnimator.

* Made the logic for the drawer behaviour easier to read, because Sergey doesn't like `guard` with boolean statements. ;)

* Moved some code closer to where it's actually used.

* Minor formatting.

* Added a fix to the corner-radius animation issue whereby the corner radius would not be set to zero because the property animator's completion would not always be called. Now we force it to zero on presentationTransitionDidEnd() (for the appropriate drawer ending positions).

* Disabled automatic code signing.

* The heights of the bands surrounding the resting position of the drawer are now given in absolute rather than relative terms.

* Oopsie... committed a compiler error. Fixed now.

* Added a scrollview to the presented view controller in the demo app, for testing how scrolling interacts with the drag gesture recogniser in the presentation controller.

* Added an interaction controller, the first step in fixing the non-interactive presentation/dismissal itself.

* Renamed TransitionAnimator to AnimationController.

* Renamed a file to match the extension it's about.

* Duh, it was supposed to be AnimationController, not AnimatorController.

* Implemented interactive controller for the presentation and dismissal, and cleaned up the code for the animation controller (it doesn't need to know anything about the drawers).

* Added license file and CocoaPods podspec. Not passing lint just yet.

* Removed indirect access to configuration parameters.

* Removed currently unused source file TransitionGeometry.

* Fixed company name in the license file.

* Cleared the team entry in the demo app.

* Demo app: adding controls for all the configurable parameters. WIP.

* Added control for manipulating cubic Bezier control points, CubicBezierView.

* Added all the controls to the presenter VC.

* Fixed a TODO comment.

* Make sure that durationInSeconds is a positive value.

* Removed all references to coversStatusBar since that hasn't been implemented yet.

* Make sure that flickSpeedThreshold is a non-negative value. Also, if zero, disables support for flicking.

* Make sure that upperMarkGap and lowerMarkGap are non-negative values.

* Only add debugging mark lines if at least one of upperMarkGap and lowerMarkGap is a positive value.

* Make sure that maximumCornerRadius is a non-negative value.

* Only animate the corner radius if maximumCornerRadius is strictly positive.

* Make sure that numberOfTapsForOutsideDrawerDismissal is a non-negative value.

* Resolved an issue with animating rounding the presented view corners.

* Simplified the demo app to its bare essentials. No more configuration controls to the wazoo.

* Added based documentation to the library.

* Preliminary version of README. WIP.

* Removed unused assets.

* Added some pseudo-code to the README, to explain the presentation/dismissal logic.

* Code style change.

* Removed unnecessary [weak self] capture lists.

* Changed default value of durationInSeconds from 0.8 to 0.3 seconds.

* Fixed a botched global search/replace in DrawerConfiguration+Equatable.

* Renamed evil local gr variables to less evil names.

* Fixed guard statements as per comments.

* Removed a comment.

* Removed a protocol extension.

* Make sure that the height of the partially expanded drawer is non-negative.

* Added documentation to all exposed public entities.

* Style change as per comments.

* Fixed documentation.

* Updated README file.

* Tweaked the README file.

* Decreased the deployment target requirement, from 10.3 to 10.0.

* Removed hidden extension in the LICENSE file.

* Fixed source_files entry in the podspec. Removed the exclude_files entry.

* Added a .swift-version file with the appropriate version of Swift to pod lib lint the pod.

* Fixed the homepage in the podspec.

* Fixed a bug when running under iOS 10 in which the initial presentation animation doesn't complete, therefore not invoking viewDidAppear, which causes the drawer not to show up at all. The work-around means that the initial presentation and dismissal aren't interactive but Product signed off on that decision. The drawers work fine under iOS 11.

* Style change.

* Killed the use of IUO references.

* Changed author email address in the podspec.

* Added support for Carthage.

* [ci skip] Removed a commented out section from the README. Also, an excuse to turn CI off since DrawerKit fails it for lack of configuration for testing.

* Added CircleCI config file. (#9)

* Added CircleCI config file.

* Changed circle.yml to "test" with the simulator, which disables testing

* Let's try this one more time, shall we?

* And again

* Fixed circle.yml

* And again

* Fixed circle.yml

* Fixed circle.yml.

* Added CircleCI badge to README.

* Simplified circle.yml build command.

* Added dependency management commands to circle.yml

* Fixed podspec source item. (#12)

* Fixed podspec source item.

* Missed the s in https.

* DrawerKit release 0.0.1 (#13) (#14)

* Added git ignore file

* Added project workspace

* Added tab bar template project

* Added DrawerKit empty framework

* Added basic view controllers and storyboards

* Fixed broken outlets

* Added implementation of DrawerKit. A few bits to complete still.

* Hooked up the view controllers to the custom presentation.

* Added clamping to the three possible resting positions of the drawer

* Added more configuration to the presenting VC

* Fixed a few glitches related to allowing partial expansion or not, and some refactoring.

* Removed the two timing configurations and now using only one for all animations.

* Added support for not having the gesture recognisers.

* Fixed a potential division by zero.

* Adding more configuration controls to presenting VC. WIP.

* Added debug mode.

* Added some TODOs

* Renamed a function to make it clear it's a debugging feature.

* Minor refactoring.

* Renamed some source files for better clarity of intention.

* Removed source headers.

* Changed the presented VC to make a larger drawer (easier to play with).

* Changed some parameters as per Sam's input.

* Improved behaviour of corner rounding at the two edges of the screen. Still not a perfect solution because the animator's completion block is, surprisingly, not always called. Apparently, that's a bug in UIViewPropertyAnimator.

* Made the logic for the drawer behaviour easier to read, because Sergey doesn't like `guard` with boolean statements. ;)

* Moved some code closer to where it's actually used.

* Minor formatting.

* Added a fix to the corner-radius animation issue whereby the corner radius would not be set to zero because the property animator's completion would not always be called. Now we force it to zero on presentationTransitionDidEnd() (for the appropriate drawer ending positions).

* Disabled automatic code signing.

* The heights of the bands surrounding the resting position of the drawer are now given in absolute rather than relative terms.

* Oopsie... committed a compiler error. Fixed now.

* Added a scrollview to the presented view controller in the demo app, for testing how scrolling interacts with the drag gesture recogniser in the presentation controller.

* Added an interaction controller, the first step in fixing the non-interactive presentation/dismissal itself.

* Renamed TransitionAnimator to AnimationController.

* Renamed a file to match the extension it's about.

* Duh, it was supposed to be AnimationController, not AnimatorController.

* Implemented interactive controller for the presentation and dismissal, and cleaned up the code for the animation controller (it doesn't need to know anything about the drawers).

* Added license file and CocoaPods podspec. Not passing lint just yet.

* Removed indirect access to configuration parameters.

* Removed currently unused source file TransitionGeometry.

* Fixed company name in the license file.

* Cleared the team entry in the demo app.

* Demo app: adding controls for all the configurable parameters. WIP.

* Added control for manipulating cubic Bezier control points, CubicBezierView.

* Added all the controls to the presenter VC.

* Fixed a TODO comment.

* Make sure that durationInSeconds is a positive value.

* Removed all references to coversStatusBar since that hasn't been implemented yet.

* Make sure that flickSpeedThreshold is a non-negative value. Also, if zero, disables support for flicking.

* Make sure that upperMarkGap and lowerMarkGap are non-negative values.

* Only add debugging mark lines if at least one of upperMarkGap and lowerMarkGap is a positive value.

* Make sure that maximumCornerRadius is a non-negative value.

* Only animate the corner radius if maximumCornerRadius is strictly positive.

* Make sure that numberOfTapsForOutsideDrawerDismissal is a non-negative value.

* Resolved an issue with animating rounding the presented view corners.

* Simplified the demo app to its bare essentials. No more configuration controls to the wazoo.

* Added based documentation to the library.

* Preliminary version of README. WIP.

* Removed unused assets.

* Added some pseudo-code to the README, to explain the presentation/dismissal logic.

* Code style change.

* Removed unnecessary [weak self] capture lists.

* Changed default value of durationInSeconds from 0.8 to 0.3 seconds.

* Fixed a botched global search/replace in DrawerConfiguration+Equatable.

* Renamed evil local gr variables to less evil names.

* Fixed guard statements as per comments.

* Removed a comment.

* Removed a protocol extension.

* Make sure that the height of the partially expanded drawer is non-negative.

* Added documentation to all exposed public entities.

* Style change as per comments.

* Fixed documentation.

* Updated README file.

* Tweaked the README file.

* Decreased the deployment target requirement, from 10.3 to 10.0.

* Removed hidden extension in the LICENSE file.

* Fixed source_files entry in the podspec. Removed the exclude_files entry.

* Added a .swift-version file with the appropriate version of Swift to pod lib lint the pod.

* Fixed the homepage in the podspec.

* Fixed a bug when running under iOS 10 in which the initial presentation animation doesn't complete, therefore not invoking viewDidAppear, which causes the drawer not to show up at all. The work-around means that the initial presentation and dismissal aren't interactive but Product signed off on that decision. The drawers work fine under iOS 11.

* Style change.

* Killed the use of IUO references.

* Changed author email address in the podspec.

* Added support for Carthage.

* [ci skip] Removed a commented out section from the README. Also, an excuse to turn CI off since DrawerKit fails it for lack of configuration for testing.

* Added CircleCI config file. (#9)

* Added CircleCI config file.

* Changed circle.yml to "test" with the simulator, which disables testing

* Let's try this one more time, shall we?

* And again

* Fixed circle.yml

* And again

* Fixed circle.yml

* Fixed circle.yml.

* Added CircleCI badge to README.

* Simplified circle.yml build command.

* Added dependency management commands to circle.yml

* Fixed podspec source item. (#12)

* Fixed podspec source item.

* Missed the s in https.

* Add gif and fixes the circle CI badge. (#17)

* Adds a gif and fixes the circleci badge.

* Moved the gif down a bit.

* Removed extra space below the gif.

* Changes version from 0.0.1 to 0.1. (#18)

* Add missing link to Carthage (#15)

* Fix to README (#21)

* Changed version number from 0.0.1 to 0.1.1 in the dependency management sections of the README file.

* Fix README as per David's suggestion.

* Update podspec in preparation for release 0.1.2.

* Revert "Update podspec in preparation for release 0.1.2."

This reverts commit df1c07aa3ab36e1b82fc630ac847695edc928818.

* Add 4 UI tests to check the Drawer Kit demo app is working (#22)

- Open the drawer
- Close the drawer
- Slide to full screen
- Tap close on fully open drawer

* Run UI Tests as part of the CircleCI build (#25)

* Experiment in running the UI tests as part of the circleci build

* Fixed name in scheme

* Change simulator being used to match local environment

* Add scheme for demo with UI tests

* Between a branch build and the merge the version available for the simulator seems to have changed. This updates the yml file to reflect this (#26)

* New features (#27)

* Update README.md (#23)

* Fixed version number in Carthage section.

* Renamed some properties and functions, for better clarity of intention.

* More renaming along the same lines as the last commit.

* Added support for tapping on the drawer to fully present it

* More renaming.

* Turned on debug mode in the demo app.

* Make sure that quantities are always in their expected ranges.

* Introduced an enumeration for drawer states

* Removed extra blank line

* Replaced the DrawerPresenting protocol with a new protocol, DrawerCoordinating, and made it so that objects other than view controllers can also coordinate the presentation of drawers.

* Changed some configuration parameters in the demo app.

* Tweaked the demo.

* Added ChangeLog and updated ReadMe.

* More changes to ReadMe.

* Updated podspec.

* More changes to the ChangeLog and ReadMe files.

* Fixed guard indentation, as per comments.

* Fixed guard indentations, as per comments.

* New features and preparation for release 0.3.0 (#30)

* Update README.md (#23)

* Fixed version number in Carthage section.

* Renamed some properties and functions, for better clarity of intention.

* More renaming along the same lines as the last commit.

* Added support for tapping on the drawer to fully present it

* More renaming.

* Turned on debug mode in the demo app.

* Make sure that quantities are always in their expected ranges.

* Introduced an enumeration for drawer states

* Removed extra blank line

* Replaced the DrawerPresenting protocol with a new protocol, DrawerCoordinating, and made it so that objects other than view controllers can also coordinate the presentation of drawers.

* Changed some configuration parameters in the demo app.

* Large refactoring work in preparation for adding concurrent animations.

* WIP on concurrent animations

* Replaced the suffix Signature with Handler in DrawerAnimationActions.

* Added a number of TODO comments

* Minor change, for clarity.

* Changed some config params in the demo app.

* Turns out it's ok to simply return false in these two comparisons.

* Fixed code formatting.

* Fixed a subtle bug whereby UIKit animations that ended at positions differing by as much as 0.5 points were considered to have ended at different points when they should have ended at the same position.

* Fixed a bug whereby scaling animated in only one direction.

* Added example animations from the collapsed state to the fully expanded state, and back.

* Added support for automatically adding a handle view and automatically animating it.

* Added support for not covering a portion of the screen when fully expanding the drawer.

* Removed TODOs that have been handled already.

* Small refactoring.

* More refactoring.

* Added previous gif.

* Display the gifs at the same size.

* Removed an extraneous comment.

* Minor English corrections.

* Renamed some properties to avoid abbreviations. Not all abbreviations could be removed, however, because Swift doesn't allow functions and properties to have the same name.

* Merge master into dev (#32)

* Update README.md (#23)

* Release 0.2.0 (#…
@wltrup wltrup self-assigned this Nov 15, 2017
@wltrup wltrup changed the title DrawerKit 0.3.4 (#42) DrawerKit 0.3.4 release Nov 15, 2017
Copy link

@RuiAAPeres RuiAAPeres left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@RuiAAPeres RuiAAPeres merged commit 1236a46 into master Nov 15, 2017
@RuiAAPeres RuiAAPeres deleted the wagner/0.3.4-cherry branch November 15, 2017 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants