File tree Expand file tree Collapse file tree 6 files changed +29
-666
lines changed
src/main/kotlin/com/coder/gateway/views/steps Expand file tree Collapse file tree 6 files changed +29
-666
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105
105
106
106
# Run Qodana inspections
107
107
- name : Qodana - Code Inspection
108
- uses : JetBrains/qodana-action@v2022.3.2
108
+ uses : JetBrains/qodana-action@v2022.3.3
109
109
110
110
# Prepare plugin archive content for creating artifact
111
111
- name : Prepare Plugin Artifact
Original file line number Diff line number Diff line change 4
4
5
5
## Unreleased
6
6
7
+ ### Fixed
8
+ - terminal link is now correct when host ends in ` / `
9
+
7
10
## 2.1.6-eap.0 - 2023-02-02
8
11
9
12
### Fixed
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
// Groovy support
10
10
id(" groovy" )
11
11
// Kotlin support
12
- id(" org.jetbrains.kotlin.jvm" ) version " 1.7.22 "
12
+ id(" org.jetbrains.kotlin.jvm" ) version " 1.8.10 "
13
13
// Gradle IntelliJ Plugin
14
14
id(" org.jetbrains.intellij" ) version " 1.10.1"
15
15
// Gradle Changelog Plugin
@@ -33,7 +33,7 @@ dependencies {
33
33
exclude(" org.slf4j" )
34
34
}
35
35
36
- testImplementation(platform(" org.apache.groovy:groovy-bom:4.0.8 " ))
36
+ testImplementation(platform(" org.apache.groovy:groovy-bom:4.0.9 " ))
37
37
testImplementation(" org.apache.groovy:groovy" )
38
38
testImplementation(platform(" org.spockframework:spock-bom:2.3-groovy-4.0" ))
39
39
testImplementation(" org.spockframework:spock-core" )
Original file line number Diff line number Diff line change 3
3
pluginGroup =com.coder.gateway
4
4
pluginName =coder-gateway
5
5
# SemVer format -> https://semver.org
6
- pluginVersion =2.1.6 -eap.0
6
+ pluginVersion =2.1.7 -eap.0
7
7
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
8
8
# for insight into build numbers and IntelliJ Platform versions.
9
9
pluginSinceBuild =223.7571.70
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import com.coder.gateway.models.WorkspaceAgentModel
7
7
import com.coder.gateway.sdk.Arch
8
8
import com.coder.gateway.sdk.CoderRestClientService
9
9
import com.coder.gateway.sdk.OS
10
+ import com.coder.gateway.sdk.withPath
10
11
import com.coder.gateway.toWorkspaceParams
11
12
import com.coder.gateway.views.LazyBrowserLink
12
13
import com.coder.gateway.withProjectPath
@@ -134,7 +135,7 @@ class CoderLocateRemoteProjectStepView(private val disableNextAction: () -> Unit
134
135
135
136
tfProject.text = if (selectedWorkspace.homeDirectory.isNullOrBlank()) " /home" else selectedWorkspace.homeDirectory
136
137
titleLabel.text = CoderGatewayBundle .message(" gateway.connector.view.coder.remoteproject.choose.text" , selectedWorkspace.name)
137
- terminalLink.url = " ${ coderClient.coderURL} /@${coderClient.me.username} /${selectedWorkspace.name} /terminal"
138
+ terminalLink.url = coderClient.coderURL.withPath( " /@${coderClient.me.username} /${selectedWorkspace.name} /terminal" ).toString()
138
139
139
140
ideResolvingJob = cs.launch {
140
141
try {
You can’t perform that action at this time.
0 commit comments