We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Best way to introduce this is to give an example.
Minecraft's window titles are "Minecraft ". I don't wish to add by process, as there are other things that use javaw.
javaw
In this case, you want something a bit less strict than the entire window title, but more strict than process name.
Of course, this would be useful for any games that put a version number/string in the window title, not just Minecraft.
(As a side note, the regex string Minecraft (\d+\.\d+\.\d+|\d+w\d+\w) should match all recent versions of the game (including snapshots))
Minecraft (\d+\.\d+\.\d+|\d+w\d+\w)
I've forked and made changes, should have a PR coming in soon.
The text was updated successfully, but these errors were encountered:
Due to some strange issues I'm getting in Visual Studio, this may be a little while.
Sorry, something went wrong.
Merge completed!
No branches or pull requests
Best way to introduce this is to give an example.
Minecraft's window titles are "Minecraft ". I don't wish to add by process, as there are other things that use
javaw
.In this case, you want something a bit less strict than the entire window title, but more strict than process name.
Of course, this would be useful for any games that put a version number/string in the window title, not just Minecraft.
(As a side note, the regex string
Minecraft (\d+\.\d+\.\d+|\d+w\d+\w)
should match all recent versions of the game (including snapshots))I've forked and made changes, should have a PR coming in soon.
The text was updated successfully, but these errors were encountered: