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
FEAT(client): Allow specifying config file via commandline switch #4369
Conversation
I'd like to add some documentation for this to the man page. Since there are already a lot of other commandline arguments that are not documented in the man page, I thought this would be another PR. Or is there a reason why they are not mentioned in the man page? |
We have a man-page? Updating the man page does indeed sound like a good candidate for another PR |
I made all the changes you requested. |
This adds the switch -c/--config to the mumble client. If -c is followed by a filename, this file will be read instead of the standard config. A new config option database= has been added to the 'General' section of the ini file. This can be used to specify a different database which is necessary to run multiple completely separate Mumble instances at the same time. Additionaly the (undocumented) function to merge another ini file by providing it as a parameter has been removed as it was conflicting with the added functionality. FIXES #3953
Updating 'mumble_en.ts'... Found 1891 source text(s) (4 new and 1887 already existing) Removed 2 obsolete entries
Thank you for your work! :) |
is this in 1.3.3? |
No. As this is a new feature, it will not get backported. That means that it'll be part of 1.4.0 |
This adds the switch -c/--config to the mumble client. If -c is followed by a filename, this file will be read instead of the standard config.
A new config option
database=
has been added to the 'General' section of the ini file. This can be used to specify a different database which is necessary to run multiple completely separate Mumble instances at the same time.Additionaly the (undocumented) function to merge another ini file by providing it as a parameter has been removed as it was conflicting with the added functionality.
FIXES #3953