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
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-11-28 20:52:17 +0300
committerRobert Adam <dev@robert-adam.de>2021-11-28 22:12:06 +0300
commit6fdc8affc2c91c759f85a4b0653bd36aee5f6e69 (patch)
tree4264602fadc6a8f200270742d43ec10ab8a1fdc0 /CMakeLists.txt
parentcd8ae5f71d052fd21086e9d9e0cf9697c68f964c (diff)
BUILD: Use build number instead of patch version
Using a four-segment version (major.minor.patch.build) is causing issues on Windows, because it tends to ignore the fourth version number in most cases. This can cause upgrades to fail and/or multiple entries being created in the installed applications list. For this reason, this commit changes the version format to be major.minor.build. Fixes #4921
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8ee589687..ea7a64f00 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,7 +26,7 @@ endif()
string(TIMESTAMP MUMBLE_BUILD_YEAR "%Y")
project(Mumble
- VERSION "1.5.0.${BUILD_NUMBER}"
+ VERSION "1.5.${BUILD_NUMBER}"
DESCRIPTION "Open source, low-latency, high quality voice chat."
HOMEPAGE_URL "https://www.mumble.info"
LANGUAGES "C" "CXX"