Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
PioBeat authored and Grav-IntelliJ-Plugin committed Dec 18, 2020
1 parent 84cb733 commit 40bd0fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def alternativeIdePathTestingIU = properties.getProperty('alternativeIdePathTest
def htmlFixer = { htmlFile -> file(htmlFile).text.replace('<html>', '').replace('</html>', '') }

group 'net.offbeatpioneer.intellij.plugins.grav'
version '0.7.0-SNAPSHOT'
version '0.6.1'

apply plugin: 'idea'
apply plugin: 'java'
Expand All @@ -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'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
6 changes: 0 additions & 6 deletions src/main/resources/META-INF/change-notes.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
<html>
<p>
<span>0.7.0-SNAPSHOT</span>
<ul>
<li>Added</li>
</ul>
</p>
<p>
<span>0.6.1</span>
<ul>
Expand Down

0 comments on commit 40bd0fe

Please sign in to comment.