This repository has been archived by the owner on Nov 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96631b2
commit 8ee91c2
Showing
4 changed files
with
20 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="IntelliJ-Haskell" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" | ||
show_console_on_std_out="true"> | ||
<module name="intellij-haskell"/> | ||
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -ea -Ddump.threads.on.long.write.action.waiting=50"/> | ||
<option name="PROGRAM_PARAMETERS" value=""/> | ||
<alternative-path path="IntelliJ IDEA IU-202.7660.26" alternative-path-enabled="true"/> | ||
<predefined_log_file enabled="true" id="idea.log"/> | ||
<method v="2"> | ||
<option name="Make" enabled="true"/> | ||
</method> | ||
</configuration> | ||
<configuration default="false" name="IntelliJ-Haskell" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" show_console_on_std_out="true"> | ||
<module name="intellij-haskell" /> | ||
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -ea -Ddump.threads.on.long.write.action.waiting=50" /> | ||
<option name="PROGRAM_PARAMETERS" value="" /> | ||
<alternative-path path="IntelliJ IDEA Community Edition IC-202.8194.7" alternative-path-enabled="true" /> | ||
<predefined_log_file enabled="true" id="idea.log" /> | ||
<method v="2"> | ||
<option name="Make" enabled="true" /> | ||
</method> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
lazy val commonSettings = Seq( | ||
version := "1.0.0-beta85", | ||
version := "1.0.0-beta86", | ||
scalaVersion := "2.13.6" | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<idea-plugin> | ||
<idea-plugin require-restart="true"> | ||
<id>intellij.haskell</id> | ||
<name>IntelliJ-Haskell</name> | ||
<version>1.0.0-beta85</version> | ||
<version>1.0.0-beta86</version> | ||
<vendor email="[email protected]">Rik van der Kleij</vendor> | ||
|
||
<description><![CDATA[ | ||
|
@@ -20,6 +20,12 @@ | |
]]></description> | ||
|
||
<change-notes><![CDATA[ | ||
<p>1.0.0-beta86</p> | ||
<ul> | ||
<li>Support for 2021.2</li> | ||
<li>Improved support for holes by @mbwgh. See #629. </li> | ||
<li>Documentation in code completion by @fantostisch</li> | ||
</ul> | ||
<p>1.0.0-beta85</p> | ||
<ul> | ||
<li>Various improvements and fixes</li> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.12.5") | ||
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.12.6") | ||
|
||
resolvers += Resolver.url("jetbrains-bintray", | ||
url("https://dl.bintray.com/jetbrains/sbt-plugins/"))(Resolver.ivyStylePatterns) |