Skip to content

Commit

Permalink
Fix compatibility for 243.19420.21
Browse files Browse the repository at this point in the history
  • Loading branch information
cypressious committed Oct 10, 2024
1 parent 427261a commit 29c0e23
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "org.example"
version = "0.1.4"
version = "0.1.5"

repositories {
mavenCentral()
Expand All @@ -16,7 +16,7 @@ repositories {

dependencies {
intellijPlatform {
create("IU", "2024.2")
create("IU", "243.19420.21")
bundledPlugins(listOf("JavaScript", "org.jetbrains.plugins.sass"))

pluginVerifier()
Expand All @@ -29,7 +29,7 @@ dependencies {
intellijPlatform {
pluginConfiguration {
ideaVersion {
sinceBuild = "231"
sinceBuild = "243.19420.21"
untilBuild = provider { null }
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.actionSystem.CommonDataKeys
import com.intellij.openapi.fileEditor.ex.FileEditorManagerEx
import com.intellij.psi.PsiFile
import icons.JavaScriptCoreIcons
import icons.JavaScriptPsiIcons
import icons.SassIcons
import javax.swing.Icon
Expand Down Expand Up @@ -88,9 +89,9 @@ class OpenAngularTemplateAction :
}

class OpenAngularCodeAction :
AbstractOpenAngularAction("Open Component Code", JavaScriptPsiIcons.FileTypes.TypeScriptFile) {
AbstractOpenAngularAction("Open Component Code", JavaScriptCoreIcons.FileTypes.TypeScriptFile) {
override val extensions = mapOf(
"ts" to JavaScriptPsiIcons.FileTypes.TypeScriptFile,
"ts" to JavaScriptCoreIcons.FileTypes.TypeScriptFile,
)
}

Expand Down

0 comments on commit 29c0e23

Please sign in to comment.