Releases: adamhartford/SwiftR
Releases · adamhartford/SwiftR
Unicode Support
Support for sending/receiving unicode characters.
Handle server interruptions
- Reconnects when disconnected.
- Fixed bug where no connection is made when app starts without SignalR already running.
Support for Custom Headers
This release adds support for custom headers.
SwiftR.connect("http://localhost:8080") { connection in
connection.setValue("Value1" forHTTPHeader:"X-MyHeader1")
connection.setValue("Value2" forHTTPHeader:"X-MyHeader2")
...
}
Goodbye WKWebView. Hello UIWebView/WebView.
This is still a work in progress. Versions >= v0.3.0 have issues connecting to SignalR when running on a device. I've been thinking I need to move to UIWebView to use NSURLProtocol and support headers/cookies. This is the first release with UIWebView/WebView.
Query String Support
Added support for the JavaScript client query string. This can be used to send data to SignalR in lieu of cookies or custom headers.
Persistent Connections
v0.2.0 Bump to v0.2.0.
Initial release
v0.1.0 Share schemes