Skip to content

Commit

Permalink
1.5.15 (#181)
Browse files Browse the repository at this point in the history
* 1.5.15

* port classes to kotlin

* wip

* wip

* wip

* split

* fixes

* wip

* bump

* look! a squirrel!

* Update build.gradle.kts
  • Loading branch information
acharneski authored Sep 3, 2024
1 parent 2178182 commit 9cb0210
Show file tree
Hide file tree
Showing 20 changed files with 541 additions and 1,937 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- VCS menu integration with AI Coder options in the VCS log context menu

### Changed
- Updated dependencies: skyenet_version to 1.0.80 and jo-penai to 1.0.67
- Updated dependencies: skyenet_version to 1.0.80 and jo-penai to 1.0.68
- Removed kotlinx-coroutines-core dependency
- Added Git4Idea and GitHub plugins to the intellij block
- Refactored CommandAutofixAction for more modular and extensible code
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version = properties("pluginVersion")
val kotlin_version = "2.0.0-Beta5" // This line can be removed if not used elsewhere
val jetty_version = "11.0.18"
val slf4j_version = "2.0.9"
val skyenet_version = "1.0.86"
val skyenet_version = "1.0.91"
val remoterobot_version = "0.11.21"
val jackson_version = "2.17.0"

Expand All @@ -40,7 +40,7 @@ dependencies {
exclude(group = "org.jetbrains.kotlin", module = "")
}

implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.0.67")
implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.0.68")
{
exclude(group = "org.jetbrains.kotlin", module = "")
}
Expand Down
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.5.14
pluginVersion=1.5.15

jvmArgs=-Xmx8g
org.gradle.jvmargs=-Xmx8g
Expand Down

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/java/com/github/simiacryptus/aicoder/util/TextBlock.java

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.github.simiacryptus.aicoder.actions

import com.github.simiacryptus.aicoder.util.UITools
import com.intellij.openapi.actionSystem.ActionUpdateThread
import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.command.WriteCommandAction
import com.intellij.openapi.ui.Messages
Expand All @@ -12,6 +13,7 @@ class ApplyPatchAction : BaseAction(
name = "Apply Patch",
description = "Applies a patch to the current file"
) {
override fun getActionUpdateThread() = ActionUpdateThread.BGT

override fun handle(event: AnActionEvent) {
val project = event.project ?: return
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class DescribeAction : SelectionAction<String>() {
}
return buildString {
append(state.indent)
append(commentStyle?.fromString(wrapping)?.withIndent(state.indent) ?: wrapping)
append(commentStyle?.fromString(wrapping)?.withIndent(state.indent!!) ?: wrapping)
append("\n")
append(state.indent)
append(state.selectedText)
Expand Down
Loading

0 comments on commit 9cb0210

Please sign in to comment.