Skip to content

Commit

Permalink
[ fix #350 ] Fix icon path
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Feb 19, 2019
1 parent 6d7ffd1 commit 6129791
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ val commitHash = kotlin.run {
output.trim()
}

val pluginComingVersion = "0.3.11"
val pluginComingVersion = "0.3.10.1"
val pluginVersion = if (isCI) "$pluginComingVersion-$commitHash" else pluginComingVersion
val packageName = "org.ice1000.julia"
val kotlinVersion = "1.2.70"
Expand Down
5 changes: 5 additions & 0 deletions change-notes.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.3.10.1<br/>
<ul>
<li>Fix PyCharm 173 support for real this time (#340, #350)</li>
<li>Fix DocString problem (#349)</li>
</ul>
0.3.10<br/>
<ul>
<li>Support deprecated <code>type</code> keyword parsing and quick-fix (#326)</li>
Expand Down
2 changes: 1 addition & 1 deletion src/icons/JuliaIcons.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface JuliaIcons {
@NotNull Icon JULIA_MODULE_ICON = IconLoader.getIcon("/icons/julia_module.png");
@NotNull Icon JULIA_TYPE_ICON = IconLoader.getIcon("/icons/julia_type.png");
@NotNull
Icon JULIA_ABSTRACT_TYPE_ICON = IconLoader.getIcon("icons/svg/julia_abstract_type.png");
Icon JULIA_ABSTRACT_TYPE_ICON = IconLoader.getIcon("icons/julia_abstract_type.png");
@NotNull Icon JULIA_FUNCTION_ICON = IconLoader.getIcon("/icons/field.png");
@NotNull Icon JULIA_VARIABLE_ICON = IconLoader.getIcon("/icons/field_variable.png");
@NotNull Icon JULIA_CONST_ICON = IconLoader.getIcon("/icons/const.png");
Expand Down

0 comments on commit 6129791

Please sign in to comment.