diff --git a/src/main/kotlin/com/coder/gateway/help/CoderWebHelp.kt b/src/main/kotlin/com/coder/gateway/help/CoderWebHelp.kt
index 3f512ff3b..b441cbd10 100644
--- a/src/main/kotlin/com/coder/gateway/help/CoderWebHelp.kt
+++ b/src/main/kotlin/com/coder/gateway/help/CoderWebHelp.kt
@@ -6,7 +6,7 @@ const val ABOUT_HELP_TOPIC = "com.coder.gateway.about"
class CoderWebHelp : WebHelpProvider() {
override fun getHelpPageUrl(helpTopicId: String): String = when (helpTopicId) {
- ABOUT_HELP_TOPIC -> "https://coder.com/docs/coder-oss/latest"
- else -> "https://coder.com/docs/coder-oss/latest"
+ ABOUT_HELP_TOPIC -> "https://coder.com/docs"
+ else -> "https://coder.com/docs"
}
}
diff --git a/src/main/kotlin/com/coder/gateway/util/Error.kt b/src/main/kotlin/com/coder/gateway/util/Error.kt
index 86bd84ba6..b9eff82e9 100644
--- a/src/main/kotlin/com/coder/gateway/util/Error.kt
+++ b/src/main/kotlin/com/coder/gateway/util/Error.kt
@@ -28,7 +28,7 @@ fun humanizeConnectionError(deploymentURL: URL, requireTokenAuth: Boolean, e: Ex
}
is SocketTimeoutException -> "Unable to connect to $deploymentURL; is it up?"
is ResponseException, is ConnectException -> "Failed to download Coder CLI: $reason"
- is SSLHandshakeException -> "Connection to $deploymentURL failed: $reason. See the documentation for TLS certificates for information on how to make your system trust certificates coming from your deployment."
+ is SSLHandshakeException -> "Connection to $deploymentURL failed: $reason. See the documentation for TLS certificates for information on how to make your system trust certificates coming from your deployment."
else -> reason
}
}
diff --git a/src/main/kotlin/com/coder/gateway/views/steps/CoderWorkspacesStepView.kt b/src/main/kotlin/com/coder/gateway/views/steps/CoderWorkspacesStepView.kt
index 3873ef322..455165074 100644
--- a/src/main/kotlin/com/coder/gateway/views/steps/CoderWorkspacesStepView.kt
+++ b/src/main/kotlin/com/coder/gateway/views/steps/CoderWorkspacesStepView.kt
@@ -202,7 +202,7 @@ class CoderWorkspacesStepView :
row {
browserLink(
CoderGatewayBundle.message("gateway.connector.view.login.documentation.action"),
- "https://coder.com/docs/coder-oss/latest/workspaces",
+ "https://coder.com/docs/user-guides/workspace-management",
)
}
row(CoderGatewayBundle.message("gateway.connector.view.login.url.label")) {
diff --git a/src/main/resources/messages/CoderGatewayBundle.properties b/src/main/resources/messages/CoderGatewayBundle.properties
index 917919227..0f684b719 100644
--- a/src/main/resources/messages/CoderGatewayBundle.properties
+++ b/src/main/resources/messages/CoderGatewayBundle.properties
@@ -27,8 +27,8 @@ gateway.connector.view.coder.workspaces.update.description=Update workspace
gateway.connector.view.coder.workspaces.create.text=Create Workspace
gateway.connector.view.coder.workspaces.create.description=Create workspace
gateway.connector.view.coder.workspaces.unsupported.os.info=Gateway supports only Linux machines. Support for macOS and Windows is planned.
-gateway.connector.view.coder.workspaces.invalid.coder.version=Could not parse Coder version {0}. Coder Gateway plugin might not be compatible with this version. Connect to a Coder workspace manually
-gateway.connector.view.coder.workspaces.unsupported.coder.version=Coder version {0} might not be compatible with this plugin version. Connect to a Coder workspace manually
+gateway.connector.view.coder.workspaces.invalid.coder.version=Could not parse Coder version {0}. Coder Gateway plugin might not be compatible with this version. Connect to a Coder workspace manually
+gateway.connector.view.coder.workspaces.unsupported.coder.version=Coder version {0} might not be compatible with this plugin version. Connect to a Coder workspace manually
gateway.connector.view.workspaces.connect.failed=Connection to {0} failed. See above for details.
gateway.connector.view.workspaces.connect.canceled=Connection to {0} canceled.
gateway.connector.view.coder.connect-ssh=Establishing SSH connection to remote worker...