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-01-06BUILD(versioning): Make use of the 4th part (build/tweak) of the versionDavide Beatrici
The build number can be specified through the new "BUILD_NUMBER" variable. This change is very important on Windows, for two reasons: - It allows to easily identify binaries simply by looking at their version. More specifically, we can guess what build they're part of. - Right now snapshots can not be updated without uninstalling first, because the version is the same (i.e. 1.4.0). By increasing the 4th digit of the version for every build we can solve the issue. This commit also takes care of renaming a few variables so that they're consistent and also clearer. For example, "version" is now "RELEASE_ID".
2020-09-02MAINT: Make use of cmake configure for versionRobert Adam
Instead of having to change the version number and the build year in all those files manually, we let cmake do the work by replacing the respective values in templates.
2020-09-02BUILD(qmake): RemoveRobert Adam
This commit removes all qmake-related build-files from the system. We have now migrated to cmake and are no longer maintaining qmake anyways and therefore there is no reason to keep it. Removing it also clearly states to any potential user/programmer that this project is no longer intended to be compiled with qmake. Given that the .pri files no longer exist, the mumble-version.py script had to be adapted to read the version from the CMakeLists.txt file instead. Furthermore a few of the submodules support cmake natively and therefore we no longer need the src/buid-directory approach in order to build them. The respective build dirs have been removed and the src-dirs have been renamed.
2020-01-07Update copyright years in .plist and .rc filesDavide Beatrici
2020-01-07Auto-update LICENSE.header in source filesDavide Beatrici
2019-09-22Bump version to 1.4.0Jan Klass
1.3.0 has been released. master now represents the current state of development towards the next feature release 1.4.0. Bugfixes for 1.3 will happen in the 1.3.x branch. Compared to earlier version bumps we bump a lot more files because of we produce more artifacts; overlay process, dll and exe split, etc. This should have happened right after the 1.3.x branch was split off.
2019-01-25Update copyright years in .plist and .rc filesDavide Beatrici
2019-01-25Auto-update LICENSE.header in source filesDavide Beatrici
2018-02-19overlay: set custom build directory in relation to the global onedavidebeatrici
2018-01-02Update copyright years in .plist and .rc files.Mikkel Krautz
2018-01-02Auto-update LICENSE.header in source files.Mikkel Krautz
2017-01-08Update tree copyrights to 2017.Mikkel Krautz
2016-05-10overlay_winx64: update to use LICENSE.header.Mikkel Krautz
2016-01-01Update the Copyright year range for The Mumble Developers throughout the tree.Mikkel Krautz
2015-12-27Update copyright strings in .rc and .plist files to refer to 'The Mumble ↵Mikkel Krautz
Developers'. Updates mumble-voip/mumble#1513
2015-05-16Rename overlay helpers to avoid PDB name clashes with DLLs.Mikkel Krautz
Right now, we do not get PDB files for our overlay DLLs because the overlay DLL PDB files share their name with the overlay helper PDB files. To avoid this madness, we rename the overlay helpers as follows: mumble_ol.exe -> mumble_ol_helper.exe mumble_ol_x64.exe -> mumble_ol_helper_x64.exe
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.