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.
Hi again.
Since my last pull request, I've been successful in integrating the rest of the features from our Sparkle fork directly into our apps. No need to put them in the Sparkle code base. However, I noticed that the mainline Sparkle uses a submodule, ed25519, which has numerous warnings when compiled with Sparkle's warning flags. I submitted a pull request to that project a couple weeks ago to fix the warnings, but I haven't heard anything from the maintainer, so I disabled the warnings for those files only.
In the process, I also took care of warnings where Xcode asked to update to Swift 5 and base localization. There were no source changes required for the conversion to Swift 5, so I just updated the project file. However, this enabled more warnings. Apparently setting your project to use Swift 5 while using -Weverything will warn you about sending messages to
id, so I cast the values to more specific types to silence the warning.Since we're targeting 10.7 as the deploy target, I couldn't enable base localization. But I was able to edit the project file to add "Base" to the list of known regions. This disables the warning without affecting the build output.
Please let me know if you would like any changes to this. I can, for example, keep the Swift version unspecified and just change the
LastSwiftMigrationin the project.