Skip to content

Commit

Permalink
1.0.15 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski authored Sep 4, 2023
1 parent 82608bc commit c1c6e7d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ val kotlin_version = "1.7.22"
val junit_version = "5.9.2"
dependencies {

implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.15")
implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.17")

implementation(group = "org.slf4j", name = "slf4j-api", version = "2.0.5")

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gradle Releases -> https://github.com/gradle/gradle/releases
libraryGroup = com.simiacryptus.skyenet
libraryVersion = 1.0.14
libraryVersion = 1.0.15
gradleVersion = 7.6.1

# Opt-out flag for bundling Kotlin standard library -> https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library
Expand Down
2 changes: 1 addition & 1 deletion util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ val jetty_version = "11.0.15"
dependencies {


implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.15")
implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.17")

implementation(project(":core"))
implementation(project(":webui"))
Expand Down
2 changes: 1 addition & 1 deletion webui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ val jetty_version = "11.0.15"
val jackson_version = "2.15.0"
dependencies {

implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.15")
implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.17")

implementation(project(":core"))
testImplementation(project(":groovy"))
Expand Down
2 changes: 1 addition & 1 deletion webui/src/main/resources/simpleSession/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function connect(sessionId, customReceiveFunction) {
const port = window.location.port;
let path = window.location.pathname;
let strings = path.split('/');
if(strings.length >= 2) {
if(strings.length >= 2 && strings[1] !== '' && strings[1] !== 'index.html') {
path = '/' + strings[1] + '/';
} else {
path = '/';
Expand Down

0 comments on commit c1c6e7d

Please sign in to comment.