Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
4ra1n committed Feb 18, 2023
1 parent 07eaf87 commit 7e48081
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,8 @@ Others:
下载说明:
- `jar-analyzer-*.jar` 使用 `java -jar` 启动(使用`Java 8`以上启动,支持 `Windows/Mac/Linux`
- `jar-analyzer-*-system-jre.exe` 使用系统`Java 8`以上启动(`Windows`
- `jar-analyzer-*-jre-exe.zip` 内置`Java 11 JRE``exe` 版本(`Windows`
- `jar-analyzer-*-jre-exe.zip` 内置`Java 11 JRE``exe` 版本(`Windows`

## 1.2

todo
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![](https://img.shields.io/badge/build-Java%208-orange)
![](https://img.shields.io/github/downloads/4ra1n/jar-analyzer/total)
![](https://img.shields.io/github/v/release/4ra1n/jar-analyzer)
![](https://img.shields.io/badge/Java%20Code%20Lines-4404-orange)
![](https://img.shields.io/badge/Java%20Code%20Lines-4576-orange)

## 介绍

Expand Down
4 changes: 2 additions & 2 deletions build/build-jre.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>D:\jar-analyzer\target\jar-analyzer-1.1.jar</jar>
<outfile>D:\jar-analyzer\jar-analyzer-1.1.exe</outfile>
<jar>D:\jar-analyzer\target\jar-analyzer-1.2.jar</jar>
<outfile>D:\jar-analyzer\jar-analyzer-1.2.exe</outfile>
<errTitle></errTitle>
<cmdLine></cmdLine>
<chdir>.</chdir>
Expand Down
4 changes: 2 additions & 2 deletions build/build-nojre.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>D:\jar-analyzer\target\jar-analyzer-1.1.jar</jar>
<outfile>D:\jar-analyzer\jar-analyzer-1.1-system-jre.exe</outfile>
<jar>D:\jar-analyzer\target\jar-analyzer-1.2.jar</jar>
<outfile>D:\jar-analyzer\jar-analyzer-1.2-system-jre.exe</outfile>
<errTitle></errTitle>
<cmdLine></cmdLine>
<chdir>.</chdir>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.chaitin</groupId>
<artifactId>jar-analyzer</artifactId>
<version>1.1</version>
<version>1.2</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/chaitin/jar/analyzer/core/Const.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.chaitin.jar.analyzer.core;

public interface Const {
String JarAnalyzerVersion = "当前jar-analyzer版本:1.1";
String JarAnalyzerVersion = "当前jar-analyzer版本:1.2";
String GithubTip = "由于前往Github验证,所以可能连接不通,请耐心等待,如果报错可以多次尝试";
String CurVersion = "1.1";
String CurVersion = "1.2";
}

0 comments on commit 7e48081

Please sign in to comment.