Skip to content

Commit aac8c6a

Browse files
committed
v4.3.1
1 parent 53d1fa8 commit aac8c6a

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

PMC_MEMBERS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Project Management Committee (PMC) Members
2+
3+
## Members
4+
5+
|   | Member | Profile | Term Start |
6+
|------------------------------------------------------------|--------|----------------------------------------------|---------------|
7+
| <img width="30px" src="https://github.com/future0923.png"> | future | [@future0923](https://github.com/future0923) | 29th May 2024 |

debug-tools-base/src/main/java/io/github/future0923/debug/tools/base/constants/ProjectConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface ProjectConstants {
2525

2626
String NAME = "DebugTools";
2727

28-
String VERSION = "4.3.0";
28+
String VERSION = "4.3.1";
2929

3030
String SPRING_EXTENSION_JAR_NAME = "debug-tools-extension-spring";
3131

debug-tools-idea/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ kotlin.stdlib.default.dependency = false
77
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
88
#org.gradle.caching = true
99

10-
pluginVersion=4.3.0
10+
pluginVersion=4.3.1
1111

1212
sinceBuild=231.0
1313
untilBuild=251.*

debug-tools-idea/src/main/resources/META-INF/plugin.xml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434

3535
<change-notes>
3636
<![CDATA[
37+
<strong>4.3.1</strong>
38+
<ul>
39+
<li>热部署支持resource目录下的文件</li>
40+
<li>热部署支持mybatis的xml文件</li>
41+
<li>debug-tools-boot支持pid参数传入进程号</li>
42+
<li>修复EasyExcel在热重载启动下导出样式丢失的bug</li>
43+
<li>修复SpringBoot3.4.5下热部署启动失败的bug</li>
44+
</ul>
3745
<strong>4.3.0</strong>
3846
<ul>
3947
<li>增加调用方法前后置脚本</li>
@@ -154,7 +162,8 @@
154162
<!--文件变更-->
155163
<projectService serviceImplementation="io.github.future0923.debug.tools.idea.utils.FileChangedService"/>
156164
<!--鼠标移动-->
157-
<editorFactoryMouseMotionListener implementation="io.github.future0923.debug.tools.idea.listener.idea.QuickDebugEditorMouseMotionListener" />
165+
<editorFactoryMouseMotionListener
166+
implementation="io.github.future0923.debug.tools.idea.listener.idea.QuickDebugEditorMouseMotionListener"/>
158167
<!--设置-->
159168
<projectConfigurable instance="io.github.future0923.debug.tools.idea.setting.DebugToolsSettingConfigurable"
160169
id="DebugToolsTool.Setting"
@@ -192,9 +201,9 @@
192201
<group id="DebugTools.Tool">
193202
<separator/>
194203
<add-to-group group-id="EditorPopupMenu" anchor="first"/>
195-
<group id="DebugToolsTool.TraceMethod"
196-
class="io.github.future0923.debug.tools.idea.action.TraceMethodGroup"
197-
popup="true">
204+
<group id="DebugToolsTool.TraceMethod"
205+
class="io.github.future0923.debug.tools.idea.action.TraceMethodGroup"
206+
popup="true">
198207
<action id="DebugToolsTool.AddTraceMethod"
199208
class="io.github.future0923.debug.tools.idea.action.AddTraceMethodAction"
200209
text="Add Method To Trace"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</developers>
4343

4444
<properties>
45-
<revision>4.3.0</revision>
45+
<revision>4.3.1</revision>
4646
<compiler.version>8</compiler.version>
4747
<target.version>8</target.version>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)