Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added icon for build details deployment status #1196

Merged
merged 1 commit into from
Aug 16, 2024
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
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
## [2024.2.1]

### `CCv2` enhancements
- Added icon for build details deployment status [#1196](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1196)

### `Type System` enhancements
- Added `String` to allowed types [#1195](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1195)

## [2024.2.1]

### `CCv2` enhancements
- Added build details sections to know more about the build [#1192](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1192)

### `Type System` enhancements
- Added dom model for `core-advanced-deployment.xml` [#1187](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1187)
- Added code completion and reference resolution for primitive types [#1188](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1188)
Expand All @@ -17,9 +23,6 @@
### Fixes
- Actions for CCv2 Build were not showing [#1191](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1191)

### `CCv2` enhancements
- Added build details sections to know more about the build.

## [2024.2.0]

### `CCv2` enhancements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,13 @@ class CCv2BuildDetailsView(
row {
panel {
row {
label(activeDeployment.status.name).comment("Status")
icon(activeDeployment.status.icon)
.gap(RightGap.SMALL)
label(activeDeployment.status.title)
.comment("Status")
}
}.gap(RightGap.COLUMNS)

panel {
row {
icon(activeDeployment.updateMode.icon)
Expand All @@ -227,6 +231,7 @@ class CCv2BuildDetailsView(
.comment("Platform update mode")
}
}.gap(RightGap.COLUMNS)

panel {
row {
icon(activeDeployment.strategy.icon)
Expand All @@ -235,15 +240,18 @@ class CCv2BuildDetailsView(
.comment("Platform deployment mode")
}
}.gap(RightGap.COLUMNS)

panel {
row {
label(activeDeployment.scheduledTimeFormatted).comment("Scheduled date")
label(activeDeployment.scheduledTimeFormatted)
.comment("Scheduled date")
}
}.gap(RightGap.COLUMNS)

panel {
row {
label(activeDeployment.createdBy).comment("Deployed by")
label(activeDeployment.createdBy)
.comment("Deployed by")
}
}.gap(RightGap.COLUMNS)
}
Expand Down
Loading