Skip to content

Releases: adamhartford/SwiftR

Unicode Support

03 Jul 01:25
Compare
Choose a tag to compare

Support for sending/receiving unicode characters.

Handle server interruptions

17 Jun 13:30
Compare
Choose a tag to compare
  • Reconnects when disconnected.
  • Fixed bug where no connection is made when app starts without SignalR already running.

Support for Custom Headers

08 Jun 20:20
Compare
Choose a tag to compare

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.

05 Jun 00:05
Compare
Choose a tag to compare

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

03 Jun 13:50
Compare
Choose a tag to compare

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

06 May 04:13
Compare
Choose a tag to compare
v0.2.0

Bump to v0.2.0.

Initial release

24 Apr 03:50
Compare
Choose a tag to compare
v0.1.0

Share schemes