Skip to content

Commit 99f6ac7

Browse files
committed
Merge PortSwigger updates
2 parents f043c2b + dbff460 commit 99f6ac7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

BappManifest.bmf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Uuid: 470b7057b86f41c396a97903377f3d81
22
ExtensionType: 1
33
Name: Logger++
44
RepoName: logger-plus-plus
5-
ScreenVersion: 3.19.3
6-
SerialVersion: 19
5+
ScreenVersion: 3.19.3a
6+
SerialVersion: 20
77
MinPlatformVersion: 0
88
ProOnly: False
99
Author: Soroush Dalili & Corey Arthur, NCC Group

src/main/java/com/nccgroup/loggerplusplus/help/HelpPanel.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ private void setup() {
5454

5555

5656
JTextPane overviewTitle = new JTextPane();
57+
overviewTitle.putClientProperty("html.disable", null);
5758
overviewTitle.setContentType("text/html");
5859
overviewTitle.setDocument(doc);
5960
overviewTitle.setEditable(false);
@@ -64,6 +65,7 @@ private void setup() {
6465
"filters from various fields and row coloring to highlight interesting entries which match a specific filter.</body>");
6566

6667
JTextPane overviewPane = new JTextPane();
68+
overviewPane.putClientProperty("html.disable", null);
6769
overviewPane.setContentType("text/html");
6870
overviewPane.setEditable(false);
6971
doc = (HTMLDocument) editorKit.createDefaultDocument();
@@ -154,6 +156,7 @@ private void setup() {
154156
});
155157

156158
JTextPane fieldTitle = new JTextPane();
159+
fieldTitle.putClientProperty("html.disable", null);
157160
fieldTitle.setContentType("text/html");
158161
fieldTitle.setEditable(false);
159162
doc = (HTMLDocument) editorKit.createDefaultDocument();
@@ -163,6 +166,7 @@ private void setup() {
163166
"A number of fields are available to use from the requests within your filters. These are listed below.<body>");
164167

165168
JTextPane fieldPane = new JTextPane();
169+
fieldPane.putClientProperty("html.disable", null);
166170
fieldPane.setContentType("text/html");
167171
fieldPane.setEditable(false);
168172
doc = (HTMLDocument) editorKit.createDefaultDocument();

0 commit comments

Comments
 (0)