Skip to content

Commit

Permalink
#1196 | Added icon for build details deployment status
Browse files Browse the repository at this point in the history
  • Loading branch information
mlytvyn authored Aug 16, 2024
1 parent 7e3dcc4 commit 8fbff91
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
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

0 comments on commit 8fbff91

Please sign in to comment.