From 5d51f5d56da94ead67198484b213feb2d8d0cc5c Mon Sep 17 00:00:00 2001 From: Alex Gray Date: Fri, 5 Sep 2014 04:49:35 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index ef65765..a3edd87 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,7 @@ If required, additional parameters can be included in the handshake by adding an ``` objective-c [socketIO connectToHost:@"localhost" onPort:3000 - withParams:[NSDictionary dictionaryWithObjectsAndKeys:@"1234", @"auth_token", nil] -]; + withParams:@{@"auth_token":@"1234"}]; ``` A namespace can also be defined in the connection details: From 0a6bdcfc9eb478ffb16eeec54d164896f448b407 Mon Sep 17 00:00:00 2001 From: Philipp Kyeck Date: Tue, 23 Sep 2014 07:05:55 +0200 Subject: [PATCH 2/3] add links to forks w/ v1.0 support --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index a3edd87..a7ee8e9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,13 @@ **The current version of this library does not yet support socket.io v1.0. So if you want to use socket.io-objc, please fall back to v0.9.x.** +There are other people working on an implemantation for Socket.io v1.x.x, you can take a look here: + + * [github.com/francoisp/socket.IO-objc](https://github.com/francoisp/socket.IO-objc) + * [github.com/MegaBits/SIOSocket](https://github.com/MegaBits/SIOSocket) + +I don't think they are there 100%, but further along than I am ... + --- # Socket.IO / Objective C Library From dab9326004d337246202d1b17e493122cb9ac46c Mon Sep 17 00:00:00 2001 From: Philipp Kyeck Date: Mon, 9 Mar 2015 22:01:43 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a7ee8e9..b3a4a5f 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,8 @@ -**The current version of this library does not yet support socket.io v1.0. +**The current version of this library does not support socket.io v1.0. So if you want to use socket.io-objc, please fall back to v0.9.x.** -There are other people working on an implemantation for Socket.io v1.x.x, you can take a look here: - - * [github.com/francoisp/socket.IO-objc](https://github.com/francoisp/socket.IO-objc) - * [github.com/MegaBits/SIOSocket](https://github.com/MegaBits/SIOSocket) - -I don't think they are there 100%, but further along than I am ... +Today (15/03/09) the Socket.io guys [announced their own iOS library](http://socket.io/blog/socket-io-on-ios/) - grab it while it's still hot: +[github.com/socketio/socket.io-client-swift](https://github.com/socketio/socket.io-client-swift) ---