Skip to content

Commit

Permalink
2024.3 EAP compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfromXXII committed Oct 7, 2024
1 parent 305f908 commit aaca3de
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ repositories {
dependencies {
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
intellijPlatform {
goland(properties("platformVersion"))
goland(properties("platformVersion"), useInstaller = false)
jetbrainsRuntime()

// Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins.
Expand All @@ -64,7 +64,7 @@ dependencies {
instrumentationTools()
pluginVerifier()

testFramework(TestFrameworkType.Plugin.Go)
testFramework(TestFrameworkType.Plugin.Go, "GOLAND-243-EAP-SNAPSHOT")
}

testImplementation(kotlin("test"))
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ pluginGroup = org.jetbrains.tinygoplugin
pluginName = tinygo-plugin
pluginRepositoryUrl = https://github.com/JetBrains/tinygo-plugin
pluginVersion = 0.5.15
pluginSinceBuild = 242.20224.159
pluginUntilBuild = 242.*
pluginSinceBuild = 243.12818.56
pluginUntilBuild = 243.*
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions
pluginVerifierIdeVersions = IU-2024.2

platformType = GO
platformVersion = 2024.2
platformVersion = 243-EAP-SNAPSHOT
platformDownloadSources = true
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.jetbrains.php:203.4449.22
platformPlugins = org.jetbrains.plugins.go:242.20224.300
platformPlugins = org.jetbrains.plugins.go:243.16718.32
# Example: platformBundledPlugins = com.intellij.java
platformBundledPlugins = org.intellij.intelliLang
platformBundledPlugins = org.intellij.intelliLang, com.intellij.modules.json

# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,12 @@ private fun targetChooser(
sdk: Cell<TinyGoSdkChooserCombo>
) {
with(row) {
val jsonChooser = FileChooserDescriptor(true, false, false, false, false, false).withFileFilter {
it.fileType == JsonFileType.INSTANCE
}
val jsonChooser = FileChooserDescriptor(true, false, false, false, false, false)
.withFileFilter { it.fileType == JsonFileType.INSTANCE }
.withTitle(TinyGoBundle.message(TARGET_BROWSE_DIALOG_TITLE))
cell(
textFieldWithHistoryWithBrowseButton(
project,
TinyGoBundle.message(TARGET_BROWSE_DIALOG_TITLE),
jsonChooser,
)
).align(Align.FILL).bind(
Expand Down

0 comments on commit aaca3de

Please sign in to comment.