diff --git a/README.md b/README.md index cab5313..3ae78ea 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [Grav](https://getgrav.org/) is a flat-file open source CMS. This plugin helps to increase the development speed for Grav-based projects for PhpStorm and IntelliJ IDEA Community / Ultimate. -**Current version:** 0.7.0-SNAPSHOT +**Current version:** 0.6.1 **Tested with:** diff --git a/build.gradle b/build.gradle index c917048..2135763 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ def alternativeIdePathTestingIU = properties.getProperty('alternativeIdePathTest def htmlFixer = { htmlFile -> file(htmlFile).text.replace('', '').replace('', '') } group 'net.offbeatpioneer.intellij.plugins.grav' -version '0.7.0-SNAPSHOT' +version '0.6.1' apply plugin: 'idea' apply plugin: 'java' @@ -35,7 +35,7 @@ repositories { dependencies { implementation 'org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5' - implementation 'junit:junit:4.13.1' + testImplementation 'junit:junit:4.13.1' implementation 'com.google.code.gson:gson:2.8.5' testCompile group: 'junit', name: 'junit', version: '4.12' } diff --git a/src/main/java/net/offbeatpioneer/intellij/plugins/grav/errorreporting/TriggerExceptionAction.java b/src/main/java/net/offbeatpioneer/intellij/plugins/grav/errorreporting/TriggerExceptionAction.java index df2c719..5026beb 100644 --- a/src/main/java/net/offbeatpioneer/intellij/plugins/grav/errorreporting/TriggerExceptionAction.java +++ b/src/main/java/net/offbeatpioneer/intellij/plugins/grav/errorreporting/TriggerExceptionAction.java @@ -22,13 +22,14 @@ import com.intellij.openapi.actionSystem.AnAction; import com.intellij.openapi.actionSystem.AnActionEvent; +import com.intellij.openapi.project.DumbAware; import org.jetbrains.annotations.Nullable; /** * Provides functionality to throw a runtime exception when the action is invoked. It is used to test the error reporting * functions. Don't forget to register the action in plugin.xml to make it work. */ -public class TriggerExceptionAction extends AnAction { +public class TriggerExceptionAction extends AnAction implements DumbAware { public TriggerExceptionAction() { this("Throw Test Exception"); diff --git a/src/main/resources/META-INF/change-notes.html b/src/main/resources/META-INF/change-notes.html index 21fee99..08aa4f8 100644 --- a/src/main/resources/META-INF/change-notes.html +++ b/src/main/resources/META-INF/change-notes.html @@ -1,10 +1,4 @@ -
- 0.7.0-SNAPSHOT -
0.6.1