Skip to content

Commit

Permalink
0.4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Dec 1, 2023
1 parent 617624b commit 69a01f4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rebuild-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Log in to Docker Hub
uses: docker/login-action@v1
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 0.4.16 - Dec 1, 2023

Added:

- macOS: Window::bringToFront, ::isFront (#269, thx @Quezion)
- macOS: LayerMetal::GetMetalLayer (#275, thx @smallshen)
- X11: add held modifier info on mouse events when window isn't focused (#274, thx @dzaima)

Fixed:

- X11: Use XQueryPointer mouse position instead of XI_Motion fields (#272, thx @dzaima)
- X11: fix getScreenCoordinates (#218, #276, thx @TheDrawingCoder-Gamer)

# 0.4.15 - Apr 3, 2023

Added:
Expand Down
3 changes: 2 additions & 1 deletion script/build_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ def get_arg(name):
return vars(args).get(name.replace("-", "_"))

execdir = os.getcwd()
arch = get_arg("arch") or {'AMD64': 'x64', 'x86_64': 'x64', 'arm64': 'arm64'}[platform.machine()]
native_arch = {'AMD64': 'x64', 'x86_64': 'x64', 'arm64': 'arm64', 'aarch64': 'arm64'}[platform.machine()]
arch = get_arg("arch") or native_arch
system = get_arg("system") or {'Darwin': 'macos', 'Linux': 'linux', 'Windows': 'windows'}[platform.system()]
classpath_separator = ';' if platform.system() == 'Windows' else ':'
mvn = "mvn.cmd" if platform.system() == "Windows" else "mvn"
Expand Down

0 comments on commit 69a01f4

Please sign in to comment.