Skip to content
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.

Commit

Permalink
update to 1.15.1
Browse files Browse the repository at this point in the history
fix @filter bug
  • Loading branch information
ForteScarlet committed Jun 24, 2020
1 parent e8a1754 commit 93f308d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<artifactId>simple-robot-core</artifactId>

<!-- 版本号 -->
<!-- 下次部署需要大于1.15.0 2020/6/23 记得修改CoreSystem的版本号 -->
<version>1.15.0</version>
<!-- 下次部署需要大于1.15.1 2020/6/25 记得修改CoreSystem的版本号 -->
<version>1.15.1</version>

<packaging>jar</packaging>
<name>simple-robot</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public static FilterParameterMatcherImpl compile(String string, Function<String,
}

if(builder.length() > 0){
point = nextPoint(builder, index, point, on);
point = nextPoint(builder, -1, point, on);
}

if(point == null){
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/forte/qqrobot/system/CoreSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author ForteScarlet
* @version 1.7.0
*/
@Version(version = "1.15.0",
@Version(version = "1.15.1",
versionFamily = "1.15")
public final class CoreSystem {

Expand Down
3 changes: 3 additions & 0 deletions update.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 版本更新记录

# 1.15.1
- 修复@Filter参数提取的时候如果不是结尾为`{{...}}`就会抛出异常的问题。

# 1.15.0
- 修改接口定义,为一些接口增加获取昵称和备注的方法(例如群消息等)
昵称和备注的获取通过三个接口`NicknameAble``RemarkAble``NickOrRemark`控制,可用于在自定义过滤器中进行各种判断。
Expand Down

0 comments on commit 93f308d

Please sign in to comment.