Skip to content

Commit

Permalink
build: release v0.4.04
Browse files Browse the repository at this point in the history
  • Loading branch information
yanglbme committed Jul 4, 2024
1 parent b5d1302 commit 44fc285
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If you're using Maven, just add the following dependency in `pom.xml`.
<dependency>
<groupId>io.github.doocs</groupId>
<artifactId>im-server-sdk-java</artifactId>
<version>0.4.03</version>
<version>0.4.04</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>io.github.doocs</groupId>
<artifactId>im-server-sdk-java</artifactId>
<version>0.4.03</version>
<version>0.4.04</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 介绍

本文档基于腾讯云 IM Server SDK Java <Badge type="tip" text="v0.4.03" vertical="top" /> 编写。
本文档基于腾讯云 IM Server SDK Java <Badge type="tip" text="v0.4.04" vertical="top" /> 编写。

## 前提条件

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<dependency>
<groupId>io.github.doocs</groupId>
<artifactId>im-server-sdk-java</artifactId>
<version>0.4.03</version>
<version>0.4.04</version>
</dependency>
```

### Gradle

```gradle
implementation group: 'io.github.doocs', name: 'im-server-sdk-java', version: '0.4.03'
implementation group: 'io.github.doocs', name: 'im-server-sdk-java', version: '0.4.04'
```

### 下载 JAR
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qcloud-im-server-sdk-java",
"version": "0.4.03",
"version": "0.4.04",
"description": "腾讯云 IM 服务端 SDK API 文档 Java 版",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.doocs</groupId>
<artifactId>im-server-sdk-java</artifactId>
<version>0.4.03</version>
<version>0.4.04</version>
<packaging>jar</packaging>

<name>qcloud-im-server-sdk-java</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import java.io.Serializable;
import java.util.List;
import java.util.Map;

/**
* 创建群组之前回调
Expand Down Expand Up @@ -49,6 +50,19 @@ public class BeforeCreateGroupCallback implements Serializable {
@JsonProperty("CreateGroupNum")
private Integer createGroupNum;

/**
* 该用户已创建的不同类的群组个数
*/
@JsonProperty("CreatedGroupNum")
private Map<String, Integer> createdGroupNum;

/**
* 选项
* DisableInvite
*/
@JsonProperty("InviteOption")
private String inviteOption;

/**
* 请求创建的群组的初始化成员列表
*/
Expand Down Expand Up @@ -109,6 +123,22 @@ public void setCreateGroupNum(Integer createGroupNum) {
this.createGroupNum = createGroupNum;
}

public Map<String, Integer> getCreatedGroupNum() {
return createdGroupNum;
}

public void setCreatedGroupNum(Map<String, Integer> createdGroupNum) {
this.createdGroupNum = createdGroupNum;
}

public String getInviteOption() {
return inviteOption;
}

public void setInviteOption(String inviteOption) {
this.inviteOption = inviteOption;
}

public List<MemberAccount> getMemberList() {
return memberList;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.4.03
version=0.4.04

1 comment on commit 44fc285

@yanglbme
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

close #182

Please sign in to comment.