Skip to content

Commit 40bd0fe

Browse files
Dominik GrzelakPioBeat
authored andcommitted
minor
1 parent 84cb733 commit 40bd0fe

4 files changed

Lines changed: 5 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[Grav](https://getgrav.org/) is a flat-file open source CMS.
44
This plugin helps to increase the development speed for Grav-based projects for PhpStorm and IntelliJ IDEA Community / Ultimate.
55

6-
**Current version:** 0.7.0-SNAPSHOT
6+
**Current version:** 0.6.1
77

88
**Tested with:**
99

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def alternativeIdePathTestingIU = properties.getProperty('alternativeIdePathTest
1717
def htmlFixer = { htmlFile -> file(htmlFile).text.replace('<html>', '').replace('</html>', '') }
1818

1919
group 'net.offbeatpioneer.intellij.plugins.grav'
20-
version '0.7.0-SNAPSHOT'
20+
version '0.6.1'
2121

2222
apply plugin: 'idea'
2323
apply plugin: 'java'
@@ -35,7 +35,7 @@ repositories {
3535

3636
dependencies {
3737
implementation 'org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5'
38-
implementation 'junit:junit:4.13.1'
38+
testImplementation 'junit:junit:4.13.1'
3939
implementation 'com.google.code.gson:gson:2.8.5'
4040
testCompile group: 'junit', name: 'junit', version: '4.12'
4141
}

src/main/java/net/offbeatpioneer/intellij/plugins/grav/errorreporting/TriggerExceptionAction.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@
2222

2323
import com.intellij.openapi.actionSystem.AnAction;
2424
import com.intellij.openapi.actionSystem.AnActionEvent;
25+
import com.intellij.openapi.project.DumbAware;
2526
import org.jetbrains.annotations.Nullable;
2627

2728
/**
2829
* Provides functionality to throw a runtime exception when the action is invoked. It is used to test the error reporting
2930
* functions. Don't forget to register the action in plugin.xml to make it work.
3031
*/
31-
public class TriggerExceptionAction extends AnAction {
32+
public class TriggerExceptionAction extends AnAction implements DumbAware {
3233

3334
public TriggerExceptionAction() {
3435
this("Throw Test Exception");

src/main/resources/META-INF/change-notes.html

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
<html>
2-
<p>
3-
<span>0.7.0-SNAPSHOT</span>
4-
<ul>
5-
<li>Added</li>
6-
</ul>
7-
</p>
82
<p>
93
<span>0.6.1</span>
104
<ul>

0 commit comments

Comments
 (0)