Skip to content

Commit da6121d

Browse files
committed
doc: update version and log
1 parent 28698fc commit da6121d

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group = "oolloo"
6-
version = "1.4.3"
6+
version = "1.4.4"
77

88
repositories {
99
mavenCentral()

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const std = @import("std");
44
const Arch = std.Target.Cpu.Arch;
55

6-
const NATIVE_VERSION = "1.4.3";
6+
const NATIVE_VERSION = "1.4.4";
77

88
const TARGET_ARCH = [_]Arch{
99
.x86,

readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Java Launch Wrapper (v1.4.3)
1+
# Java Launch Wrapper (v1.4.4)
22

33
## 有什么用?
44

@@ -35,6 +35,7 @@ Bug 参考 [JDK-8272352](https://bugs.openjdk.org/browse/JDK-8272352),已在 J
3535

3636
### V1.4
3737

38+
- 在将 classpath 添加到 classloader 之前对 `!` 进行转义,修复 URLClassLoader 从 jar 中获取资源时可能得到错误 URL 的问题(PR #2 by @LokmenoWer
3839
- 修复未捕获`UnsatisfiedLinkError`未被捕获导致备用方案未被使用的问题
3940
- 支持 arm64 以及其他无法正确加载 native 库的情况(使用 powershell CIM cmdlet)
4041
- 解析 `-D 参数` 并覆盖到 JVM 的 System.Properties

src/main/java/oolloo/jlw/Wrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
public class Wrapper {
1313

14-
static final String NATIVE_VERSION = "1.4.3";
14+
static final String NATIVE_VERSION = "1.4.4";
1515

1616
static final boolean DEBUG = System.getProperty("oolloo.jlw.debug", "").equals("true");
1717

0 commit comments

Comments
 (0)