Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,48 +13,48 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- Dependency versions -->
<annotations.version>24.1.0</annotations.version>
<apktool.version>2.11.0</apktool.version>
<asm.version>9.9</asm.version>
<annotations.version>26.0.2-1</annotations.version>
<apktool.version>2.12.1</apktool.version>
<asm.version>9.9.1</asm.version>
<bined.version>0.2.2</bined.version>
<byteanalysis.version>1.0bcv</byteanalysis.version>
<cfr.version>0.152</cfr.version>
<cloning.version>1.9.12</cloning.version>
<commons-cli.version>1.9.0</commons-cli.version>
<commons-codec.version>1.17.1</commons-codec.version>
<commons-cli.version>1.11.0</commons-cli.version>
<commons-codec.version>1.20.0</commons-codec.version>
<commons-compiler.version>3.1.12</commons-compiler.version>
<commons-compress.version>1.27.1</commons-compress.version>
<commons-io.version>2.16.1</commons-io.version>
<commons-lang3.version>3.17.0</commons-lang3.version>
<commons-text.version>1.12.0</commons-text.version>
<darklaf.version>3.0.2</darklaf.version>
<commons-compress.version>1.28.0</commons-compress.version>
<commons-io.version>2.21.0</commons-io.version>
<commons-lang3.version>3.20.0</commons-lang3.version>
<commons-text.version>1.15.0</commons-text.version>
<darklaf.version>3.0.2</darklaf.version> <!-- Newer versions require Java 17+ -->
<darklaf-extensions-rsta.version>0.4.1</darklaf-extensions-rsta.version>
<decompiler-fernflower.version>6.3.9.Final</decompiler-fernflower.version>
<dex2jar.version>2.4.22</dex2jar.version>
<dex2jar.version>2.4.34</dex2jar.version>
<disk-lib.version>1.2.0</disk-lib.version>
<fernflower.version>e0d44f4</fernflower.version>
<gson.version>2.11.0</gson.version>
<guava.version>33.3.0-jre</guava.version>
<google-java-format.version>1.7</google-java-format.version> <!-- Newer versions require Java 11+ -->
<gson.version>2.13.2</gson.version>
<guava.version>33.5.0-jre</guava.version>
<httprequest.version>2.2.0</httprequest.version>
<imgscalr-lib.version>4.2</imgscalr-lib.version>
<jadx.version>1.4.7</jadx.version> <!-- Newer versions require Java 11+ -->
<java-parser.version>3.27.1</java-parser.version>
<jd-gui.version>1.6.6bcv</jd-gui.version>
<jgraphx.version>3.4.1.3</jgraphx.version>
<js.version>21.2.0</js.version>
<objenesis.version>3.4</objenesis.version>
<binary-data.version>0.2.2</binary-data.version>
<procyon.version>0.6.0</procyon.version>
<rsyntaxtextarea.version>3.5.2</rsyntaxtextarea.version> <!-- Upcoming 4.0 release will require Java 11+ -->
<rsyntaxtextarea.version>3.6.0</rsyntaxtextarea.version> <!-- Upcoming 4.0 release will require Java 11+ -->
<semantic-version.version>2.1.1</semantic-version.version>
<slf4j.version>2.0.16</slf4j.version>
<smali.version>3.0.8</smali.version>
<slf4j.version>2.0.17</slf4j.version>
<smali.version>3.0.9</smali.version>
<safeyaml.version>1.34.1</safeyaml.version>
<taskmanager.version>1.0.1</taskmanager.version>
<treelayout.version>1.0.3</treelayout.version>
<webp-imageio.version>a8f700b</webp-imageio.version>
<webp-imageio.version>901abbd</webp-imageio.version>
<xpp3.version>1.1.4c</xpp3.version>
<java-parser.version>3.26.2</java-parser.version>
<taskmanager.version>1.0.1</taskmanager.version>
<google-java-format.version>1.7</google-java-format.version> <!-- Newer versions require Java 11+ -->
<disk-lib.version>1.2.0</disk-lib.version>
</properties>

<repositories>
Expand Down Expand Up @@ -420,15 +420,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.0</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.14.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
Expand All @@ -438,15 +438,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.0</version>
<version>3.12.0</version>
<configuration>
<source>${maven.compiler.source}</source>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import com.google.common.io.Files;
import com.konloch.disklib.DiskReader;
import com.konloch.disklib.DiskWriter;
import org.apache.commons.compress.utils.FileNameUtils;
import org.apache.commons.io.FilenameUtils;
import the.bytecode.club.bytecodeviewer.BytecodeViewer;
import the.bytecode.club.bytecodeviewer.Configuration;
import the.bytecode.club.bytecodeviewer.gui.components.FileChooser;
Expand Down Expand Up @@ -233,7 +233,7 @@ public void save()
{
try
{
final String ext = FileNameUtils.getExtension(pluginName);
final String ext = FilenameUtils.getExtension(pluginName);
JFileChooser fc = FileChooser.create(Configuration.getLastPluginDirectory(), "Save Plugin", "BCV Plugin", ext);

int returnVal = fc.showSaveDialog(BytecodeViewer.viewer);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ private ResourceContainerImporter importZipInputStream(boolean classesOnly) thro
*/
private ResourceContainerImporter importApacheZipFile(boolean classesOnly) throws IOException
{
try (ZipFile zipFile = new ZipFile(container.file))
try (ZipFile zipFile = ZipFile.builder().setFile(container.file).get())
{
Enumeration<? extends ZipArchiveEntry> entries = zipFile.getEntries();
while (entries.hasMoreElements())
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/translations/english.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"COMPILE_ON_SAVE": "Compile On Save",
"COMPILE_ON_REFRESH": "Compile On Refresh",
"REFRESH_ON_VIEW_CHANGE": "Refresh On View Change",
"DISABLE_RELOAD_CONFIRMATION": "Disable Reload Confirmation",
"DECODE_APK_RESOURCES": "Decode APK Resources",
"APK_CONVERSION": "APK Conversion",
"APK_CONVERSION_DECODING": "APK Conversion/Decoding",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/translations/german.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"COMPILE_ON_SAVE": "Bei Speichern kompilieren",
"COMPILE_ON_REFRESH": "Bei Aktualisierung kompilieren",
"REFRESH_ON_VIEW_CHANGE": "Bei Änderung der Ansicht aktualisieren",
"DISABLE_RELOAD_CONFIRMATION": "Bestätigung beim Neuladen deaktivieren",
"DECODE_APK_RESOURCES": "APK Ressourcen dekodieren",
"APK_CONVERSION": "APK-Umwandlung",
"APK_CONVERSION_DECODING": "APK-Konvertierung",
Expand Down