Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dogo/AKSideMenu
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.1
Choose a base ref
...
head repository: dogo/AKSideMenu
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.2
Choose a head ref
  • 2 commits
  • 23 files changed
  • 2 contributors

Commits on Sep 15, 2016

  1. Migrate to Swift 3.0

    Integrate Simple example using cocoapods
    Integrate Storyboard example using cocoapods
    Update travis script
    Diogo Autilio authored and cs-diogo-autilio committed Sep 15, 2016
    Copy the full SHA
    2b1c698 View commit details
  2. Bump version

    cs-diogo-autilio committed Sep 15, 2016
    Copy the full SHA
    7654322 View commit details
Showing with 728 additions and 344 deletions.
  1. +3 −2 .travis.yml
  2. +1 −1 AKSideMenu.podspec
  3. +162 −151 AKSideMenu/AKSideMenu.swift
  4. +10 −9 AKSideMenu/UIViewController+AKSideMenu.swift
  5. +85 −15 AKSideMenuExamples/Simple/AKSideMenuSimple.xcodeproj/project.pbxproj
  6. +91 −0 ...deMenuExamples/Simple/AKSideMenuSimple.xcodeproj/xcshareddata/xcschemes/AKSideMenuSimple.xcscheme
  7. +16 −15 AKSideMenuExamples/Simple/AKSideMenuSimple/AppDelegate.swift
  8. +9 −9 AKSideMenuExamples/Simple/AKSideMenuSimple/Controllers/FirstViewController.swift
  9. +21 −21 AKSideMenuExamples/Simple/AKSideMenuSimple/Controllers/LeftMenuViewController.swift
  10. +21 −21 AKSideMenuExamples/Simple/AKSideMenuSimple/Controllers/RightMenuViewController.swift
  11. +14 −14 AKSideMenuExamples/Simple/AKSideMenuSimple/Controllers/SecondViewController.swift
  12. +8 −0 AKSideMenuExamples/Simple/Podfile
  13. +16 −0 AKSideMenuExamples/Simple/Podfile.lock
  14. +88 −18 AKSideMenuExamples/Storyboard/AKSideMenuStoryboard.xcodeproj/project.pbxproj
  15. +91 −0 ...es/Storyboard/AKSideMenuStoryboard.xcodeproj/xcshareddata/xcschemes/AKSideMenuStoryboard.xcscheme
  16. +6 −7 AKSideMenuExamples/Storyboard/AKSideMenuStoryboard/AppDelegate.swift
  17. +3 −3 AKSideMenuExamples/Storyboard/AKSideMenuStoryboard/Controllers/FirstViewController.swift
  18. +25 −25 AKSideMenuExamples/Storyboard/AKSideMenuStoryboard/Controllers/LeftMenuViewController.swift
  19. +18 −18 AKSideMenuExamples/Storyboard/AKSideMenuStoryboard/Controllers/RightMenuViewController.swift
  20. +5 −5 AKSideMenuExamples/Storyboard/AKSideMenuStoryboard/Controllers/SecondViewController.swift
  21. +11 −10 AKSideMenuExamples/Storyboard/AKSideMenuStoryboard/RootViewController.swift
  22. +8 −0 AKSideMenuExamples/Storyboard/Podfile
  23. +16 −0 AKSideMenuExamples/Storyboard/Podfile.lock
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# reference: http://www.objc.io/issue-6/travis-ci.html

language: objective-c
osx_image: xcode7.3
osx_image: xcode8
podfile: AKSideMenuExamples/Simple/Podfile

script:
- xcodebuild -project AKSideMenuExamples/Simple/AKSideMenuSimple.xcodeproj -target AKSideMenuSimple -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xcodebuild -workspace AKSideMenuExamples/Simple/AKSideMenuSimple.xcworkspace -scheme AKSideMenuSimple -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
2 changes: 1 addition & 1 deletion AKSideMenu.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "AKSideMenu"
spec.version = "1.1.1"
spec.version = "1.2"
spec.summary = "Beautiful iOS side menu library with parallax effect. Written in Swift"
spec.homepage = "https://github.com/dogo/AKSideMenu"

Loading