-
Notifications
You must be signed in to change notification settings - Fork 751
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
Update for Swift 5.0 Support #430
Open
Nomad00
wants to merge
9
commits into
dekatotoro:master
Choose a base branch
from
Nomad00:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Remove unneeded entry of `Info.plist` from the `Copy Bundle Resources` build phase. - Apply Xcode suggested project settings updates. - Convert `SlideMenuControllerSwift` scheme to Swift 4.2. - Convert `SlideMenuControllerSwift-iOS` scheme to Swift 4.2. - Update `podspec` to increase version number to `4.2.0`. - Add `swift_version` to `podspec` (`4.2`). - Update `CHANGELOG.md` to indicate Swift 4.2 change.
Update for Swift 4.2 support
- Update `podspec` to set `version` to `5.0.0`. - Update `podspec` to set `swift_version` to `5.0`. - Update project targets to have `9.0` Deployment Target (this was already specified in `podspec`). - Update project with Xcode `10.2.1` recommended settings. - Refactor uses of `fabs(_:)` to `abs(_:)` to resolve warnings. - Convert `SlideMenuControllerSwift-iOS` target to Swift `5.0.0` via wizard (no changes required). - Add no-op `@unknown default:` handling for `handleLeftPanGesture(_:)` to resolve warnings. - Add no-op `@unknown default:` handling for `handleRightPanGesture(_:)`to resolve warnings. - Convert `SlideMenuControllerSwift` target to Swift `5.0.0` via wizard (no changes required). - Refactor usage of `.characters.count` to `.count` to resolve build error. - Refactor `substring(_:)` to use `.suffix` instead of removed `.substring` to build error.
Update for Swift 5.0.0 support
Update `CHANGELOG.md`
Is possible to accept this pull request ? |
Open
I made a fork with swift 5 support a while ago, seems they are not accepting any pull request. add this to your podfile |
Is this merged to master already? |
Swift Package Manager Support
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Update for Swift 5.0 Support
podspec
to setversion
to5.0.0
.podspec
to setswift_version
to5.0
.9.0
Deployment Target (this was already specified inpodspec
).10.2.1
recommended settings.fabs(_:)
toabs(_:)
to resolve warnings.SlideMenuControllerSwift-iOS
target to Swift 5.0.0 via wizard (no changes required).@unknown default:
handling forhandleLeftPanGesture(_:)
to resolve warnings.@unknown default:
handling forhandleRightPanGesture(_:)
to resolve warnings.SlideMenuControllerSwift
target to Swift5.0.0
via wizard (no changes required)..characters.count
to.count
to resolve build error.substring(_:)
to use.suffix
instead of removed.substring
to build error.CHANGELOG.md
to indicate Swift 5.0 change..swift-version
file.Includes: Update for Swift 4.2 support
Info.plist
from theCopy Bundle Resources
build phase.SlideMenuControllerSwift
scheme to Swift 4.2.SlideMenuControllerSwift-iOS
scheme to Swift 4.2.podspec
to increase version number to4.2.0
.swift_version
topodspec
(4.2
).CHANGELOG.md
to indicate Swift 4.2 change.