mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
MAINT: Replace trivial occurences of net.sourceforge.mumble
This does not touch DBus on purpose, as it requires more research. It might be that we can not trivially change the DBus ident without breaking stuff for users. See #6963
This commit is contained in:
parent
b791fa491a
commit
44cac7af70
@ -103,7 +103,7 @@ PulseAudioSystem::PulseAudioSystem() {
|
||||
|
||||
pa_proplist *proplist = m_pulseAudio.proplist_new();
|
||||
m_pulseAudio.proplist_sets(proplist, PA_PROP_APPLICATION_NAME, "Mumble");
|
||||
m_pulseAudio.proplist_sets(proplist, PA_PROP_APPLICATION_ID, "net.sourceforge.mumble.mumble");
|
||||
m_pulseAudio.proplist_sets(proplist, PA_PROP_APPLICATION_ID, "info.mumble.mumble");
|
||||
m_pulseAudio.proplist_sets(proplist, PA_PROP_APPLICATION_ICON_NAME, "mumble");
|
||||
m_pulseAudio.proplist_sets(proplist, PA_PROP_MEDIA_ROLE, "game");
|
||||
|
||||
|
||||
@ -394,7 +394,7 @@ int main(int argc, char **argv) {
|
||||
MumbleApplication a(argc, argv);
|
||||
a.setApplicationName(QLatin1String("Mumble"));
|
||||
a.setOrganizationName(QLatin1String("Mumble"));
|
||||
a.setOrganizationDomain(QLatin1String("mumble.sourceforge.net"));
|
||||
a.setOrganizationDomain(QLatin1String("mumble.info"));
|
||||
a.setQuitOnLastWindowClosed(false);
|
||||
|
||||
a.setDesktopFileName("info.mumble.Mumble");
|
||||
|
||||
@ -251,8 +251,9 @@ void os_init() {
|
||||
#endif
|
||||
|
||||
Global::get().qdBasePath.mkpath(QLatin1String("Snapshots"));
|
||||
if (bIsWin7)
|
||||
SetCurrentProcessExplicitAppUserModelID(L"net.sourceforge.mumble.Mumble");
|
||||
if (bIsWin7) {
|
||||
SetCurrentProcessExplicitAppUserModelID(L"info.mumble.Mumble");
|
||||
}
|
||||
}
|
||||
|
||||
DWORD WinVerifySslCert(const QByteArray &cert) {
|
||||
|
||||
@ -365,7 +365,7 @@ int main(int argc, char **argv) {
|
||||
#endif
|
||||
a.setApplicationName("Murmur");
|
||||
a.setOrganizationName("Mumble");
|
||||
a.setOrganizationDomain("mumble.sourceforge.net");
|
||||
a.setOrganizationDomain("mumble.info");
|
||||
|
||||
// Initialize meta parameter
|
||||
Meta::mp = std::make_unique< MetaParams >();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user