-
Notifications
You must be signed in to change notification settings - Fork 38
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
Add the --dolphin-process-name
command-line option.
#105
Add the --dolphin-process-name
command-line option.
#105
Conversation
The first The changes for Windows and macOS have been made blindly; unable to test. Let's see if the build succeeds. (It builds.) EDIT: @dreamsyntax Would you able to test at least on Windows? It'd be interesting to test also with non-ASCII characters, which I'm hoping it will work. |
d1b07bc
to
8a84dd2
Compare
Launching with Launching with Also tested with -- -- |
I think my preference is to be specific, but I'm having a hard time finding a case where the implicit extension could be a problem. So, happy to add it if you haven't changed your mind since your comment. |
I would think Or just make it clear in the help/readme that windows must include the extension. |
The option's help description does say the file extension must be given, but the Windows ecosystem is known for not minding. |
Your call. I'm fine either way, merge when you think its good to go. |
A few lines in a few files were still using `CRLF`.
The `.vscode` had been inadvertently checked in in aed47a1.
It enables the use of `--version` and `--help` in the command line.
Used to override the name of the Dolphin Emulator process that the DME will search for in the system while trying to hook. The short version of the option is `-d`. The [undocumented] `DME_DOLPHIN_PROCESS_NAME` environment variable can be used alternatively. Fixes aldelaro5#42.
8a84dd2
to
6de1975
Compare
I've made the tweak so that, on Windows, the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested with
-d test
and
-d test.exe
Both work as expected.
Used to override the name of the Dolphin Emulator process that the DME will search for in the system while trying to hook.
The short version of the option is
-d
.The [undocumented]
DME_DOLPHIN_PROCESS_NAME
environment variable canbe used alternatively.
Fixes #42.
This work also enables the
--version
and--help
command-line arguments.Bonus: Trailing spaces, as well as
\r
characters, have been removed.