Skip to content

Commit

Permalink
Merge pull request #17 from oroinc/ticket/OPP-65
Browse files Browse the repository at this point in the history
OPP-65: IllegalArgumentException in Twig templates used by layouts in PHPStorm 2020.3
  • Loading branch information
mbessolov committed Jan 11, 2021
2 parents 3ad9bb1 + 2e0d683 commit 6a93909
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'com.oroplatform'
version '1.0.18'
version '1.0.19'

apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
Expand Down
7 changes: 3 additions & 4 deletions src/main/java/com/oroplatform/idea/oroplatform/Icons.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
import javax.swing.*;

public class Icons {
public static final Icon DOCTRINE = IconLoader.findIcon("icons/doctrine.png");
public static final Icon TWIG = IconLoader.findIcon("icons/twig.png");
public static final Icon ROUTE = IconLoader.findIcon("icons/route.png");
public static final Icon ORO = IconLoader.findIcon("icons/oro.png");
public static final Icon DOCTRINE = IconLoader.getIcon("icons/doctrine.png");
public static final Icon ROUTE = IconLoader.getIcon("icons/route.png");
public static final Icon ORO = IconLoader.getIcon("icons/oro.png");
public static final Icon PUBLIC_METHOD;

static {
Expand Down
5 changes: 5 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ Plugin for the PHPStorm that will help to increase the development speed on the
]]></description>

<change-notes><![CDATA[
<h2>1.0.19</h2>
<ul>
<li>[#17] Fixed IllegalArgumentException in Twig templates used by layouts in PHPStorm 2020.3</li>
</ul>
<h2>1.0.18</h2>
<ul>
<li>[#15] extended_entity_name and table options for datagrids provide incorrect suggestions</li>
Expand Down

0 comments on commit 6a93909

Please sign in to comment.