Skip to content

Commit

Permalink
Merge pull request #62 from tvd12/master
Browse files Browse the repository at this point in the history
release version 1.2.9
  • Loading branch information
tvd12 authored Apr 3, 2017
2 parents 84d0005 + 413f438 commit 601bab3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ We must spend a lot of time to declare, init variables. Some time we also have t
<dependency>
<groupId>com.tvd12</groupId>
<artifactId>ezyfox-core</artifactId>
<version>1.2.8</version>
<version>1.2.9</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.tvd12</groupId>
<artifactId>ezyfox-core</artifactId>
<version>1.2.8-SNAPSHOT</version>
<version>1.2.9-SNAPSHOT</version>
<packaging>jar</packaging>

<name>ezyfox-core</name>
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/com/tvd12/ezyfox/core/constants/APIKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public interface APIKey {
static final String ERROR = "___err___";
static final String MESSAGE = "msg";
static final String CODE = "code";
static final String USER_JOOMS_JOINED = "___usr_j_j___";

static final String USER_JOINED_ROOMS = "___usr_j_rs___";

}
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ public interface ServerEvent {
static final String USER_RECONNECTION_SUCCESS = "USER_RECONNECTION_SUCCESS";
static final String USER_RECONNECTION_TRY = "USER_RECONNECTION_TRY";
static final String USER_VARIABLES_UPDATE = "USER_VARIABLES_UPDATE";

static final String ROOM_EXTENSION_DESTROY = "ROOM_EXTENSION_DESTROY";
static final String ZONE_EXTENSION_DESTROY = "ZONE_EXTENSION_DESTROY";

static final String ROOM_USER_RECONNECT = "ROOM_USER_RECONNECT";

static final String ROOM_USER_RECONNECT = "ROOM_USER_RECONNECT";
static final String ROOM_USER_DISCONNECT = "ROOM_USER_DISCONNECT";
}

0 comments on commit 601bab3

Please sign in to comment.