You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,16 @@
1
1
# Change Log
2
-
All notable changes to the library will be documented in this file.
2
+
All notable changes of the library will be documented in this file.
3
3
4
-
## [Unreleased]
4
+
## 2.1 - [2017-10-23]
5
+
### Added
6
+
- Swift 4 support
7
+
- Code refactoring
8
+
- Check if menu is opened before a transition
9
+
10
+
### Fixed
11
+
- Small UI fix of Sample, associated with iOS 11
12
+
13
+
## 2.0 - [2017-06-07]
5
14
### Added
6
15
- UITabBarController and UINavigationController menu items support
7
16
- Rotation support
@@ -18,7 +27,7 @@ All notable changes to the library will be documented in this file.
18
27
19
28
**Migration notes**
20
29
21
-
- To mark UIViewController as item of SideMenu you should adopt `SideMenuItemContent` protocol instead of inheritance.
30
+
- To mark UIViewController as item of SideMenu you should adopt `SideMenuItemContent` protocol instead of inheritance from `MenuItemContentViewController`.
22
31
To show menu you should call `showSideMenu()` method from this protocol.
23
32
```swift
24
33
importInteractiveSideMenu
@@ -30,6 +39,8 @@ class KittyViewController: UIViewController, SideMenuItemContent {
30
39
}
31
40
}
32
41
```
42
+
Please, keep in mind, that now you are manipulating with `UIViewControllers` instead of `MenuItemContentViewControllers` in your `HostViewController` class.
43
+
33
44
- To customize animation you should now update ```transitionOptions``` property in ```MenuContainerViewColtroller``` class.
0 commit comments