File tree Expand file tree Collapse file tree
java/run/ikaros/plugin/alist Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33更新日志文档,版本顺序从新到旧,最新版本在最前(上)面。
44
5+ # 0.12.5
6+
7+ ## 优化
8+
9+ - 添加开始和结束INFO日志
10+
511# 0.12.4
612
713## 修复
Original file line number Diff line number Diff line change 11group =run.ikaros.plugin.alist
22description =A ikaros plugin for alist.
3- version =0.12.4
3+ version =0.12.5
Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ Mono<ServerResponse> doImportFilesFromAList(ServerRequest request) {
6969 .doOnSuccess (strings -> log .debug ("strings size: {}" , strings .size ()))
7070 .filter (Objects ::nonNull )
7171 .filter (strings -> !strings .isEmpty ())
72+ .doOnSuccess (strings -> log .info ("Start import alist files..." ))
7273 .flatMap (aListClient ::doImportFilesFromAListPath )
74+ .doOnSuccess (strings -> log .info ("End import alist files." ))
7375 .then (ServerResponse .ok ().build ())
7476 .switchIfEmpty (ServerResponse .notFound ().build ());
7577 }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: PluginAList
44# plugin entry class that extends BasePlugin
55clazz : run.ikaros.plugin.alist.AListPlugin
66# plugin 'version' is a valid semantic version string (see semver.org).
7- version : 0.12.4
7+ version : 0.12.5
88requires : " >=0.12.1"
99author :
1010 name : Ikaros OSS Team
You can’t perform that action at this time.
0 commit comments