Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
release: 1.0.0+idea2021
Browse files Browse the repository at this point in the history
- changelog
  • Loading branch information
Pakisan committed Aug 8, 2021
1 parent e1e6669 commit b7ac1bf
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ tasks.getByName<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml
changeNotes.set("""
<b>IDEA compatability:</b>
<ul>
<li>IDEA 2021.1.*</li>
<li>IDEA 2021.1</li>
<li>IDEA 2021.2</li>
</ul>
<b>refactor: update the way to get the schema</b>
Expand All @@ -41,6 +42,26 @@ tasks.getByName<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml
<li>asyncapi.png was replaced with asyncapi.svg</li>
<li>deprecated method IconLoader.getIcon(String) was replaced with IconLoader.getIcon(String, Class)</li>
</ul>
<b>build: plugins</b>
<ul>
<li>org.jetbrains.intellij plugin was updated 0.6.5 -> 1.0</li>
</ul>
<b>fix: references indexing</b>
<ul>
<li>
Was fixed insertion of references to schemas inside index.
Before fix, I stored them under reference type. It was causing of wrong schema reference recognition with wrong file icon
</li>
<li>
Was fixed recognition of referenced files inside of schema. Now referenced files gets asyncapi icon, but only
after main schema indexing.
</li>
<li>
Was fixed recognition of referenced files inside of schema. Now referenced files always gets asyncapi icon.
</li>
</ul>
""".trimIndent())
}

Expand Down

0 comments on commit b7ac1bf

Please sign in to comment.