docs: add changelog for version 1.0.1
This commit is contained in:
@@ -1,4 +1,11 @@
|
|||||||
|
|
||||||
|
1.0.1 / 2020-12-10
|
||||||
|
==================
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* handle responses without content type ([#101](https://github.com/socketio/engine.io-client-java/issues/101)) ([6f065b7](https://github.com/socketio/engine.io-client-java/commit/6f065b7a62603730979d43cec71af0046ca4ab7c))
|
||||||
|
|
||||||
1.0.0 / 2017-07-14
|
1.0.0 / 2017-07-14
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|||||||
29
README.md
29
README.md
@@ -6,8 +6,26 @@ This is the Engine.IO Client Library for Java, which is simply ported from the [
|
|||||||
|
|
||||||
See also: [Socket.IO-client Java](https://github.com/socketio/socket.io-client-java)
|
See also: [Socket.IO-client Java](https://github.com/socketio/socket.io-client-java)
|
||||||
|
|
||||||
|
## Table of content
|
||||||
|
|
||||||
|
- [Compatibility](#compatibility)
|
||||||
|
- [Installation](#installation)
|
||||||
|
- [Maven](#maven)
|
||||||
|
- [Gradle](#gradle)
|
||||||
|
- [Usage](#usage)
|
||||||
|
- [Features](#features)
|
||||||
|
- [License](#license)
|
||||||
|
|
||||||
|
## Compatibility
|
||||||
|
|
||||||
|
| Client version | Engine.IO server | Socket.IO server |
|
||||||
|
| -------------- | ---------------- | ---------------- |
|
||||||
|
| 0.9.x | 1.x | 1.x |
|
||||||
|
| 1.x | 3.x | 2.x |
|
||||||
|
| - | 4.x | 3.x |
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
The latest artifact is available on Maven Central. To install manually, please refer [dependencies](https://socketio.github.io/engine.io-client-java/dependencies.html).
|
The latest artifact is available on Maven Central.
|
||||||
|
|
||||||
### Maven
|
### Maven
|
||||||
Add the following dependency to your `pom.xml`.
|
Add the following dependency to your `pom.xml`.
|
||||||
@@ -17,7 +35,7 @@ Add the following dependency to your `pom.xml`.
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.socket</groupId>
|
<groupId>io.socket</groupId>
|
||||||
<artifactId>engine.io-client</artifactId>
|
<artifactId>engine.io-client</artifactId>
|
||||||
<version>1.0.0</version>
|
<version>1.0.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
```
|
```
|
||||||
@@ -26,17 +44,12 @@ Add the following dependency to your `pom.xml`.
|
|||||||
Add it as a gradle dependency for Android Studio, in `build.gradle`:
|
Add it as a gradle dependency for Android Studio, in `build.gradle`:
|
||||||
|
|
||||||
```groovy
|
```groovy
|
||||||
compile ('io.socket:engine.io-client:1.0.0') {
|
compile ('io.socket:engine.io-client:1.0.1') {
|
||||||
// excluding org.json which is provided by Android
|
// excluding org.json which is provided by Android
|
||||||
exclude group: 'org.json', module: 'json'
|
exclude group: 'org.json', module: 'json'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Engine.IO Server 1.x suppport
|
|
||||||
|
|
||||||
The current version of engine.io-client-java doesn't support engine.io server 1.x.
|
|
||||||
Please use engine.io-client-java 0.9.x for that instead.
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
Engine.IO-client Java has the similar api with the JS client. You can use `Socket` to connect:
|
Engine.IO-client Java has the similar api with the JS client. You can use `Socket` to connect:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user