Skip to content

Commit

Permalink
Hot fix for a changed library in IDEA 2017.2
Browse files Browse the repository at this point in the history
  • Loading branch information
halirutan committed Jul 22, 2017
1 parent 15b0094 commit 9475880
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 103 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if (project.file('gradle.properties').exists()) {
}

intellij {
version = '2017.1.4'
version = '2017.2'
pluginName = 'Mathematica-IntelliJ-Plugin'
updateSinceUntilBuild = false
}
Expand Down Expand Up @@ -56,4 +56,4 @@ task wrapper(type: Wrapper) {
gradleVersion = '3.5'
}

version '2.4.3'
version '2.4.4'
1 change: 1 addition & 0 deletions resources/META-INF/change-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<i>New features and bug-fixes:</i>
<br/>
<ul>
<li>Fixed issue that prevents creating a new project in IDEA 2017.2</li>
<li>Include system information on reporting errors with empty user message</li>
<li>A better error reporter that creates issues on GitHub automatically</li>
<li>Spell check for symbols, comments and strings</li>
Expand Down
2 changes: 1 addition & 1 deletion resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<name>Mathematica Support</name>
<category>Custom Language</category>
<vendor url="http://mathematicaplugin.halirutan.de">Patrick Scheibe</vendor>
<idea-version since-build="163"/>
<idea-version since-build="172"/>
<depends>com.intellij.modules.lang</depends>

<extensions defaultExtensionNs="com.intellij">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,6 @@ public ModuleWizardStep modifySettingsStep(@NotNull final SettingsStep settingsS
return new MathematicaModifiedSettingsStep(this, settingsStep);
}

@Override
public Icon getBigIcon() {
return MathematicaIcons.FILE_ICON;
}

@Override
public Icon getNodeIcon() {
return MathematicaIcons.FILE_ICON;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ public String getDescription() {
return MathematicaBundle.message("module.type.description");
}

@Override
public Icon getBigIcon() {
return MathematicaIcons.FILE_ICON;
}

@NotNull
@Override
public MathematicaModuleBuilder createModuleBuilder() {
Expand Down
6 changes: 3 additions & 3 deletions src/de/halirutan/mathematica/sdk/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@

package de.halirutan.mathematica.sdk;

import com.btr.proxy.util.PListParser;
import com.btr.proxy.util.PListParser.Dict;
import com.btr.proxy.util.PListParser.XmlParseException;
import com.github.markusbernhardt.proxy.util.PListParser;
import com.github.markusbernhardt.proxy.util.PListParser.Dict;
import com.github.markusbernhardt.proxy.util.PListParser.XmlParseException;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.openapi.util.io.StreamUtil;

Expand Down
87 changes: 0 additions & 87 deletions src/de/halirutan/mathematica/util/WhitespaceTextSplitter.java

This file was deleted.

0 comments on commit 9475880

Please sign in to comment.