Skip to content

Commit

Permalink
fix: change FocessUtil to 1.1.20 to fix the TEXT media type problem
Browse files Browse the repository at this point in the history
modify: use Version.BUILD_VERSION instead of new a new one
  • Loading branch information
MidCoard committed Mar 27, 2024
1 parent 118c7bf commit 57b5119
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ Maven 依赖
<dependency>
<groupId>top.focess</groupId>
<artifactId>focess-qq</artifactId>
<version>4.1.5.4000</version>
<version>4.1.5.5000</version>
</dependency>
```

Gradle 依赖

```gradle
implementation 'top.focess:focess-qq:4.1.5.4000'
implementation 'top.focess:focess-qq:4.1.5.5000'
```

开发文档移步本项目[Wiki](https://github.com/MIdCoard/MiraiQQ/wiki)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<description>A simple QQ Bot framework</description>
<groupId>top.focess</groupId>
<artifactId>focess-qq</artifactId>
<version>4.1.5.4000</version>
<version>4.1.5.5000</version>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
Expand All @@ -33,7 +33,7 @@
<kotlin.stdlib.version>1.8.20</kotlin.stdlib.version>
<kotlin.native>native-mt</kotlin.native>
<command.version>1.3.2</command.version>
<util.version>1.1.19</util.version>
<util.version>1.1.20</util.version>
<scheduler.version>1.2.4</scheduler.version>
<sysout.version>1.0.2</sysout.version>
<socket.version>1.1.0</socket.version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/top/focess/qq/FocessQQ.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class FocessQQ {
properties.load(FocessQQ.class.getResourceAsStream("/default.properties"));
version = new Version(properties.getProperty("version"));
} catch (final Exception e) {
version = new Version("build");
version = Version.BUILD_VERSION;
}
VERSION = version;
}
Expand Down

0 comments on commit 57b5119

Please sign in to comment.