Skip to content

Commit

Permalink
v1.2.1
Browse files Browse the repository at this point in the history
Changes: useraw mode looks even better
Some internal changes
  • Loading branch information
pandaninjas committed Nov 28, 2022
1 parent 1c9a6b5 commit f5588b6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 18 deletions.
17 changes: 2 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>gq.malwarefight</groupId>
<artifactId>narumi-deobf-gui</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<name>narumi-deobf-gui</name>

<properties>
Expand Down Expand Up @@ -48,23 +48,10 @@
<version>11.0.2</version>
<classifier>mac</classifier>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.pandaninjas</groupId>
<artifactId>Deobfuscator</artifactId>
<version>bfb27d4</version>
<version>809112</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void initialize() {
buttonContainer.getChildren().add(box);
deobfuscatorHashMap.put(box, transformer);
}
DeobfuscatorGUIApp.stage.widthProperty().addListener((obs, oldVal, newVal) -> buttonContainer.setMinWidth(newVal.doubleValue()));
DeobfuscatorGUIApp.stage.widthProperty().addListener((obs, oldVal, newVal) -> buttonContainer.setMinWidth(Math.min(400, newVal.doubleValue())));
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
requires javafx.graphics;
requires javafx.controls;
requires org.objectweb.asm;
requires Deobfuscator.bfb27d4;
requires Deobfuscator;
opens gq.malwarefight.narumiideobfgui to javafx.fxml;
exports gq.malwarefight.narumiideobfgui to javafx.graphics;
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<TextField fx:id="outputName"/>
<Button text="Choose" onAction="#chooseOutputFile"/>
</HBox>
<ScrollPane fx:id="scrollPane">
<ScrollPane fx:id="scrollPane" maxWidth="400" style="-fx-background-color:transparent;" hbarPolicy="NEVER">
<VBox fx:id="buttonContainer" alignment="CENTER">
<CheckBox alignment="CENTER" onAction="#toggleAll">Toggle all</CheckBox>
</VBox>
Expand Down

0 comments on commit f5588b6

Please sign in to comment.