Skip to content

Commit

Permalink
Fix bug with suffixes not being added to packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Aug 19, 2022
1 parent 3afe409 commit 62f1e05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,9 @@ endif()
if(FreeDV_VERSION_TWEAK)
set(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}.${FreeDV_VERSION_TWEAK}")
endif()
if(FREEDV_VERSION_SUFFIX)
if(FREEDV_VERSION_TAG)
#set(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}-${FREEDV_VERSION_SUFFIX}")
set(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}-${FREEDV_VERSION_SUFFIX}-${DATE_RESULT}-${FREEDV_HASH}")
set(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}-${FREEDV_VERSION_TAG}-${DATE_RESULT}-${FREEDV_HASH}")
message(STATUS "package name = ${CPACK_PACKAGE_VERSION_PATCH}")
endif()

Expand Down

2 comments on commit 62f1e05

@Tam954
Copy link

@Tam954 Tam954 commented on 62f1e05 Aug 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could a per-selected channels be added similar to those found on http://qso.freedv.org/ I really enjoy this program, I've been recruiting other HAM's to work. (Icom IC-7300 user)

@tmiw
Copy link
Collaborator Author

@tmiw tmiw commented on 62f1e05 Aug 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As of now, the FreeDV application only retrieves the current frequency from the radio and does not attempt to change the radio's state (other than PTT). We would need to consider how best to do so if this turns out to be a feature heavily desired by users. Of course, pull requests are always welcome :)

Please sign in to comment.