Skip to content

Commit 9d0fd61

Browse files
committed
add change log + fix some styles
1 parent 79f86f6 commit 9d0fd61

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "feature",
3+
"description" : "Add image context support"
4+
}

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/Browser.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@ import com.google.gson.Gson
88
import com.intellij.openapi.Disposable
99
import com.intellij.openapi.project.Project
1010
import com.intellij.openapi.util.Disposer
11-
import com.intellij.ui.jcef.JBCefClient
12-
import com.intellij.ui.jcef.JBCefJSQuery
1311
import org.cef.CefApp
14-
import org.cef.browser.CefBrowser
15-
import org.cef.callback.CefDragData
16-
import org.cef.handler.CefDragHandler
1712
import software.aws.toolkits.jetbrains.services.amazonq.CodeWhispererFeatureConfigService
1813
import software.aws.toolkits.jetbrains.services.amazonq.lsp.flareChat.AwsServerCapabilitiesProvider
1914
import software.aws.toolkits.jetbrains.services.amazonq.lsp.flareChat.FlareUiMessage

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/BrowserConnector.kt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,17 @@ import com.intellij.openapi.fileEditor.FileEditorManager
1414
import com.intellij.openapi.options.ShowSettingsUtil
1515
import com.intellij.openapi.project.Project
1616
import com.intellij.ui.jcef.JBCefJSQuery.Response
17+
import kotlinx.coroutines.CancellationException
18+
import kotlinx.coroutines.CompletableDeferred
19+
import kotlinx.coroutines.channels.awaitClose
20+
import kotlinx.coroutines.coroutineScope
21+
import kotlinx.coroutines.flow.Flow
22+
import kotlinx.coroutines.flow.callbackFlow
23+
import kotlinx.coroutines.flow.distinctUntilChanged
24+
import kotlinx.coroutines.flow.launchIn
25+
import kotlinx.coroutines.flow.merge
26+
import kotlinx.coroutines.flow.onEach
27+
import kotlinx.coroutines.launch
1728
import org.cef.browser.CefBrowser
1829
import org.eclipse.lsp4j.TextDocumentIdentifier
1930
import org.eclipse.lsp4j.jsonrpc.ResponseErrorException
@@ -97,17 +108,6 @@ import software.aws.toolkits.telemetry.Telemetry
97108
import java.util.concurrent.CompletableFuture
98109
import java.util.concurrent.CompletionException
99110
import java.util.function.Function
100-
import kotlinx.coroutines.CancellationException
101-
import kotlinx.coroutines.CompletableDeferred
102-
import kotlinx.coroutines.channels.awaitClose
103-
import kotlinx.coroutines.coroutineScope
104-
import kotlinx.coroutines.flow.Flow
105-
import kotlinx.coroutines.flow.callbackFlow
106-
import kotlinx.coroutines.flow.distinctUntilChanged
107-
import kotlinx.coroutines.flow.launchIn
108-
import kotlinx.coroutines.flow.merge
109-
import kotlinx.coroutines.flow.onEach
110-
import kotlinx.coroutines.launch
111111

112112
class BrowserConnector(
113113
private val serializer: MessageSerializer = MessageSerializer.getInstance(),

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/chat/showOpenFileDialogParams.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ data class ShowOpenFileDialogParams(
99
val canSelectMany: Boolean = false,
1010
val filters: Map<String, List<String>> = emptyMap(),
1111
val defaultUri: String? = null,
12-
val title: String? = null
12+
val title: String? = null,
1313
)

0 commit comments

Comments
 (0)