Skip to content

Commit

Permalink
Merge pull request #563 from thc202/bump-version
Browse files Browse the repository at this point in the history
Prepare next dev iteration
  • Loading branch information
psiinon authored Jul 24, 2019
2 parents c0f4951 + 22bf039 commit 14389d1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.5.0] - 2019-07-24

### Added
- Support for the Ajax Spider, including new tutorial page
- Tutorial page explaining the HTTPS upgrade [#439](https://github.com/zaproxy/zap-hud/issues/439)
Expand Down Expand Up @@ -84,7 +87,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2018-12-03
First alpha release.

[Unreleased]: https://github.com/zaproxy/zap-hud/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/zaproxy/zap-hud/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/zaproxy/zap-hud/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/zaproxy/zap-hud/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/zaproxy/zap-hud/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/zaproxy/zap-hud/compare/v0.1.2...v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repositories {
mavenCentral()
}

version = "0.5.0"
version = "0.6.0"
description = "Display information from ZAP in browser."

val generatedI18nJsFileDir = layout.buildDirectory.dir("zapAddOn/i18nJs")
Expand Down
1 change: 0 additions & 1 deletion src/main/zapHomeFiles/hud/display.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,6 @@ Vue.component('adv-menu-modal', {
},
itemSelect: function(itemId) {
this.port.postMessage({'action': 'itemSelected', 'id': itemId});
app.keepShowing = true;
app.isAdvMenuModalShown = false;
this.close();
}
Expand Down
5 changes: 4 additions & 1 deletion src/main/zapHomeFiles/hud/serviceworker.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,10 @@ function resetToDefault() {
return Promise.all(promises);
})
.then(responses => {
return utils.initializeHUD(responses[0].leftPanel, responses[1].rightPanel, responses[2]);
return utils.initializeHUD(
JSON.parse(responses[0].leftPanel),
JSON.parse(responses[1].rightPanel),
JSON.parse(responses[2].drawer));
})
.then(utils.messageAllTabs("management", {action: "refreshTarget"}))
.catch(utils.errorHandler);
Expand Down

0 comments on commit 14389d1

Please sign in to comment.