Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-10-21Fix issues found in review of PR #1422Stefan Hacker
2014-10-19Fix Qt 5 transition bug making certificate wizard access out of bounds.Stefan Hacker
Unfortunate typo which made us access empty string instead of the guaranteed non-empty list we wanted to fill the string from.
2014-10-19Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 31 languages
2014-10-19Fix crash on Linux when trying to configure shortcuts.Bas Wijnen
Trying to set a push-to-talk key Xlib functions were called before the display and thus Xlib functions being initialized, leading to a crash concerning /dev/input. Debug output: #0 XKeycodeToKeysym (dpy=0x0, kc=50 '2', col=0) at ../../../src/xkb/XKBBind.c:111 This patch calls XOpenDisplay() earlier to avoid this. Fixes #1250
2014-10-16Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 28 languages
2014-10-11Fix recording timer not properly displaying in Qt 5 version of Mumble.Stefan Hacker
Apparently Qt 5 changed QTime's behavior with regards to invalidity. A default constructed QTime is midnight time and invalid. We added some milliseconds and converted to string. Both Qt 4 and 5 docs state that an invalid time will yield an empty string. In Qt 4 however our use did give us the time string we wanted instead of an empty string. This patch simply removes the use of the default constructor in favor of manually creating a valid midnight QTime to work with. Fixes #1426
2014-10-08Change Pulseaudio Role.Stefan Hacker
* Changes pulseaudio role from "phone" to "game" to prevent pulseaudio cork module from stopping peoples media players as soon as Mumble is running. * Original patch by crknadle Fixes #1069
2014-10-08Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 28 languages
2014-10-05Drop minimize functionality from tray icon.Stefan Hacker
Always just give focus to mumble when the tray icon is clicked instead of trying (and failing) to replicate task bar entry functionality. This is much more in line with how other programs use the tray icon.
2014-10-03Remove special case for allowing override on Qt 4 for windows.Stefan Hacker
Apparently I was a bit optimistic about Visual Studio 2010's override keyword standard compliance. It doesn't allow use on destructors when C++11 override does. Just remove it for non Qt5 builds.
2014-10-03Review and refactor of PBKDF2 support patch.Stefan Hacker
* Adjusted to coding guidelines * Pulled out PBKDF2 functionality into own class * Make benchmark a best of N approach with guaranteed minimum * Fixed broken database migration code. Don't try to alter tables and instead rely on them being re-created with the new fields. * Fixed some typos in ini. Also move to the setting to the end so ppl. don't get the idea they have to change this. * Chose a scarier name for the plain hash function * Use int instead of size_t for iteration counts as it is the datatype used in the OpenSSL API. Otherwise we just have to much pain with constantly converting and might expose ourselves to size issues in the future. * Moved new UserInfo enum entry to the end as to preserve the order
2014-10-03Add PBKDF2 support to Murmur.tkmorris
2014-10-01Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 28 languages
2014-09-26Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-25Restore old log timestamp format.Stefan Hacker
Qt changed the meaning of the format we were using for the timstamp. Switch back to Qt:TextFormat which always is HH:MM:SS Fixes #1332
2014-09-23Add poor man's padding to last column in connect dialog.Stefan Hacker
Adds a space after the content of the last column to prevent it being to close to the border of the treewidget. Unfortunately we cannot use QSS which would make this trivial as that would prevent users from customizing this value with their own styles. Also programmatic access to the size of an item to correct the hint is quite involved. The single space seems to be the best solution. Fixes #1331
2014-09-22Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-22Fix FTBFS regression from dd7cc7caa7257d2d1525daebbcc070cbb0983915qwestduck
AA_UseHighDpiPixmaps is an option developed in Qt5 and only recently backported to some Qt4 releases. When building against Qt 4.8.6, dd7cc7caa7257d2d1525daebbcc070cbb0983915 introduces a FTBFS regression. This conditional fixes the regression in all build environments that were tested but could have more tightened down values for QT_VERSION and OS_VERSION with more testing. There are bug reports that this flag will also not work on MACOSX 10.6 and lower, but this was not tested.
2014-09-21MainWindow: don't use custom flags for MinimalView - keep standard Close, ↵Mikkel Krautz
Minimize and Maximize buttons.
2014-09-21Fix murmur handling all groups starting with "sub" as special.Stefan Hacker
Now only detect "sub" without parameters or names starting with "sub," as those are "sub" with a parameter list. Fixes #1199
2014-09-21GlobalShortcut: remove margins on the Mac Event Tap warning's layout container.Mikkel Krautz
2014-09-21Make 'Close' the default for the AskOnQuit message box.Mikkel Krautz
2014-09-21Do not use non-standard tool window for minimal mode.Stefan Hacker
Based on PR #1393 which reported the non-standard tool window created issues with accessibility tools. This patch uses a slightly customized version of a normal window instead, only deactivating the maximize button. This should also remove the need for special casing for OSX.
2014-09-21GlobalShortcut: do not require expert mode for Mac event tap warning message ↵Mikkel Krautz
in GlobalShortcutConfig.
2014-09-21Improve the look of Mumble on Retina Display Macs.Mikkel Krautz
2014-09-21Add mumble_pch.hpp include to various .mm files.Mikkel Krautz
2014-09-21Update LICENSE fileStefan Hacker
Added Jamie to LICENSE file and updated active contributors I know of to 2014. Also moved one entry to have a earlier contribution start first order.
2014-09-20Translation updateStefan Hacker
Updating 'mumble_en.ts'... Found 1574 source text(s) (5 new and 1569 already existing) Removed 2 obsolete entries
2014-09-20Use enum type and constants instead of integer indices.Stefan Hacker
Self mute/deafen separation patch used documented integer array. Replaced by more readable and self-documenting array of enum.
2014-09-20Self muted/deafened message seperated into self muted, self unmuted, self ↵Markus S
deafened, self undeafened. Grants an audio feedback what mute/deaf-state is active. (global keys) Moved the new message-events to the back of the message-list to prevent old config files becoming imcompatible. Added an array that allows to choose the order of the messages in the settingsscreen
2014-09-20Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-20Special case the Unity desktop to also default to not minimize to trayStefan Hacker
2014-09-20Replace hacky hide/show handling with more straight-forward implementation.Stefan Hacker
Fixes #1336
2014-09-20Fix ServerView::mimeData not actually overriding base class function.Stefan Hacker
Fixes drag & drop behavior of ConnectDialog. Previously dragging an item out of the connect dialog didn't yield usable data. With the override working we get the URL as expected.
2014-09-20Fix hide in tray on windows.Stefan Hacker
Another override that did no longer apply after the Qt 5 transition. In this case winEvent which we overrode in Qt 4 was replaced with nativeEvent in Qt 5. Partially fixes #1336
2014-09-20Replace overlooked QT_VERSION_CHECKs with explicit version.Stefan Hacker
See 12eb26431f03f5ed3c634d647b1581572039112d .
2014-09-20Introduce use of Q_DECL_OVERRIDE and Q_DECL_FINAL into the codebase.Stefan Hacker
Edited header files and tried to mark all overriden methods with Q_DECL_OVERRIDE. Also added Q_DECL_FINAL in a few places where a non-virtual destructor was used in a class. Q_DECL_OVERRIDE/Q_DECL_FINAL were introduce with Qt 5.0. For earlier versions Q_DECL_FINAL is defined to nothing. Q_DECL_OVERRIDE is still available on windows as the override keyword was supported there since msvc 2010. All new code should make use of these macros as the bugs that occurred in the Qt 4 to 5 transition show they are needed.
2014-09-20Fix hide in tray default value for Windows 8.1Stefan Hacker
Fixes #1126
2014-09-20MainWindow: only trigger link tooltips of Mumble is the frontmost program.Mikkel Krautz
Fixes #1372
2014-09-14Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-13Fix Mumble build failing on OSX due to missing include.Stefan Hacker
2014-09-13Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-10Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-09Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-08Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-07Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-09-03Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-08-31Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-08-27Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages
2014-08-26Transifex translation updateMumbleTransifexBot
Mode: default Minimum percent translated: 0 Matched 24 languages