Skip to content

Commit 7f31ee2

Browse files
committed
🔖 release v1.9.6
1 parent 1fe54ce commit 7f31ee2

5 files changed

Lines changed: 49 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
1-
## v1.9.5 (2025-10-13)
1+
## v1.9.6 (2025-10-30)
2+
3+
### ✨ 新特性
4+
5+
- 新增配置项:是否过滤低相似度搜索结果 #283
6+
- 适配 ARM64 发行版的自动更新
7+
- WebUI 显示版本号
8+
- TUI 增加赞助选项
29

310
### 🐛 修复
411

5-
- 修复聚合搜索结果异常
12+
- 修复 Linux 版无法启用 Web 模式 #281
613

714
### ♻️ 重构
815

9-
- 移除 ConfigWatcher,避免产生不可预料的错误
10-
- 重构 AppConfigLoader
16+
- 解决某些阅读器无法识别 txt 中的章节名 #282
17+
- 重构 ChapterFilter、ChapterConverter
18+
- 配置项 threads 重命名为 concurrency
19+
20+
### 🛠️ 其他
21+
22+
- 优化构建脚本,从 Adoptium 下载 JRE
23+
- 纠正 readme.txt 错别字 #278
24+
- 升级依赖

CHANGELOG_ALL.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## v1.9.6 (2025-10-30)
2+
3+
### ✨ 新特性
4+
5+
- 新增配置项:是否过滤低相似度搜索结果 #283
6+
- 适配 ARM64 发行版的自动更新
7+
- WebUI 显示版本号
8+
- TUI 增加赞助选项
9+
10+
### 🐛 修复
11+
12+
- 修复 Linux 版无法启用 Web 模式 #281
13+
14+
### ♻️ 重构
15+
16+
- 解决某些阅读器无法识别 txt 中的章节名 #282
17+
- 重构 ChapterFilter、ChapterConverter
18+
- 配置项 threads 重命名为 concurrency
19+
20+
### 🛠️ 其他
21+
22+
- 优化构建脚本,从 Adoptium 下载 JRE
23+
- 纠正 readme.txt 错别字 #278
24+
- 升级依赖
25+
26+
---
27+
128
## v1.9.5 (2025-10-13)
229

330
### 🐛 修复

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.pcdd</groupId>
88
<artifactId>so-novel</artifactId>
9-
<version>1.9.5</version>
9+
<version>1.9.6</version>
1010
<packaging>jar</packaging>
1111

1212
<name>so-novel</name>

src/main/java/com/pcdd/sonovel/core/Source.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public Source(Rule rule, AppConfig config) {
3131
// 规则爬取配置覆盖默认配置
3232
Rule.Crawl crawl = rule.getCrawl();
3333
if (crawl != null) {
34-
if (crawl.getThreads() != null) {
35-
this.config.setConcurrency(crawl.getThreads());
34+
if (crawl.getConcurrency() != null) {
35+
this.config.setConcurrency(crawl.getConcurrency());
3636
}
3737
if (crawl.getMinInterval() != null) {
3838
this.config.setMinInterval(crawl.getMinInterval());

src/main/java/com/pcdd/sonovel/model/Rule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public static class Chapter {
9898

9999
@Data
100100
public static class Crawl {
101-
private Integer threads;
101+
private Integer concurrency;
102102
private Integer minInterval;
103103
private Integer maxInterval;
104104
private Integer maxAttempts;

0 commit comments

Comments
 (0)