Skip to content

Commit 46f31d4

Browse files
committed
Use tocalls.yaml rather than tocalls.txt which is no longer maintained.
1 parent d679e06 commit 46f31d4

10 files changed

+2199
-653
lines changed

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
# Revision History #
33

44

5+
## Version 1.8 -- Development Version
6+
7+
### New Features: ###
8+
9+
- [http://www.aprs.org/aprs11/tocalls.txt](http://www.aprs.org/aprs11/tocalls.txt) has been abandoned since the end of 2021. [https://github.com/aprsorg/aprs-deviceid](https://github.com/aprsorg/aprs-deviceid) is now considered to be the authoritative source of truth for the vendor/model encoding.
10+
511
## Version 1.7 -- October 2023 ##
612

713

data/CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
# The destination field is often used to identify the manufacturer/model.
1818
# These are not hardcoded into Dire Wolf. Instead they are read from
19-
# a file called tocalls.txt at application start up time.
19+
# a file called tocalls.yaml at application start up time.
2020
#
2121
# The original permanent symbols are built in but the "new" symbols,
2222
# using overlays, are often updated. These are also read from files.
@@ -25,17 +25,17 @@
2525

2626
include(ExternalProject)
2727

28-
set(TOCALLS_TXT "tocalls.txt")
28+
set(TOCALLS_YAML "tocalls.yaml")
2929
set(SYMBOLS-NEW_TXT "symbols-new.txt")
3030
set(SYMBOLSX_TXT "symbolsX.txt")
3131
set(CUSTOM_BINARY_DATA_DIR "${CMAKE_BINARY_DIR}/data")
3232

3333
# we can also move to a separate cmake file and use file(download)
3434
# see conf/install_conf.cmake as example
35-
file(COPY "${CUSTOM_DATA_DIR}/${TOCALLS_TXT}" DESTINATION "${CUSTOM_BINARY_DATA_DIR}")
35+
file(COPY "${CUSTOM_DATA_DIR}/${TOCALLS_YAML}" DESTINATION "${CUSTOM_BINARY_DATA_DIR}")
3636
file(COPY "${CUSTOM_DATA_DIR}/${SYMBOLS-NEW_TXT}" DESTINATION "${CUSTOM_BINARY_DATA_DIR}")
3737
file(COPY "${CUSTOM_DATA_DIR}/${SYMBOLSX_TXT}" DESTINATION "${CUSTOM_BINARY_DATA_DIR}")
3838

39-
install(FILES "${CUSTOM_BINARY_DATA_DIR}/${TOCALLS_TXT}" DESTINATION ${INSTALL_DATA_DIR})
39+
install(FILES "${CUSTOM_BINARY_DATA_DIR}/${TOCALLS_YAML}" DESTINATION ${INSTALL_DATA_DIR})
4040
install(FILES "${CUSTOM_BINARY_DATA_DIR}/${SYMBOLS-NEW_TXT}" DESTINATION ${INSTALL_DATA_DIR})
4141
install(FILES "${CUSTOM_BINARY_DATA_DIR}/${SYMBOLSX_TXT}" DESTINATION ${INSTALL_DATA_DIR})

data/tocalls.txt

-326
This file was deleted.

0 commit comments

Comments
 (0)