fixed adding hash to application title.

This commit is contained in:
dsm 2024-09-04 17:07:47 +03:00
parent e3bad51a94
commit 6f48ed92e8
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,6 @@ SET(QUCS_NAME "qucs-s")
# use top VERSION file
file (STRINGS ${PROJECT_SOURCE_DIR}/../VERSION QUCS_VERSION)
message(STATUS "Configuring ${PROJECT_NAME} (GUI): VERSION ${QUCS_VERSION}")
if(DEFINED CI_VERSION)
set(PROJECT_VERSION "${CI_VERSION}")
@ -14,6 +13,8 @@ else()
set(PROJECT_VERSION "${QUCS_VERSION}")
endif()
message(STATUS "Configuring ${PROJECT_NAME} (GUI): VERSION ${PROJECT_VERSION}")
set(PROJECT_VENDOR "Qucs team. This program is licensed under the GNU GPL")
set(PROJECT_COPYRIGHT_YEAR "2014")
set(PROJECT_DOMAIN_FIRST "qucs")

View File

@ -45,7 +45,7 @@ QString misc::getWindowTitle()
if (title.endsWith(".0")) {
title.chop(2);
}
#if defined(GIT) && defined(CI_VERSION)
#if defined(GIT)
if (title.endsWith(".99")) {
QString hash = GIT;
if (!hash.isEmpty()) {