Some work about adaptive color scheme for Web UI (PR #19901) http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
681 B

PROJECT_NAME = qbittorrent
# Define version numbers here
VER_MAJOR = 3
VER_MINOR = 4
VER_BUGFIX = 0
VER_BUILD = 0
VER_STATUS = alpha # Should be empty for stable releases!
# Don't touch the rest part
PROJECT_VERSION = $${VER_MAJOR}.$${VER_MINOR}.$${VER_BUGFIX}
!equals(VER_BUILD, 0) {
PROJECT_VERSION = $${PROJECT_VERSION}.$${VER_BUILD}
}
PROJECT_VERSION = $${PROJECT_VERSION}$${VER_STATUS}
DEFINES += VERSION_MAJOR=$${VER_MAJOR}
DEFINES += VERSION_MINOR=$${VER_MINOR}
DEFINES += VERSION_BUGFIX=$${VER_BUGFIX}
DEFINES += VERSION_BUILD=$${VER_BUILD}
os2 {
13 years ago
DEFINES += VERSION=\'\"v$${PROJECT_VERSION}\"\'
} else {
13 years ago
DEFINES += VERSION=\\\"v$${PROJECT_VERSION}\\\"
}