Skip to content

Commit

Permalink
Release 1.3.2 (#929)
Browse files Browse the repository at this point in the history
* fix: doctor show result (#927)

* feat: udpate logo (#928)
  • Loading branch information
fyangstudio authored Aug 2, 2021
1 parent 7dbe4b9 commit eae3d02
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 4 deletions.
4 changes: 4 additions & 0 deletions extensions/application-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.0.5

- feat: update activitybar icon

## 1.0.4

- fix: fail to update the material source
Expand Down
Binary file not shown.
8 changes: 8 additions & 0 deletions extensions/application-manager/assets/sidebar-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions extensions/application-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Application Manager",
"description": "Quick view your Universal Application(React/Rax/Vue, etc).",
"publisher": "iceworks-team",
"version": "1.0.4",
"version": "1.0.5",
"engines": {
"vscode": "^1.41.0"
},
Expand Down Expand Up @@ -33,7 +33,7 @@
{
"id": "iceworksApp",
"title": "AppWorks",
"icon": "assets/sidebar-logo.png"
"icon": "assets/sidebar-logo.svg"
}
]
},
Expand Down
4 changes: 4 additions & 0 deletions extensions/doctor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

# 1.1.4

- fix: codemod 100 score show result

# 1.1.3

- feat: update @appworks/codemod
Expand Down
2 changes: 1 addition & 1 deletion extensions/doctor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Doctor",
"description": "A free security and quality audit tool for modern DevOps teams",
"publisher": "iceworks-team",
"version": "1.1.3",
"version": "1.1.4",
"engines": {
"vscode": "^1.41.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const CodemodReport = (props) => {
score={data.score}
Description={Description}
/>
{data.score === 100 ? (
{data.score === 100 && (data.reports || []).length === 0 ? (
<Appreciate />
) : (
<div>
Expand Down

0 comments on commit eae3d02

Please sign in to comment.