David Robles
David Robles
* Add Github actions for continuous-integration. Actions will take into affect immediately as shown on my fork: https://github.com/master-nevi/Reachability/actions * Used symbolic links to make the directory structure more SwiftPM friendly....
* Add Github actions for continuous-integration. Actions will take into affect immediately as shown on my fork: https://github.com/master-nevi/IQDropDownTextField/actions * Updates .gitignore to ignore some SwiftPM artifacts * Bump version to...
Using pure Swift classes in Objective-C is getting harder and harder every version. The following now generates the compiler error: "Only classes that inherit from NSObject can be declared @objc"...
Dev Forum Discussions: - https://devforums.apple.com/message/1062810#1062810 - https://devforums.apple.com/message/1113604#1113604 Workaround: Initialize all non-optional properties before returning nil from a failable initializer :( **Base class case** ``` swift // from if let uuid...
Currently it defaults to "en0".
Without fixing this issue, I can't publish a new version as "pod trunk push" will perform a lint which involves compiling the code in release mode which will fail. Developer...
Swift 1.2 Release notes: "Previously, immutable (let) properties were completely mutable within the body of initializers. Now, they are only allowed to be assigned to once to provide their value"....
This is a feature request to assign more accessory types aka [Shelly-Switch-Configurations](https://github.com/alexryd/homebridge-shelly#shelly-switch-configurations). For example `motionSensor` was available in [alexryd/homebridge-shelly](https://github.com/alexryd/homebridge-shelly/blob/master/config.schema.json#L86). It looks as though type-switch is the only HomeKit type available.
Allow the option to receive multicast SSDP notifications (not just send) by not supplying a network interface to bind the socket to. Implement [SSDPServiceBrowser _notifyDelegateWithRemovedService] for reporting removed devices.