From 6e7cf31ff33daf903e5fa04ecab4b72414690225 Mon Sep 17 00:00:00 2001
From: thsaravana
Date: Tue, 26 May 2020 10:23:19 +0530
Subject: [PATCH] Update feature set
---
README.md | 1 +
build.gradle | 9 +--------
src/main/resources/META-INF/plugin.xml | 1 +
3 files changed, 3 insertions(+), 8 deletions(-)
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)
-
- - @Component may only be applied to an interface or abstract class
- - @Component has more than one @Component.Builder or @Component.Factory
- - Given module is not annotated with @Module
- - Dagger does not support injection into private constructors/methods/fields
-
+ - 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