Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

Commit 7278449

Browse files
committed
release 0.2.0
1 parent 2a00845 commit 7278449

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55

66
env:
7-
VERSION: "0.1.1"
7+
VERSION: "0.2.0"
88

99
jobs:
1010

CHANGELOG.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## 0.1.2
3+
## 0.2.0
44

55
支持了 `GUI` 界面,但没有过多测试,之后逐步完善
66

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@
2323

2424
[前往下载](https://github.com/jar-analyzer/jar-obfuscator/releases/latest)
2525

26+
`0.2.0` 版本后支持了简单的 `GUI`
27+
28+
```shell
29+
java -jar jar-obfuscator.jar --gui
30+
```
31+
32+
![](img/012.png)
33+
2634
简单命令即可启动(第一次启动将自动生成配置文件)
2735

2836
```shell

img/012.png

66 KB
Loading

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>me.n1ar4.jar.obfuscator</groupId>
88
<artifactId>jar-obfuscator</artifactId>
9-
<version>0.1.1</version>
9+
<version>0.2.0</version>
1010

1111
<packaging>jar</packaging>
1212
<description>Jar Obfuscator Project</description>
@@ -16,7 +16,7 @@
1616
<asm.version>9.7</asm.version>
1717
<jcommander.version>1.82</jcommander.version>
1818
<snake.yaml.version>2.2</snake.yaml.version>
19-
<flatlaf.version>3.5</flatlaf.version>
19+
<flatlaf.version>3.5.1</flatlaf.version>
2020
<idea.forms.version>7.0.3</idea.forms.version>
2121
<!-- Maven Build Version -->
2222
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin -->

src/main/java/me/n1ar4/jar/obfuscator/Const.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import java.nio.file.Paths;
77

88
public interface Const {
9-
String VERSION = "0.1.1";
9+
String VERSION = "0.2.0";
1010
String PROJECT_URL = "https://github.com/jar-analyzer/jar-obfuscator";
1111
String UPDATE_URL = "https://jar-analyzer.oss-cn-hangzhou.aliyuncs.com/jar-obfuscator/version.txt";
1212
String DOWNLOAD_URL = "https://github.com/jar-analyzer/jar-obfuscator/releases/latest";

0 commit comments

Comments
 (0)