KronicDeth / intellij-elixir

Elixir plugin for JetBrain's IntelliJ Platform (including Rubymine)
Other
1.83k stars 153 forks source link

Intellij 2024.1 Support #3578

Open noizu opened 5 months ago

noizu commented 5 months ago

If anyone is having issues with 2024 you may apply the following patch then run

gradlew buildPlugin

and install the plugin from build/distributions/

diff --git a/build.gradle b/build.gradle

index e66d06591..5c6d6f259 100644
--- a/build.gradle
+++ b/build.gradle
@@ -70,7 +70,7 @@ allprojects {
         pluginDescription.set(bodyInnerHTML("resources/META-INF/description.html"))

         sinceBuild = "233.11799.241"
-        untilBuild = "233.*"
+        untilBuild = "245.*"
     }

     publishPlugin {
@@ -263,4 +263,3 @@ test {
     dependsOn runQuoter
     finalizedBy stopQuoter
 }
-
diff --git a/gradle.properties b/gradle.properties
index 94b3ad3b5..5aed68bff 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -2,7 +2,7 @@
 # https://www.jetbrains.com/intellij-repository/releases
 # https://www.jetbrains.com/intellij-repository/snapshots
 baseVersion=17.0.0
-ideaVersion=2023.3
+ideaVersion=2024.1
 # MUST stay at 1.8 for JPS (Build/Compile Project) compatibility even if JRE/JBR is newer
 javaVersion=17
 javaTargetVersion=17
noizu commented 5 months ago

Pull Request with update here: https://github.com/KronicDeth/intellij-elixir/pull/3579

ghenry commented 5 months ago

I'd like to use this with IntelliJ IDEA 2024.1.1 (Ultimate Edition). What build instructions are you following? Thanks!

mtraynham commented 4 months ago

Quick question, this plugin always seems to be behind the latest releases. Is there anything we can contribute to make upgrades to the newer version faster? Like a workflow to go out and check the latest version and create a PR?