Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix token display in plain text and plugin installation path#28

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

Closed
matifali wants to merge3 commits intomainfromfix-token-plain-text-display
Closed
Show file tree
Hide file tree
Changes fromall 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
6 changes: 3 additions & 3 deletionsbuild.gradle.kts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -178,10 +178,10 @@ private fun getPluginInstallDir(): Path {
} / "JetBrains" / "Toolbox"

val pluginsDir = when {
SystemInfoRt.isWindows -> toolboxCachesDir / "cache"
SystemInfoRt.isLinux || SystemInfoRt.isMac -> toolboxCachesDir
SystemInfoRt.isWindows -> toolboxCachesDir / "cache" / "plugins"
SystemInfoRt.isLinux || SystemInfoRt.isMac -> toolboxCachesDir / "plugins"
else -> error("Unknown os")
} / "plugins"
}

return pluginsDir / extension.id
}
Expand Down
2 changes: 2 additions & 0 deletionsgradle/libs.versions.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,6 +4,8 @@ kotlin = "2.1.0"
coroutines = "1.10.1"
serialization = "1.8.0"
okhttp = "4.12.0"
slf4j = "2.0.3"
tinylog = "2.7.0"
dependency-license-report = "2.9"
marketplace-client = "2.0.45"
gradle-wrapper = "0.14.0"
Expand Down
2 changes: 1 addition & 1 deletionsrc/main/kotlin/com/coder/toolbox/views/TokenPage.kt
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ class TokenPage(
token: Pair<String, Source>?,
private val onToken: ((token: String) -> Unit),
) : CoderPage(context, context.i18n.ptrl("Enter your token")) {
private val tokenField = TextField(context.i18n.ptrl("Token"), token?.first ?: "", TextType.General)
private val tokenField = TextField(context.i18n.ptrl("Token"), token?.first ?: "", TextType.Password)

/**
* Fields for this page, displayed in order.
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp