From dfe314090400b32da309d147a3dc3685795f8358 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9E=97=E4=B8=87=E7=A8=8B?= <1498425439@qq.com>
Date: Mon, 7 Mar 2022 23:58:57 +0800
Subject: [PATCH] =?UTF-8?q?change=20Note=20|=20=E4=BC=98=E5=8C=96=E8=AF=B4?=
=?UTF-8?q?=E6=98=8E?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
README.md | 37 ++++++++++++----------
build.gradle | 44 +++++++++++++-------------
src/main/resources/META-INF/plugin.xml | 40 ++++++++++++-----------
3 files changed, 64 insertions(+), 57 deletions(-)
diff --git a/README.md b/README.md
index ca0055b..9d860a7 100644
--- a/README.md
+++ b/README.md
@@ -2,25 +2,30 @@
IDEA 智能注释插件
English Notes:
-- Show javadoc comments in the Project view Tree structure.
-- Show javadoc comments for calling methods at the end of the line.
-- One of the above features
- can be turned off in the settings -> Tools -> Show Comment Global.
-- The color of end-of-line comments
- can be modified in the settings -> Tools -> Show Comment Global.
-- End-of-line comment class prefix filter
- can be modified in settings -> Tools -> Show Comment Project.
-
+
+- Show javadoc comments at the Project view Tree structure.
+
- Show javadoc comments at the end-of-line.
+
- Show javadoc comments at "xx ClassNameOrSimpleName.json" end-of-line.
+
- One of the above features can be turned off in
+ settings -> Tools -> Show Comment Global
+ - Font color of end-of-line comments can be modified in
+ settings -> Tools -> Show Comment Global
+ - Class name prefix filter of end-of-line comment can be modified in
+ settings -> Tools -> Show Comment Project
+
Chinese Notes:
-- 在结构树显示 当前节点 的文档注释。
-- 在行末尾显示 调用方法 的文档注释。
-- 可以在设置中 关闭 上面其中一个功能。
-- 可以在设置中 修改 行末注释的颜色。
-- 可以在设置中 修改 行末注释类前缀过滤。
+
+- 在结构树显示 文档注释。
+
- 在行末尾显示 文档注释。
+
- 行末注释支持 "xx 类全名或简名.json"。
+
- 可以在设置中 关闭 上面其中一个功能。
+
- 可以在设置中 修改 行末注释 的字体颜色。
+
- 可以在设置中 修改 行末注释 的类名前缀过滤。
+
English Change Notes:
-- 1.8 Add line-end-comment for json
+
- 1.8 Add line-end-comment for "xx ClassNameOrSimpleName.json"
- 1.7 Add line-end-comment setting for prefix and count
- 1.6 Add line-end-comment independent switch for call, new, ref
- 1.5 Add line-end-comment find next loop when none
@@ -32,7 +37,7 @@ English Change Notes:
Chinese Change Notes:
-- 1.8 增加 从同后缀的类中读取 json 行末注释
+
- 1.8 增加 "xx 类全名或简名.json" 行末注释
- 1.7 增加 行末注释前缀和对象数设置
- 1.6 增加 行末调用,new,引用注释独立开关
- 1.5 增加 没有注释时循环查找下一个对象
diff --git a/build.gradle b/build.gradle
index 186165f..1b25494 100644
--- a/build.gradle
+++ b/build.gradle
@@ -37,29 +37,29 @@ patchPluginXml {
sinceBuild = '201.1'
untilBuild = ''
changeNotes = """
- English Change Notes:
-
- - 1.8 Add line-end-comment for json
-
- 1.7 Add line-end-comment setting for prefix and count
-
- 1.6 Add line-end-comment independent switch for call, new, ref
-
- 1.5 Add line-end-comment find next loop when none
-
- 1.4 Add line-end-comment find element right to left
-
- 1.3 Add project-view-tree-comment
-
- 1.2 Add line-end-comment settings fro class prefix filter
-
- 1.1 Add line-end-comment settings for text color
-
+English Change Notes:
+
+- 1.8 Add line-end-comment for "xx ClassNameOrSimpleName.json"
+
- 1.7 Add line-end-comment setting for prefix and count
+
- 1.6 Add line-end-comment independent switch for call, new, ref
+
- 1.5 Add line-end-comment find next loop when none
+
- 1.4 Add line-end-comment find element right to left
+
- 1.3 Add project-view-tree-comment
+
- 1.2 Add line-end-comment settings fro class prefix filter
+
- 1.1 Add line-end-comment settings for text color
+
- Chinese Change Notes:
-
- - 1.8 增加 从同后缀的类中读取 json 行末注释
-
- 1.7 增加 行末注释前缀和对象数设置
-
- 1.6 增加 行末调用,new,引用注释独立开关
-
- 1.5 增加 没有注释时循环查找下一个对象
-
- 1.4 增加 从右往左查找行末注释对象
-
- 1.3 增加 项目导航栏注释
-
- 1.2 增加 行末注释类前缀配置
-
- 1.1 增加 行末文本颜色配置
-
+Chinese Change Notes:
+
+- 1.8 增加 "xx 类全名或简名.json" 行末注释
+
- 1.7 增加 行末注释前缀和对象数设置
+
- 1.6 增加 行末调用,new,引用注释独立开关
+
- 1.5 增加 没有注释时循环查找下一个对象
+
- 1.4 增加 从右往左查找行末注释对象
+
- 1.3 增加 项目导航栏注释
+
- 1.2 增加 行末注释类前缀配置
+
- 1.1 增加 行末文本颜色配置
+
"""
}
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml
index a23772f..7dc044d 100644
--- a/src/main/resources/META-INF/plugin.xml
+++ b/src/main/resources/META-INF/plugin.xml
@@ -4,25 +4,27 @@
林万程
- - Show javadoc comments at the Project view Tree structure.
-
- Show javadoc comments at the end-of-line.
-
- One of the above features can be turned off in
- settings -> Tools -> Show Comment Global
- - Font color of end-of-line comments can be modified in
- settings -> Tools -> Show Comment Global
- - Class name prefix filter of end-of-line comment can be modified in
- settings -> Tools -> Show Comment Project
-
- Chinese Notes:
-
- - 在结构树显示 文档注释。
-
- 在行末尾显示 文档注释。
-
- 可以在设置中 关闭 上面其中一个功能。
-
- 可以在设置中 修改 行末注释 的字体颜色。
-
- 可以在设置中 修改 行末注释 的类名前缀过滤。
-
+English Notes:
+
+- Show javadoc comments at the Project view Tree structure.
+
- Show javadoc comments at the end-of-line.
+
- Show javadoc comments at "xx ClassNameOrSimpleName.json" end-of-line.
+
- One of the above features can be turned off in
+ settings -> Tools -> Show Comment Global
+ - Font color of end-of-line comments can be modified in
+ settings -> Tools -> Show Comment Global
+ - Class name prefix filter of end-of-line comment can be modified in
+ settings -> Tools -> Show Comment Project
+
+Chinese Notes:
+
+- 在结构树显示 文档注释。
+
- 在行末尾显示 文档注释。
+
- 行末注释支持 "xx 类全名或简名.json"。
+
- 可以在设置中 关闭 上面其中一个功能。
+
- 可以在设置中 修改 行末注释 的字体颜色。
+
- 可以在设置中 修改 行末注释 的类名前缀过滤。
+
]]>