diff --git a/Building/Linux/mkDebian9.sh b/Building/Linux/mkDebian9.sh index e1a03b5d..83859194 100755 --- a/Building/Linux/mkDebian9.sh +++ b/Building/Linux/mkDebian9.sh @@ -1,18 +1,22 @@ #! /bin/bash -# First parameter is version number - (ex: 1.0.0) -# Second parametr is build or release status - (ex: test, beta, or release) -# Third parameter is optional +# First parameter is optional # -if [ -z "$1" ]; then - echo "1st parameter must be the version number (x.y.z)" - exit +ITERATION=$1 +if [ -z ${ITERATION} ]; then + ITERATION="1" fi -if [ "$2" != "test" ] && [ "$2" != "beta" ] && [ "$2" != "release" ]; then - echo "2nd parameter must be 'test' or 'beta' or 'release'." - exit +SRC=/home/$USER/OSCAR/OSCAR-code/oscar + +VERSION=`awk '/#define VERSION / { gsub(/"/, "", $3); print $3 }' ${SRC}/VERSION` +if [[ ${VERSION} == *-* ]]; then + # Use ~ for prerelease information so that it sorts correctly compared to release + # versions. See https://www.debian.org/doc/debian-policy/ch-controlfields.html#version + IFS="-" read -r VERSION PRERELEASE <<< ${VERSION} + VERSION="${VERSION}~${PRERELEASE}" fi +GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h` # application name appli_name="OSCAR" @@ -20,18 +24,13 @@ pre_inst="tst_user.sh" post_inst="ln_usrbin.sh" pre_rem="rm_usrbin.sh" post_rem="clean_rm.sh" -iter="" # build folder (absolute path is better) build_folder="/home/$USER/OSCAR/build" -if [ "$2" != "release" ]; then +if [ -n ${PRERELEASE} ]; then appli_name=${appli_name}-test post_inst="ln_usrbin-test.sh" pre_rem="rm_usrbin-test.sh" post_rem="clean_rm-test.sh" - iter="$2" -fi -if [ -n "$3" ]; then - iter="$iter"~"$3" fi # temporary folder (absolute path is better) @@ -47,7 +46,7 @@ if [ "$archi_tmp" = "x86_64" ];then else archi="unknown" fi -deb_file="${appli_name}_$1-$2_$archi.deb" +deb_file="${appli_name}_${VERSION}-${ITERATION}_$archi.deb" # if deb file exists, fatal error if [ -f "./$deb_file" ]; then @@ -104,7 +103,7 @@ changelog_file="$share_doc_folder/changelog" # it seems that it needs both of them... # creation of the changelog.Debian.gz -echo "$appli_name ($1-$2) whatever; urgency=medium" > $changelog_file +echo "$appli_name (${VERSION}-${ITERATION}) whatever; urgency=medium" > $changelog_file echo "" >> $changelog_file echo " * Package created with FPM." >> $changelog_file echo "" >> $changelog_file @@ -124,10 +123,10 @@ fpm --input-type dir --output-type deb \ --after-install ${post_inst} \ --before-remove ${pre_rem} \ --after-remove ${post_rem} \ - --name ${appli_name} --version $1 --iteration $iter \ + --name ${appli_name} --version ${VERSION} --iteration ${ITERATION} \ --category misc \ --deb-priority optional \ - --maintainer " -- oscar-team.org " \ + --maintainer " -- oscar-team.org " \ --license GPL-v3 \ --vendor oscar-team.org \ --description "$description" \ diff --git a/Building/Linux/mkUbuntu.sh b/Building/Linux/mkUbuntu.sh index c93a0fb5..e96e5276 100755 --- a/Building/Linux/mkUbuntu.sh +++ b/Building/Linux/mkUbuntu.sh @@ -1,18 +1,22 @@ #! /bin/bash -# First parameter is version number - (ex: 1.0.0) -# Second parametr is build or release status - (ex: test, beta, or release) -# Third parameter is optional +# First parameter is optional # -if [ -z "$1" ]; then - echo "1st parameter must be the version number (x.y.z)" - exit +ITERATION=$1 +if [ -z ${ITERATION} ]; then + ITERATION="1" fi -if [ "$2" != "test" ] && [ "$2" != "beta" ] && [ "$2" != "release" ]; then - echo "2nd parameter must be 'test' or 'beta' or 'release'." - exit +SRC=/home/$USER/OSCAR/OSCAR-code/oscar + +VERSION=`awk '/#define VERSION / { gsub(/"/, "", $3); print $3 }' ${SRC}/VERSION` +if [[ ${VERSION} == *-* ]]; then + # Use ~ for prerelease information so that it sorts correctly compared to release + # versions. See https://www.debian.org/doc/debian-policy/ch-controlfields.html#version + IFS="-" read -r VERSION PRERELEASE <<< ${VERSION} + VERSION="${VERSION}~${PRERELEASE}" fi +GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h` # application name appli_name="OSCAR" @@ -20,19 +24,15 @@ pre_inst="tst_user.sh" post_inst="ln_usrbin.sh" pre_rem="rm_usrbin.sh" post_rem="clean_rm.sh" -iter="" # build folder (absolute path is better) build_folder="/home/$USER/OSCAR/build" -if [ "$2" != "release" ]; then +if [ -n ${PRERELEASE} ]; then appli_name=${appli_name}-test post_inst="ln_usrbin-test.sh" pre_rem="rm_usrbin-test.sh" post_rem="clean_rm-test.sh" - iter="$2" -fi -if [ -n "$3" ]; then - iter="$iter"~"$3" fi + # temporary folder (absolute path is better) temp_folder="/home/$USER/tmp_Ubu_${appli_name}/" @@ -46,7 +46,7 @@ if [ "$archi_tmp" = "x86_64" ];then else archi="unknown" fi -deb_file="${appli_name}_$1-$2_$archi.deb" +deb_file="${appli_name}_${VERSION}-${ITERATION}_$archi.deb" # if deb file exists, fatal error if [ -f "./$deb_file" ]; then @@ -103,7 +103,7 @@ changelog_file="$share_doc_folder/changelog" # it seems that it needs both of them... # creation of the changelog.Debian.gz -echo "$appli_name ($1-$2) whatever; urgency=medium" > $changelog_file +echo "$appli_name (${VERSION}-${ITERATION}) whatever; urgency=medium" > $changelog_file echo "" >> $changelog_file echo " * Package created with FPM." >> $changelog_file echo "" >> $changelog_file @@ -123,7 +123,7 @@ fpm --input-type dir --output-type deb \ --after-install ${post_inst} \ --before-remove ${pre_rem} \ --after-remove ${post_rem} \ - --name ${appli_name} --version $1 --iteration $iter \ + --name ${appli_name} --version ${VERSION} --iteration ${ITERATION} \ --category misc \ --deb-priority optional \ --maintainer " -- oscar-team.org " \ diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index 457744e9..1245d76b 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -732,7 +732,7 @@ void initializeStrings() // STR_TR_SAI = QObject::tr("SAI"); // Short form of SleepAwake Index STR_TR_REI = QObject::tr("REI"); // Short form of RERA Index STR_TR_EPI = QObject::tr("EPI"); // Short form of Expiratory Puff Index - STR_TR_CSR = QObject::tr("ÇSR"); // Short form of Cheyne Stokes Respiration + STR_TR_CSR = QObject::tr("CSR"); // Short form of Cheyne Stokes Respiration STR_TR_PB = QObject::tr("PB"); // Short form of Periodic Breathing diff --git a/oscar/VERSION b/oscar/VERSION index 3ea534e3..3b76319b 100644 --- a/oscar/VERSION +++ b/oscar/VERSION @@ -1,4 +1,4 @@ // Update the string below to set OSCAR's version and release status. // See https://semver.org/spec/v2.0.0.html for details on format. -#define VERSION "1.1.0-beta-1" +#define VERSION "1.1.0-beta-2" diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index eee6e3aa..c7ce28a8 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -1497,7 +1497,7 @@ QString Statistics::UpdateRecordsBox() ///////////////////////////////////////////////////////////////////////////////////// - /// ÇSR Records + /// CSR Records ///////////////////////////////////////////////////////////////////////////////////// cnt = 0;