Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

## Unreleased

### Fixed
- support for `Remote Development` in the Jetbrains IDE's

## 2.1.4 - 2022-12-23

### Added
Expand Down
5 changes: 4 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
<depends>com.intellij.modules.platform</depends>

<!-- TODO: enable this when https://youtrack.jetbrains.com/issue/GTW-1528/Plugin-depends-on-unknown-plugin-comjetbrainsgateway is fixed-->
<!-- depends>com.jetbrains.gateway</depends>-->
<!-- <depends>com.jetbrains.gateway</depends>-->

<!-- we trick Gateway into no longer rasing the unknown module error by marking the dependency optional-->
<depends optional="true">com.jetbrains.gateway</depends>

<extensions defaultExtensionNs="com.intellij">
<applicationService serviceImplementation="com.coder.gateway.sdk.CoderRestClientService"></applicationService>
Expand Down