From 826e6b12cb29e0fb48c9f31c55f2acf8738adbae Mon Sep 17 00:00:00 2001 From: gudqs7 Date: Fri, 8 Jul 2022 10:36:22 +0800 Subject: [PATCH] feat(version): v2.3.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1.perf: Search Api 时凸显接口注释(往前移) 2:perf: 优化配置文件读取, 缓存配置文件对象, 不存在时才更新, 避免多次搜索 3:perf: 使用 ReadAction 优化部分进度条卡顿问题 4:perf: 配置文件获取优化, 不通过 Map 获取, 而是通过统一的接口, 方便以后改造及扩展 & 收拢所有配置项到 PluginSettingEnum 5:fix: 修复在方法上使用 Generate Convert 时, 内部类作为返回值时, 实例化对象语句缺失前缀导致的语法错误 --- build.gradle | 2 +- parts/changeNotes.html | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 5f9a1f4..895855a 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } group 'cn.gudqs7.idea.plugins' -version '2.3.4' +version '2.3.5' repositories { mavenCentral() diff --git a/parts/changeNotes.html b/parts/changeNotes.html index 8bd8582..424adf6 100644 --- a/parts/changeNotes.html +++ b/parts/changeNotes.html @@ -1,6 +1,19 @@
+Release v2.3.5
+    1.perf: Search Api 时凸显接口注释(往前移)
+    2:perf: 优化配置文件读取, 缓存配置文件对象, 不存在时才更新, 避免多次搜索
+    3:perf: 使用 ReadAction 优化部分进度条卡顿问题
+    4:perf: 配置文件获取优化, 不通过 Map 获取, 而是通过统一的接口, 方便以后改造及扩展 & 收拢所有配置项到 PluginSettingEnum
+    5:fix:  修复在方法上使用 Generate Convert 时, 内部类作为返回值时, 实例化对象语句缺失前缀导致的语法错误
+
+    English:
+    1.perf: Highlight interface annotations when Searching Api (move forward)
+    2:perf: Optimize configuration file reading, cache configuration file objects, update only when they do not exist, avoid multiple searches
+    3:perf: Use ReadAction to optimize some progress bar stuck problems
+    4:perf: The configuration file is optimized, not obtained through Map, but through a unified interface, which is convenient for future transformation and expansion & collects all configuration items to PluginSettingEnum
+    5:fix: fix syntax error caused by missing prefix of instantiated object statement when using Generate Convert on method with inner class as return value
 Release v2.3.4
     1:fix issue #55 #54 (修复后缀 .allbuilder 处理不当导致的 NPE 异常)