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
AgeCommit message (Collapse)Author
2021-02-27MAINT: Ignore pycache filesRobert Adam
2021-02-26MAINT: Added VSCode's .devcontainer directory to .gitignore for when ↵KetchupBomb
developing in a remote container. VSCode's Remote Container feature allows developers to spin up a container of their choosing to develop in. To facilitate ease of use, VSCode writes files to track the Dockerfile which generates the container, as well as config for how VSCode should handle the created container. Some projects suggest to include these files, as it helps all developers have a consistent development experience, but I'll leave that topic for a future debate and instead only suggest to incorporate the ignoring of this data for now.
2020-11-16MAINT: Ignore compile commands DBRobert Adam
2020-09-11MAINT: Ignore build directoryRobert
2018-12-31Update gitignoreKevin Zheng
2017-11-13Ignore "target_wrapper.sh", ".directory" and all files with ".Debug" and ↵Davide Beatrici
".Release" extensions
2017-04-08Add new path for winpaths_custom.pri (in qmake/) to gitignore.Mikkel Krautz
2017-02-28.gitignore: add target_wrapper.bat.Mikkel Krautz
This adds Qt's auto-generated test-runner-wrapper target_wrapper.bat to gitignore.
2017-02-25.gitignore: make xxx_plugin_import.cpp a glob entry.Mikkel Krautz
The _plugin_import.cpp files are auto-generated by the Qt build process for importing plugins. To avoid listing every present plugin_import.cpp file, and to avoid having to update .gitignore every time we add a new target, we change the existings to a glob, *_plugin_import.cpp.
2016-11-25.gitignore: add mocinclude.opt.Mikkel Krautz
Qt generates this file when I build on Windows with the latest win64-static-no-ltcg buildenv. Let's add it to gitignore.
2016-07-16g15helper: add Qt-based G15 emulator, for debugging.Mikkel Krautz
2016-05-09.gitignore: add .DS_Store.Mikkel Krautz
How was it not there to begin with?
2016-05-09remove non-existent file from .gitignoreTim Cooper
2016-05-08grpc: do not include generated proto wrapperTim Cooper
2016-05-08grpc: integrate murmur_grpc_wrapper_gen into qmake buildTim Cooper
2016-05-08grpc: move grpc-specific ini options to separate fileTim Cooper
2016-05-08grpc: add protoc-gen-grpcwrapper.cppTim Cooper
2015-11-28overlay: split the shaders in overlay.fx out into separate HLSL files.Mikkel Krautz
We want to get rid of our bundled Effects11 library, as well as our dependency the D3DCompiler DLLs (which Effects11 pulls in). This is the first step.
2015-11-15Update .gitignore to point to the new location of Ice-generated files.Mikkel Krautz
2015-10-17Auto-generate qrc file for embedded Qt translations when running qmake.Mikkel Krautz
This change removes our qmake-based Qt translation embedding. That system uses mumble_qt.qrc resource file with hardcoded filenames for Qt translations, and some logic implemented in qmake that copies Qt translations into the Mumble source tree such that the paths in the mumble_qt.qrc file match. The new system introduces a simple Python script that takes an output filename for the .qrc file the tool will write, along with a set of directories containing Qt translations. The tool will generate a Qt resource file containing references to all the translation files found in the specified directories. However, the tool takes care to only include language files once. In typical use, the first directory parameter passed to the tool is the QT_INSTALL_TRANSLATIONS directory, which is where Qt stores its own translation files. The second directory is Mumble's fallback directory. The tool then goes through all files in the first directory, and notes down which languages have been processed. Multiple files for a single langauge can be included from the a directory (qt_help_da.qm, and qtbase_da.qm), but once a language has been added from one directory, it will not be added if found in the next one in line. We use this to include a set of 'fallback' translations for versions of Qt that do not include them. This also allows this new style of Qt translation embedding to be forward compatible with newer versions of Qt that add new translations. Once Qt includes a translation that we have in our fallback directory, the Qt translation is used instead.
2015-07-04Suppress protobuf warnings in unix buildsStefan Hacker
The protobuf code creates lots of spurious warnings throughout our compile which we can do nothing about. This patch changes the way we integrate the generated code in our build to work around this. We now run protoc and generated code compilation as a seperate mumble_proto target producing a static lib. This lib is then linked by mumble and murmur. The folder of this module is added to the include paths so Mumble.pb.h is available. On Unix platforms a -isystem entry is added for the directory. The advantages of this approach is that we can disable warnings for the compilation of this target like we do for 3rd party modules. Additionally we no longer generate and compile the protobuf files twice.
2015-05-16Ignore VS *.aps filesKissaki
* aps files are temporary resource files used within VS for *.h + *.rc resource files
2015-04-22Build two separate Windows overlays - one for x86 and one for x86_64.Mikkel Krautz
This splits fx11 into an x86 variant and an x64 variant. This creates effects11_x86.lib and effects11_x64.lib, instead of the single effects11.lib we had previously. The minhook build is also tweaked. However, since minhook is only used on x86_64, it is only built for x86_64. Consequently, the library is still called minhook.lib. The overlay itself is split into mumble_ol.dll and mumble_ol.exe for x86, and mumble_ol_x64.dll and mumble_ol_x64.exe for x86_64.
2015-03-17Remove 'doc' directory in favour of ↵Tim Cooper
https://github.com/mumble-voip/mumble-protocol
2014-11-09Update .gitignore to ignore more of Qt 5's auto-generated plugin importer ↵Mikkel Krautz
.cpp files.
2014-07-26.gitignore: add .qmake.cache, .qmake.stash, and murmurd_plugin_import.cpp.Mikkel Krautz
2014-06-11Add doxygen output directory to .gitignoreTim Cooper
2013-06-29mumble: Qt 5 support for OS X.Mikkel Krautz
2012-12-18Add ini creation file for windows buildStefan Hacker
2012-05-16Add VS files to .gitignoreBenjamin Jemlich
2012-05-14Unify .gitignore filesBenjamin Jemlich
Modfied version of the original patch by Kissaki <kissaki@gmx.de>.
2010-06-14Add VS 2010 pdb files to .gitignoreBenjamin Jemlich
2009-03-23Bump version to 1.2.0Thorvald Natvig
2009-03-23Update gitignoreThorvald Natvig
2009-03-13Add speex as submoduleThorvald Natvig
2009-03-01Add .gitignore for win32Thorvald Natvig
2009-03-01Add .gitignore filesThorvald Natvig