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

Commit

Permalink
after release
Browse files Browse the repository at this point in the history
  • Loading branch information
4ra1n committed Mar 13, 2023
1 parent e4edee7 commit f68d051
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,15 @@ Others:
- [feat] 允许设置请求Cookie内容 #150
- [feat] radium support file input #148 (同#155)

下载:
- super-xray-1.6.jar 版本通过`java -jar super-xray-1.6.jar`启动
- super-xray-1.6-jre-exe.zip 是内置了JRE的exe版本
- super-xray-1.6-system-jre.exe 是使用系统JRE的exe版本

## 1.7

todo

下载:
- super-xray-1.6.jar 版本通过`java -jar super-xray-1.6.jar`启动
- super-xray-1.6-jre-exe.zip 是内置了JRE的exe版本
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:\super-xray\target\super-xray-1.6.jar</jar>
<outfile>D:\super-xray\super-xray-1.6.exe</outfile>
<jar>D:\super-xray\target\super-xray-1.7.jar</jar>
<outfile>D:\super-xray\super-xray-1.7.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:\super-xray\target\super-xray-1.6.jar</jar>
<outfile>D:\super-xray\super-xray-1.6-system-jre.exe</outfile>
<jar>D:\super-xray\target\super-xray-1.7.jar</jar>
<outfile>D:\super-xray\super-xray-1.7-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>super-xray</artifactId>
<version>1.6</version>
<version>1.7</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/chaitin/xray/model/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
public interface Const {
String ApplicationName = "SuperXray";
String MinXrayVersion = "支持xray最低版本:1.9.4";
String SuperXrayVersion = "当前super-xray版本:1.6";
String SuperXrayVersion = "当前super-xray版本:1.7";
String GithubTip = "由于前往Github验证,所以可能连接不通,请耐心等待,如果报错可以多次尝试";
String CurVersion = "1.6";
String CurVersion = "1.7";
String MacNeedAgree = "Mac OS 请设置 系统偏好设置->安全性与隐私->通用->仍要打开";
String MacNeedAgreeEn = "Please set System Preferences -> Security and Privacy -> General -> Still Open";
String ModuleXrayYaml = String.format(".%s%s", File.separator, "module.xray.yaml");
Expand Down

0 comments on commit f68d051

Please sign in to comment.