Skip to content

Commit 751ee10

Browse files
authored
Merge branch 'feature/q-lsp-chat' into stopResp
2 parents 40ff18b + 0e28a94 commit 751ee10

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLanguageClientImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class AmazonQLanguageClientImpl(private val project: Project) : AmazonQLanguageC
151151
formatMappings[format]?.let { filters.add(it) }
152152
}
153153
val defaultUri = params.defaultUri ?: "export-chat.md"
154-
val saveAtUri = defaultUri.substring(defaultUri.lastIndexOf("/"))
154+
val saveAtUri = defaultUri.substring(defaultUri.lastIndexOf("/") + 1)
155155
return CompletableFuture.supplyAsync(
156156
{
157157
val descriptor = FileSaverDescriptor("Export", "Choose a location to export").apply {

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/artifacts/ArtifactManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class ArtifactManager @NonInjectable internal constructor(private val manifestFe
4141

4242
companion object {
4343
private val DEFAULT_VERSION_RANGE = SupportedManifestVersionRange(
44-
startVersion = SemVer("0.0.0", 0, 0, 0),
44+
startVersion = SemVer("1.0.0", 1, 0, 0),
4545
endVersion = SemVer("2.0.0", 2, 0, 0)
4646
)
4747
private val logger = getLogger<ArtifactManager>()

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/artifacts/ManifestFetcher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ManifestFetcher(
2525
private val logger = getLogger<ManifestFetcher>()
2626

2727
private const val DEFAULT_MANIFEST_URL =
28-
"https://aws-toolkit-language-servers.amazonaws.com/remoteWorkspaceContext/0/manifest.json"
28+
"https://aws-toolkit-language-servers.amazonaws.com/qAgenticChatServer/0/manifest.json"
2929

3030
private val DEFAULT_MANIFEST_PATH: Path = getToolkitsCommonCacheRoot()
3131
.resolve("aws")

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/flareChat/AwsServerCapabilitiesProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ data class QuickActionsCommandGroups(
5757

5858
data class Command(
5959
val command: String,
60-
val description: String,
60+
val description: String?,
6161
)

0 commit comments

Comments
 (0)