Skip to content

Commit

Permalink
Update top build version, resolve compatibility issues
Browse files Browse the repository at this point in the history
  • Loading branch information
overpas committed Apr 28, 2023
1 parent 49ea149 commit 4f4b59c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.12.0'
id 'org.jetbrains.intellij' version '1.13.2'
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
id 'io.gitlab.arturbosch.detekt' version '1.22.0'
}

group 'by.overpass'
version '0.7'
version '0.8'

repositories {
mavenCentral()
Expand Down Expand Up @@ -55,14 +55,13 @@ publishPlugin {
tasks {
patchPluginXml {
sinceBuild.set("221.6008.13")
untilBuild.set("223.8617.56")
untilBuild.set("231.8109.175")
}
}

patchPluginXml {
changeNotes.set("""
Intellij Idea support up to 223.8617.56
Action position adjusted
Intellij Idea support up to 231.8109.175
""")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,13 @@ class SvgToComposeDialog(
private val coroutineScope = CoroutineScope(SupervisorJob())

private val ui = panel {
noteRow(
"Accessor name be used to access the Vector in the code like `MyIconPack.IconName` or" +
" `MyIconPack.IconGroupDir.IconName`",
)
row("Accessor name") {
stringField(model::accessorName).withValidator(JBTextField::getText, model::validateAccessorName)
}
row {
comment(
"Will be used to access the Vector in the code like `MyIconPack.IconName` " +
"or `MyIconPack.IconGroupDir.IconName`"
)
}
row("Output directory") {
chooseFolderField(model.stubFile, model::outputDir)
.withValidator(
Expand Down

0 comments on commit 4f4b59c

Please sign in to comment.