Skip to content

Commit

Permalink
Merge pull request #3 from wushuo894/test
Browse files Browse the repository at this point in the history
2.0.12
  • Loading branch information
wushuo894 authored Feb 10, 2025
2 parents 17f7e40 + efd14a8 commit c1bce22
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion UPDATE.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
处理多音字 `调教`
限制日志1024条
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.emby</groupId>
<artifactId>EmbyPinyin</artifactId>
<version>2.0.11</version>
<version>2.0.12</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand All @@ -17,22 +17,22 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.6</version>
<version>1.5.16</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<version>1.18.36</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.27</version>
<version>5.8.35</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>io.github.biezhi</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/emby/util/LogUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
@Slf4j
public class LogUtil {

public static final List<Log> LOGS = Collections.synchronizedList(new FixedSizeLinkedList<>(2048));
public static final List<Log> LOGS = Collections.synchronizedList(new FixedSizeLinkedList<>(1024));

public static void loadLogback() {
Config config = ConfigUtil.CONFIG;
Expand Down
8 changes: 4 additions & 4 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueuse/core": "^12.3.0",
"element-plus": "^2.9.2",
"shiki": "^1.26.1",
"@vueuse/core": "^12.5.0",
"element-plus": "^2.9.4",
"shiki": "^1.29.2",
"vue": "^3.5.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"vite": "^6.0.7"
"vite": "^6.1.0"
}
}

0 comments on commit c1bce22

Please sign in to comment.