diff --git a/README.md b/README.md index a7befec..6ccf4f0 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Features - View the dependency graph in tree format - Jump to source code from the graph - View parents and children of a node in the graph +- View basic validation errors directly in the editor - Fully supported for project using both Java and Kotlin including Android Usage diff --git a/build.gradle b/build.gradle index 813432a..862b223 100644 --- a/build.gradle +++ b/build.gradle @@ -58,14 +58,7 @@ compileTestKotlin { patchPluginXml { changeNotes """ - - Toggle the option to Generate dagger graph everytime the project is built
- - Show dagger validation errors in the editor (beta)
- + - Show basic dagger validation errors in the editor for @Inject, @Binds and @Provides
""" } diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index e8b00dc..92cb422 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -10,6 +10,7 @@
  • View the dependency graph in tree format
  • Jump to source code from the graph
  • View parents and children of a node in the graph
  • +
  • View basic validation errors directly in the editor
  • Fully supported for project using both Java and Kotlin including Android
  • Usage