Client
Fixed: Security vulnerability caused by allowing non http/https URL schemes in public server list (#4733)
Server
Fixed: Exit status for actions like --version or --supw was always set to non-zero ( #3998)
General
Fixed: Packet loss & audio artifacts caused by OCB2 XEX* mitigation (#4720)
Fixed: Chatbox invisble (zero height) (#4388)
Fixed: Handling of invalid packet sizes (#4394)
Fixed: Race-condition leading to loss of shortcuts (#4430)
Fixed: Link in About dialog is now clickable again (#4454)
Fixed: Sizing issues in ACL-Editor (#4455)
Two patches seem to have no effect: the first one fixes a C++ issue I
do not see on amd64 when building without it, the second one supposedly
fixes translation files, but without it I can switch between languages
just fine.
Both patches are there since import on 2014 and I they probably used to
be relevant for older Mumble versions, but not so much today anymore.
This "remove broken files" patch disables theme files such as
"Mumble/OSX Dark.qss" which break the build with BSD make(1), which chokes
on whitespaces in file names (even when escaped with backslashes).
GNU make can cope with escaped whitespaces, everything builds fine with
gmake(1). Since we are not OS X, these theme files are not installed
anyway, so no PLIST change.
Remove the patch and set USE_GMAKE; reason for this is that Mumble no
longer errors out silently at runtime due to the patched file and disables
the "Dark" style as a consequence (seen in developer console):
<W> ... Style "Dark" of theme "Mumble" references invalid qss \
":themes/Mumble/OSX Dark.qss" for platform "MAC" , skipping theme
<W> ... Could not find configured theme "Mumble"
<W> ... Applying fallback style sheet
With this commit, Mumble shows no warnings and allows me to use the "Dark"
style:
<W> ... Theme: "Mumble"
<W> ... Style: "Dark"
<W> ... --> qss: ":themes/Mumble/Dark.qss"
Doing so is correct, but the patched code is under "linux* { ... }" in the
qmake file and therefore does not effect our build at all.
The resulting Makefile did not change after removing this patch, everything
built and linked fine as exepcted.
Simple MULTI_PACKAGES addition, no FLAVOR.
Diff from Thomas L. - thanks!
Tweaks and tests from me
"pkg_add murmur && rcctl start murmurd" just works on amd64 and sparc64
Previous releases presumable required an external CELT port,
but Mumble 1.3.0 builds fine with its bundled version, so
use it and stop patching around it to use our own outdated
CELT 0.7 API port.
Builds and runs fine without celt installed on amd64.
OK sthen
Mumble 1.3.0 can't connect to some older servers, it will complain that the
server is using old crypto. For your security, update your servers.
Tweaks, test and ok solene@