Skip to content

Commit

Permalink
## [v1.2.2] - 2024-12-07
Browse files Browse the repository at this point in the history
### Changed
- maintenance: The GUI title has also changed to reflect this repository name change.
- maintenance: added some information to README.md

Signed-off-by: gdgd009xcd <[email protected]>
  • Loading branch information
gdgd009xcd committed Dec 7, 2024
1 parent 34bb821 commit dac6034
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ The add-on will be placed in the directory `RequestRecorder/addOns/requestRecord

* Gradle builds may fail due to network connection timeouts for downloading dependencies. If you have such problems, please retry the gradlew command each time. or you can download addon file from [release page](https://github.com/gdgd009xcd/RequestRecorder/releases)

## install

This addon is 3rd party addon, so you must add this addon file to ZAPROXY manually. this addon does not have any telemetry feature.

1. get addon file requestRecorderForZAP-xxx-n.n.n.zap on [this release page](https://github.com/gdgd009xcd/RequestRecorder/releases)
1. Start ZAPROXY in your PC's Desktop.
1. Install add-on requestRecorderForZAP-xxx-n.n.n.zap file according to the ZAP add-on installation method (example: File menu "Load add-on file").<BR>
![AddonInstall](https://raw.githubusercontent.com/gdgd009xcd/RELEASES/master/IMG/ZAP/addoninst.png)<BR>
1. restart zap(sorry, currently this addon does not work unless restart zap after install it.)

## FAQ
### FAQ is [here](https://github.com/gdgd009xcd/RequestRecorder/wiki/9.1.-FAQ)

Expand Down
5 changes: 5 additions & 0 deletions addOns/requestRecorderForZAP/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this add-on will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [v1.2.2] - 2024-12-07
### Changed
- maintenance: The GUI title has also changed to reflect this repository name change.
- maintenance: added some information to README.md

## [v1.2.1] - 2024-12-03
### Changed
- maintenance: Renamed repository name from automacrobuilder to requestRecorder
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import org.zaproxy.gradle.addon.AddOnStatus

version = "1.2.1"
version = "1.2.2"
description = "RequestRecorder for ZAP"

tasks.withType<JavaCompile> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.zaproxy.zap.extension.automacrobuilder.zap.view;

import java.awt.*;
import java.util.ResourceBundle;
import javax.swing.*;
import org.parosproxy.paros.view.View;
import org.zaproxy.zap.extension.automacrobuilder.ParmGenMacroTrace;
Expand All @@ -14,6 +15,8 @@ public class RequestListJDialog extends GridBagJDialog<Object> {
AutoMacroBuilderAuthenticationMethodType.AutoMacroBuilderAuthenticationMethodOptionsPanel
optionPanel;

private static final ResourceBundle bundle = ResourceBundle.getBundle("burp/Bundle");

JTabbedPane tabbedPane;
int selectedTabIndex = -1;
int selectedTargetNo = -1;
Expand All @@ -27,7 +30,7 @@ public RequestListJDialog(
optionPanel) {
super(
View.getSingleton().getSessionDialog(),
"Macro Request List",
bundle.getString("MacroBuilderUI.MacroRequestListLabelTitle.text"),
ModalityType.DOCUMENT_MODAL);
this.optionPanel = optionPanel;
setUpRequestList();
Expand Down
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ allprojects {
spotless {
kotlinGradle {
ktlint()

// this code enables spotless:on,off tag for excluding to apply spotless on sources.
toggleOffOn()
}

project.plugins.withType(JavaPlugin::class) {
Expand Down

0 comments on commit dac6034

Please sign in to comment.