Skip to content

Commit 9587df6

Browse files
committed
Merge branch 'release/v1.2.6-221' into release/v1.2.6-223
# Conflicts: # CHANGELOG.md Signed-off-by: Uladzislau Kalesnikau <[email protected]>
2 parents 223738c + 6875d69 commit 9587df6

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to the Zowe Explorer plug-in for IntelliJ IDEA will be documented in this file.
44

5+
## [Unreleased]
6+
7+
### Bugfixes
8+
9+
* Bugfix: Fixed a bug with a long name of a USS item ([b648f835](https://github.com/zowe/zowe-explorer-intellij/commit/b648f835))
10+
* Bugfix: Fixed an issue with a USS file creation in a directory that has no read permissions ([302a5ab1](https://github.com/zowe/zowe-explorer-intellij/commit/302a5ab1))
11+
512
## [1.2.5-223] (2024-02-03)
613

714
### Bugfixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ some of the communication chanels:
132132
* Email to: <a href="mailto:[email protected]">Uladzislau Kalesnikau (Team Lead of the IJMP)</a>
133133

134134
**Note: GitHub issue is the preferred way of communicating in case of creating some bug/feature/request for enhancement.
135-
If you need direct consulting or you have any related questions, please, reach us out using Slack channels or E-mail**
135+
If you need direct consulting, or you have any related questions, please, reach us out using Slack channels or E-mail**

src/main/kotlin/org/zowe/explorer/explorer/ui/CreateFileDialog.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ class CreateFileDialog(project: Project?, override var state: CreateFileDialogSt
109109

110110
init {
111111
val type = if (state.parameters.type == FileType.DIR) "Directory" else "File"
112-
title = "Create $type under $filePath"
112+
val shortFilePath = if (filePath.length > 30) filePath.substring(0, 27) + "..." else filePath
113+
title = "Create $type under $shortFilePath"
113114
init()
114115
}
115116

0 commit comments

Comments
 (0)