Skip to content

Commit

Permalink
1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Mar 17, 2023
1 parent efe28ec commit 84840c5
Show file tree
Hide file tree
Showing 120 changed files with 5,390 additions and 3,198 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ openai.key
.run
chain.crt
*.pem
api.log.json
*.log.java
*.log
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@
### Added
-

## [1.0.16]

### Added
- Completed transition to Kotlin
- Improved "max tokens" logic
- Added new proxy api feature
- Added "Generate Project" action (beta)

## [1.0.15]

### Added
- Improved logic for dictation action, particularly silence detection and prefix handling-
- Improved logic for dictation action, particularly silence detection and prefix handling-

## [1.0.14]

Expand Down
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ dependencies {
testImplementation("com.intellij.remoterobot:remote-robot:0.11.16") // https://packages.jetbrains.team/maven/p/ij/intellij-dependencies/com/intellij/remoterobot/remote-robot/
testImplementation("com.intellij.remoterobot:remote-fixtures:0.11.16")
testImplementation("com.squareup.okhttp3:okhttp:3.14.9")
testImplementation(kotlin("script-runtime"))
}


Expand All @@ -42,6 +43,7 @@ kotlin {
// jvmToolchain(17)
}


// Configure Gradle IntelliJ Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
pluginName.set(properties("pluginName"))
Expand Down Expand Up @@ -72,6 +74,12 @@ kover.xmlReport {
}

tasks {
compileTestKotlin {
kotlinOptions {
javaParameters = true
}
}

wrapper {
gradleVersion = properties("gradleVersion")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.github.simiacryptus
pluginName = intellij-aicoder
pluginRepositoryUrl = https://github.com/SimiaCryptus/intellij-aicoder
# SemVer format -> https://semver.org
pluginVersion = 1.0.15
pluginVersion = 1.0.16

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 203
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 84840c5

Please sign in to comment.