Skip to content

Commit

Permalink
Merge branch 'openpilot-hub:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
PerryZhao authored Sep 20, 2024
2 parents 1010459 + 46cde69 commit a8791b6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.zhongan"
version = "2.5.2"
version = "2.5.3"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private static Set<PsiClass> getClassRelatedClass(@NotNull PsiElement element) {
var fields = psiClass.getFields();

for (PsiMethod psiMethod : methods) {
result.addAll(getMethodParameterTypeClass(psiMethod));
result.addAll(getMethodRelatedClass(psiMethod));
}

for (PsiField psiField : fields) {
Expand Down
17 changes: 16 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,24 @@
<!-- Public plugin name should be written in Title Case.
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name -->
<name>DevPilot</name>
<version>2.5.2</version>
<version>2.5.3</version>

<change-notes><![CDATA[
<h1>Release 2.5.3</h1>
<h2>New Features</h2>
<ul>
<li>Support reference code in chat window</li>
</ul>
<h2>Enhancements</h2>
<ul>
<li>Improve create new file logic</li>
<li>Change completion trigger interval to 1s</li>
</ul>
<h2>Bug fixes</h2>
<ul>
<li>Fix rag return bug</li>
<li>Fix chat utf8 encoding problem</li>
</ul>
<h1>Release 2.5.2</h1>
<h2>Bug fixes</h2>
<ul>
Expand Down

0 comments on commit a8791b6

Please sign in to comment.