Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't command+click #273

Closed
1 of 3 tasks
ccorcos opened this issue Sep 6, 2021 · 7 comments
Closed
1 of 3 tasks

Can't command+click #273

ccorcos opened this issue Sep 6, 2021 · 7 comments
Assignees
Labels
bug Something isn't working
Milestone

Comments

@ccorcos
Copy link

ccorcos commented Sep 6, 2021

Version

"@nut-tree/nut-js": "^1.7.0",

Short overview

This is my code

async function main() {
	await nut.sleep(2000)
	await nut.keyboard.pressKey(nut.Key.LeftSuper)
	await nut.mouse.leftClick()
	await nut.keyboard.releaseKey(nut.Key.LeftSuper)
}

main()

And I have a codepen with this:

document.addEventListener("click", event => {
		console.log(
			"click",
			event.metaKey
		)
});

document.addEventListener("keydown", event => {
		console.log(
			"keydown",
      event.key,
			event.metaKey
		)
});

document.addEventListener("keyup", event => {
		console.log(
			"keyup",
      event.key,
			event.metaKey
		)
});

And I'm seeing:

"click" false
"keyup" "Meta" false

Issue occurs on

  • Virtual machine
  • Docker container
  • Dev/Host system

Detailed error description

Steps to reproduce error

Additional content

Please provide any (mandatory) additional data to reproduce the error (Dockerfiles etc.)

@s1hofmann s1hofmann added this to the v2.0.0 milestone Sep 18, 2021
@s1hofmann s1hofmann added the bug Something isn't working label Sep 29, 2021
@s1hofmann s1hofmann removed this from the v2.0.0 milestone Nov 7, 2021
@s1hofmann
Copy link
Member

Removed it from the 2.0.0 milestone since fixing this issue won’t necessarily require a major release

@s1hofmann s1hofmann self-assigned this Apr 10, 2022
@s1hofmann s1hofmann added this to the 🐭 milestone Apr 17, 2022
@github-actions
Copy link

This issue is stale because it has been open for 30 days with no activity.

@github-actions github-actions bot added the stale label May 18, 2022
@ccorcos
Copy link
Author

ccorcos commented May 18, 2022 via email

@s1hofmann
Copy link
Member

This will be tackled next 👌

@github-actions github-actions bot removed the stale label May 19, 2022
s1hofmann added a commit to nut-tree/libnut-core that referenced this issue May 20, 2022
s1hofmann added a commit to nut-tree/libnut-core that referenced this issue May 20, 2022
…te accordingly so the correct modifiers are set on the event
s1hofmann added a commit to nut-tree/libnut-core that referenced this issue May 20, 2022
* (nut-tree/nut.js#273) Introduce modifier buffer to store key states and avoid input latency

* (nut-tree/nut.js#273) Properly detect modifier keys and update keystate accordingly so the correct modifiers are set on the event
@s1hofmann
Copy link
Member

s1hofmann commented May 20, 2022

@ccorcos @morajabi Would you be available to verify the latest snapshot solves #264 and #273?

npm i @nut-tree/nut-js@next

@ccorcos
Copy link
Author

ccorcos commented May 22, 2022

Both work! 🎉

https://github.com/ccorcos/nut-js-tests

cc @tanishqkancharla

@s1hofmann
Copy link
Member

@ccorcos Thanks for verifying (and your patience 😂). Will publish a patch release soonish

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants