Skip to content

Commit

Permalink
HUD default off
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Bennetts <psiinon@gmail.com>
  • Loading branch information
psiinon committed Apr 25, 2024
1 parent f9a60d1 commit d2e03ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed
- Disable the HUD by default - it still works but its flaky, and currently not a focus for us.

## [0.18.0] - 2023-10-12
### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/zaproxy/zap/extension/hud/HudParam.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ protected void parseImpl() {
baseDirectory =
getString(
PARAM_BASE_DIRECTORY, Constant.getZapHome() + ExtensionHUD.DIRECTORY_NAME);
enabledForDesktop = getBoolean(PARAM_ENABLED_DESKTOP, true);
enabledForDesktop = getBoolean(PARAM_ENABLED_DESKTOP, false);
enabledForDaemon = getBoolean(PARAM_ENABLED_DAEMON, false);
developmentMode = getBoolean(PARAM_DEV_MODE, false);
// TODO default allowUnsafeEval to false once the HUD works without it set
Expand Down

0 comments on commit d2e03ee

Please sign in to comment.