From 861b564f3adbf2e35530b042fe53b4aeae9b9bd3 Mon Sep 17 00:00:00 2001 From: li-guohao Date: Mon, 10 Jun 2024 18:02:28 +0800 Subject: [PATCH] optimize: input hint --- CHANGELOG.MD | 10 ++++++++++ console/src/views/AListControl.vue | 2 +- gradle.properties | 2 +- src/main/resources/plugin.yaml | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 9e2978b..92e3d9d 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -2,6 +2,16 @@ 更新日志文档,版本顺序从新到旧,最新版本在最前(上)面。 +# 0.12.3 + +## 优化 + +- 优化页面输入眶的提示 + +## 修复 + +- 修复插件元数据的版本不正确的问题 + # 0.12.2 ## 优化 diff --git a/console/src/views/AListControl.vue b/console/src/views/AListControl.vue index bb2be80..ad9014a 100644 --- a/console/src/views/AListControl.vue +++ b/console/src/views/AListControl.vue @@ -55,7 +55,7 @@ const onInputChange = (event:any) => {

AList 插件操作


- +
diff --git a/gradle.properties b/gradle.properties index 5a77641..0951114 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ group=run.ikaros.plugin.alist description=A ikaros plugin for alist. -version=0.12.2 \ No newline at end of file +version=0.12.3 \ No newline at end of file diff --git a/src/main/resources/plugin.yaml b/src/main/resources/plugin.yaml index fd38d40..48c2056 100644 --- a/src/main/resources/plugin.yaml +++ b/src/main/resources/plugin.yaml @@ -4,7 +4,7 @@ name: PluginAList # plugin entry class that extends BasePlugin clazz: run.ikaros.plugin.alist.AListPlugin # plugin 'version' is a valid semantic version string (see semver.org). -version: 0.12.1 +version: 0.12.3 requires: ">=0.12.1" author: name: Ikaros OSS Team