Support for mac OS ventura and sonoma#32
Open
tavvfiq wants to merge 7 commits intothecasualcoder:masterfrom
Open
Support for mac OS ventura and sonoma#32tavvfiq wants to merge 7 commits intothecasualcoder:masterfrom
tavvfiq wants to merge 7 commits intothecasualcoder:masterfrom
Conversation
Noddy20
added a commit
to Noddy20/lazy-connect
that referenced
this pull request
Apr 10, 2023
|
For me, there's a password popup after focusing on The solution is to focus on another field, in my case the user field const passwordField = authArea.textFields[1]
passwordField.focused = true
passwordField.value = password
+ const userField = authArea.textFields[0]
+ userField.focused = true |
Author
|
cool @esafirm. will add this changes. thanks |
|
Hai @tavvfiq, Mind to update the script with the latest mac os sonoma? :) |
Author
|
@bilfash i havent update my os to sonoma yet😅. But will update the PR once its done |
Author
|
hi @bilfash, just updated the PR with support for sonoma. please kindly help on testing ya. thanks! P.S: please delete existing VPN first, and then re-adding the VPN again (since this impl. is using different approach) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
this PR add support for mac OS ventura since the system settings is using different layout.
the implementation is using
osascriptwithjavascript. feel free if you have any input. thanks