File tree Expand file tree Collapse file tree 11 files changed +20
-37
lines changed
src/main/java/com/acgist/snail/gui/javafx/window/statistics
java/com/acgist/snail/net/torrent
test/java/com/acgist/snail Expand file tree Collapse file tree 11 files changed +20
-37
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ jvm.args.survivor.ratio=-XX:SurvivorRatio=2
1414# JVM文件路径
1515jvm.path =./java/bin/server/jvm.dll
1616# JAR文件路径
17- jar.path =-Djava.class.path =./snail.javafx-1.6.0 .jar
17+ jar.path =-Djava.class.path =./snail.javafx-1.7.11 .jar
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ chcp 65001>nul
66rem 软件名称
77set project = snail
88rem 软件版本
9- set version = 1.6.0
9+ set version = 1.7.11
1010
1111rem 编译路径
1212set builder = .\builder\
Original file line number Diff line number Diff line change 44
55* 注释优化:详细描述、单位描述
66* 日志优化:
7- * 异常优化
7+ * 异常优化:
88* 排版优化:优化顺序
9- * 添加测试:生成测试覆盖报告 (JaCoCo)
10- * 集合优化:删除、添加 、循环错误
9+ * 添加测试:测试覆盖报告 (JaCoCo)
10+ * 集合优化:添加、删除 、循环错误
1111
1212## 计划任务
1313
1919* 升级JDK17:类型转换、多行文本
2020
2121## 完成任务
22-
23- 下一个版本升级JDK17,这是2.0.0之前最后一个稳定版本。
24-
25- * 优化目录结构
26- * 优化日志工具
27- * 优化任务操作
28- * 删除H2数据库
29- * 实现BT指定位置下载
30- * MS-DOS FTP支持
31- * 统一系统管理类上下文
32- * 优化公网环境下软件使用
33- * 单文件流下载使用NIO优化
34- * BT任务异常结束校验修复
35- * 保存BT已下载Piece位图
36- * 支持修改已经完成的BT任务
37- * 删除extend和android模块
38- * 修复任务反复开始暂停时线程没有关闭错误
39- * 修复任务加载时下载中状态任务不能正常下载错误
40- * 使用HttpURLConnection替换JDK内置HTTP模块
Original file line number Diff line number Diff line change 2020
2121 <groupId >com.acgist</groupId >
2222 <artifactId >snail.parent</artifactId >
23- <version >1.6.0 </version >
23+ <version >1.7.11 </version >
2424 <packaging >pom</packaging >
2525
2626 <properties >
2727 <!-- 版本 -->
28- <acgist .version>1.6.0 </acgist .version>
28+ <acgist .version>1.7.11 </acgist .version>
2929 <!-- 作者 -->
3030 <vendor >acgist</vendor >
3131 <!-- 模块 -->
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >com.acgist</groupId >
99 <artifactId >snail.parent</artifactId >
10- <version >1.6.0 </version >
10+ <version >1.7.11 </version >
1111 </parent >
1212
1313 <modelVersion >4.0.0</modelVersion >
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ private void drawFill(int index) {
431431 * <p>鼠标移动</p>
432432 *
433433 * @param x x
434- * @param y y
434+ * @param y y
435435 */
436436 private void moved (double x , double y ) {
437437 final int wh = this .wh + BORDER_WH ;
@@ -489,7 +489,7 @@ private void clicked() {
489489 */
490490 private boolean mouseSelect (int index ) {
491491 return
492- index >= 0 &&
492+ index >= 0 &&
493493 index < this .length &&
494494 (this .mouseBitSet == null || this .mouseBitSet .get (index ));
495495 }
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ private void buildSelectStatistics() {
297297 this .buildSelectTrafficStatistics ();
298298 } else if (this .filter == Filter .PIECE ) {
299299 this .buildSelectPieceStatistics ();
300- } else {
300+ } else {
301301 this .buildSelectSystemStatistics ();
302302 }
303303 }
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >com.acgist</groupId >
99 <artifactId >snail.parent</artifactId >
10- <version >1.6.0 </version >
10+ <version >1.7.11 </version >
1111 </parent >
1212
1313 <modelVersion >4.0.0</modelVersion >
Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ public int health() {
549549 /**
550550 * <p>校验文件</p>
551551 *
552- * @throws IOException IO异常
552+ * @throws IOException IO异常
553553 */
554554 public boolean verify () throws IOException {
555555 int verifyFailCount = 0 ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ acgist.system.name=蜗牛
44# 软件名称(英文)
55acgist.system.name.en =Snail
66# 软件版本
7- acgist.system.version =1.6.0
7+ acgist.system.version =1.7.11
88# ================ FTP ================#
99# FTP匿名用户
1010acgist.system.ftp.user =anonymous
You can’t perform that action at this time.
0 commit comments