Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
4ra1n committed Aug 7, 2024
1 parent 2a00845 commit 7278449
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

env:
VERSION: "0.1.1"
VERSION: "0.2.0"

jobs:

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## 0.1.2
## 0.2.0

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

Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@

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

`0.2.0` 版本后支持了简单的 `GUI`

```shell
java -jar jar-obfuscator.jar --gui
```

![](img/012.png)

简单命令即可启动(第一次启动将自动生成配置文件)

```shell
Expand Down
Binary file added img/012.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.n1ar4.jar.obfuscator</groupId>
<artifactId>jar-obfuscator</artifactId>
<version>0.1.1</version>
<version>0.2.0</version>

<packaging>jar</packaging>
<description>Jar Obfuscator Project</description>
Expand All @@ -16,7 +16,7 @@
<asm.version>9.7</asm.version>
<jcommander.version>1.82</jcommander.version>
<snake.yaml.version>2.2</snake.yaml.version>
<flatlaf.version>3.5</flatlaf.version>
<flatlaf.version>3.5.1</flatlaf.version>
<idea.forms.version>7.0.3</idea.forms.version>
<!-- Maven Build Version -->
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin -->
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/n1ar4/jar/obfuscator/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.nio.file.Paths;

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

0 comments on commit 7278449

Please sign in to comment.