- Notifications
You must be signed in to change notification settings - Fork1
Support for toolbox 2.6.0.38311#8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
20 commits Select commitHold shift + click to select a range
335061a
build: rename project to coder-toolbox
fioan894fe83ce
chore: update license
fioan897151981
import code from coder/jetbrains-coder
fioan8936fba63
fix: remove Gateway string from title
fioan89e39cd05
impl: initial support for opening urls
fioan8994a6ff3
fix: use new URL opener
fioan89915d347
chore: replaces references to Gateway with Toolbox
fioan895973b0d
impl: go to main page after signing in
fioan89b031c65
fix: connection status rendering
fioan898faed95
fix: url glitch on new environment page
fioan8990d199c
impl: read plugin version from the extension.json
fioan8938e3e2b
fix: user agent did not have a proper version
fioan8933b4a60
Merge branch 'main' into fix-connection-issues
fioan89383ee49
build: upgrade plugin api dependencies to 0.7.2.6.0.38311
fioan897a6b512
build: upgrade kotlin dependencies
fioan89aa24f03
fix: compiler errors (1)
fioan893023aea
fix: compiler errors (2)
fioan89ce35939
fix: compiler errors (3)
fioan89500d397
fix: message logging
fioan892d69d5e
Merge branch 'main' into support-for-toolbox-2_6_0_38311
fioan89File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
1 change: 0 additions & 1 deletionbuild.gradle.kts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
12 changes: 5 additions & 7 deletionsgradle/libs.versions.toml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
18 changes: 8 additions & 10 deletionssrc/main/kotlin/com/coder/toolbox/CoderRemoteEnvironment.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
28 changes: 15 additions & 13 deletionssrc/main/kotlin/com/coder/toolbox/CoderRemoteProvider.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletionssrc/main/kotlin/com/coder/toolbox/CoderToolboxExtension.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletionssrc/main/kotlin/com/coder/toolbox/browser/BrowserUtil.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletionssrc/main/kotlin/com/coder/toolbox/cli/CoderCLIManager.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletionssrc/main/kotlin/com/coder/toolbox/logger/CoderLoggerFactory.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.coder.toolbox.logger | ||
import org.slf4j.ILoggerFactory | ||
import org.slf4j.Logger | ||
import com.jetbrains.toolbox.api.core.diagnostics.Logger as ToolboxLogger | ||
object CoderLoggerFactory : ILoggerFactory { | ||
var tLogger: ToolboxLogger? = null | ||
fun getLogger(clazz: Class<Any>): Logger = getLogger(clazz.name) | ||
override fun getLogger(clazzName: String): Logger = LoggerImpl(clazzName, tLogger) | ||
} |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.