Skip to content

Commit

Permalink
Merge pull request GhostManager#363 from GhostManager/hotfix/bug-fixes
Browse files Browse the repository at this point in the history
Fix Project Dashboard Links
  • Loading branch information
chrismaddalena authored Nov 14, 2023
2 parents 5ae9da5 + f7828f6 commit dacc579
Show file tree
Hide file tree
Showing 51 changed files with 66 additions and 56 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ All notable changes to this project will be documented in this file.
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] - 6 October 2023
## [4.0.2] - 14 November 2023

### Fixed

* Fixed a report rendering error when a report had no findings
* Fixed an issue with search autocomplete and finding titles with single quotes
* Fixed links for editing scope lists and targets accessed from the project dashboard's dropdown menus

### Changed

* The WYSIWYG editor will now automatically expand the height of the editor to fit the content as you type (up to the height of the browser window) (Closes #344)

### Security

* Updated the TinyMCE WYSIWYG editor to v5.10.8 to incorporate security fixes into Ghostwriter's self-hosted files

## [4.0.1] - 27 September 2023

### Added
Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
v4.0.1
27 September 2023
v4.0.2
14 November 2023
4 changes: 2 additions & 2 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
# 3rd Party Libraries
import environ

__version__ = "4.0.1"
__version__ = "4.0.2"
VERSION = __version__
RELEASE_DATE = "27 September 2023"
RELEASE_DATE = "14 November 2023"

ROOT_DIR = Path(__file__).resolve(strict=True).parent.parent.parent
APPS_DIR = ROOT_DIR / "ghostwriter"
Expand Down
4 changes: 2 additions & 2 deletions ghostwriter/rolodex/templates/rolodex/project_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ <h4>Scope Lists</h4>
<div id="scope-dropdown-menu-{{ list.id }}" class="dropdown-menu"
aria-labelledby="assignment-dropdown-btn_{{ list.id }}">
<a class="dropdown-item icon edit-icon"
href="{% url 'rolodex:project_update' project.id %}#scopes">Edit Scope</a>
href="{% url 'rolodex:project_component_update' project.id %}#scopes">Edit Scope</a>
<a id="scope-export-button-{{ list.id }}"
class="dropdown-item js-export-project-scope icon export-icon" href="javascript:void(0);"
export-scope-url="{% url 'rolodex:ajax_export_project_scope' list.id %}"
Expand Down Expand Up @@ -401,7 +401,7 @@ <h4>Targets</h4>
compromise-target-url="{% url 'rolodex:ajax_toggle_project_target' target.id %}">Toggle
Compromised Status</a>
<a class="dropdown-item icon edit-icon"
href="{% url 'rolodex:project_update' project.id %}#targets">Edit Target</a>
href="{% url 'rolodex:project_component_update' project.id %}#targets">Edit Target</a>
<a id="target-delete-button-{{ target.id }}"
class="dropdown-item js-confirm-delete icon trash-icon" data-toggle="modal"
data-target="#confirm-delete-modal" href="javascript:void(0);"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ghostwriter/static/js/tinymce/plugins/anchor/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ghostwriter/static/js/tinymce/plugins/bbcode/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit dacc579

Please sign in to comment.