Skip to content

Mojave and Xcode 10 Support

Pre-release
Pre-release

Choose a tag to compare

@seanhenry seanhenry released this 12 Oct 14:56
· 67 commits to master since this release
  • Built against the latest macOS SDK.
  • Supports Swift 4.2 syntax
  • Fixes issue where app cannot be opened when Xcode app has different name #15
  • Supports inferred properties with String, Int, Double, Bool literal types. var a = "abc"
  • Supports inferred properties with Array/Dictionary literals with resolvable types or supported literals. var a = [0, 1, 2]
  • Supports inferred properties with resolvable initializers. var a = A()
  • Supports inferred properties with as or is expression. var a = b as String or var a = b is Bool
  • Supports inferred properties with tuple types with resolvable items or supported literals. var a = (0, true)
  • Logs SourceKit errors

Important
Mojave now requires apps to request permission when automating other apps. This app automates Xcode to find the open project directory. Starting with this release you must select OK for the '"Swift Mock Generator for Xcode" wants access to control "Xcode"' alert when you open the app. Check System Preferences -> Security & Privacy -> Privacy -> Automation and make sure Swift Mock Generator is allowed to control Xcode.