mirror of
https://github.com/mumble-voip/mumble.git
synced 2026-03-03 00:46:56 -05:00
Get rid of net.sourceforge.mumble.Mumble references #3057
Labels
No labels
GlobalShortcuts
Hacktoberfest
accessibility
acl
asio
audio
bonjour
bsd
bug
build
certificate
ci
client
code
documentation
external-bug
feature-request
gRPC
github
good first issue
help wanted
help-needed
ice
installer
linux
macOS
needs-ckeck-with-latest-version
needs-more-input
overlay
positional audio
priority/P0 - Blocker
priority/P1 - Critical
priority/P2 - Important
priority/P3 - Somewhat important
priority/P4 - Low
public-server-registration
qt
recording
release-management
server
stale-no-response
stale-support
support
task
test
theme
translation
triage
ui
windows
wontfix
x64
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/mumble-mumble-voip#3057
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Krzmbrzl on GitHub (Oct 23, 2025).
Description
There are still a couple of places in which we use the old
net.sourceforge.mumble.Mumbledomain. This seems incorrect. Instead, it should beinfo.mumble.Mumble.Steps to reproduce
See https://github.com/search?q=repo%3Amumble-voip%2Fmumble+sourceforge+language%3AC%2B%2B&type=code
Mumble version
No response
Mumble component
Both
OS
Linux
Reproducible?
Yes
Additional information
Especially for the DBus interface, one would have to check whether this affects donwstream users. I believe that it probably does as they use the domain as kind of a namespace. In this case, we should probably keep the old domain as-is but also provide an interface under the new domain. Maybe there even exists a way to deprecate the old namespace.
Relevant log output
Screenshots
No response
@davidebeatrici commented on GitHub (Oct 23, 2025):
I was aware of
net.sourceforge.mumble.Mumblestill being used in some places, but I never fixed that because I'm not convinced about the new domain.info.mumble.Mumbleis definitely better and also shorter to write, butinfois kind of misleading. What about usingsoftware.mumble.Mumblesince we also own themumble.softwaredomain?@Krzmbrzl commented on GitHub (Oct 23, 2025):
No, we should use the domain that we also use for our website. Anything else seems weird to me.
@davidebeatrici commented on GitHub (Oct 23, 2025):
That would be for consistency, but the
.infoTLD is kind of weird for a chat application...@Krzmbrzl commented on GitHub (Oct 23, 2025):
I don't see anything weird with it 🤷
@Praveenabi commented on GitHub (Jan 6, 2026):
Hi, I would like to contribute on this issue.
@Krzmbrzl commented on GitHub (Jan 7, 2026):
@Praveenabi that'd be great. By now, only the DBus interface remains and as written in the original post, we'll want to remain backwards compatible. Hence, the way to go with this would be to additionally provide the DBus interface on
info.mumble.…