Skip to content

Commit 69a01f4

Browse files
committed
0.4.16
1 parent 617624b commit 69a01f4

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.github/workflows/rebuild-docker-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out the repo
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

1818
- name: Log in to Docker Hub
1919
uses: docker/login-action@v1

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.4.16 - Dec 1, 2023
2+
3+
Added:
4+
5+
- macOS: Window::bringToFront, ::isFront (#269, thx @Quezion)
6+
- macOS: LayerMetal::GetMetalLayer (#275, thx @smallshen)
7+
- X11: add held modifier info on mouse events when window isn't focused (#274, thx @dzaima)
8+
9+
Fixed:
10+
11+
- X11: Use XQueryPointer mouse position instead of XI_Motion fields (#272, thx @dzaima)
12+
- X11: fix getScreenCoordinates (#218, #276, thx @TheDrawingCoder-Gamer)
13+
114
# 0.4.15 - Apr 3, 2023
215

316
Added:

script/build_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ def get_arg(name):
99
return vars(args).get(name.replace("-", "_"))
1010

1111
execdir = os.getcwd()
12-
arch = get_arg("arch") or {'AMD64': 'x64', 'x86_64': 'x64', 'arm64': 'arm64'}[platform.machine()]
12+
native_arch = {'AMD64': 'x64', 'x86_64': 'x64', 'arm64': 'arm64', 'aarch64': 'arm64'}[platform.machine()]
13+
arch = get_arg("arch") or native_arch
1314
system = get_arg("system") or {'Darwin': 'macos', 'Linux': 'linux', 'Windows': 'windows'}[platform.system()]
1415
classpath_separator = ';' if platform.system() == 'Windows' else ':'
1516
mvn = "mvn.cmd" if platform.system() == "Windows" else "mvn"

0 commit comments

Comments
 (0)