Skip to content

Commit

Permalink
1.2.27
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Feb 25, 2024
1 parent a25182b commit 24eaea9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginName=intellij-aicoder
pluginRepositoryUrl=https://github.com/SimiaCryptus/intellij-aicoder
pluginVersion=1.2.26
pluginVersion=1.2.27

jvmArgs=-Xmx8g
org.gradle.jvmargs=-Xmx8g
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class DocumentationCompilerAction : FileContextAction<DocumentationCompilerActio
val fileContent = IOUtils.toString(FileInputStream(path.toFile()), "UTF-8") ?: return@submit null
val transformContent = transformContent(fileContent, transformationMessage)
markdownContent.append("# ${root.relativize(path)}\n\n")
markdownContent.append(transformContent.replace("(?s)\n#".toRegex(), "\n##"))
markdownContent.append(transformContent.replace("(?s)(?<![^\\n])#".toRegex(), "\n##"))
markdownContent.append("\n\n")
path
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import java.util.stream.Collectors
class ActionSettingsRegistry {

val actionSettings: MutableMap<String, ActionSettings> = HashMap()
private val version = 2.0041
private val version = 2.0042

fun edit(superChildren: Array<out AnAction>): Array<AnAction> {
val children = superChildren.toList().toMutableList()
Expand Down

0 comments on commit 24eaea9

Please sign in to comment.