-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finally finished adding custom icon support (with the -i or --icon) flag. Note that APRS.fi doesn't seem to handle weather packets that have a custom icon; it doesn't parse the weather data. That is a limitation of their site, though.
- Loading branch information
1 parent
341add6
commit d9a3c8f
Showing
12 changed files
with
38 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,9 @@ | ||
# aprs-weather-submit news | ||
|
||
This file details all of the user-facing changes that are in versions 1.6 of aprs-weather-submit. For more details, please consult the CHANGELOG file or this project's GitHub page. | ||
This file details all of the user-facing changes that are in version 1.7 of aprs-weather-submit. For more details, please consult the CHANGELOG file or this project's GitHub page. | ||
|
||
## DOS SUPPORT? | ||
## CUSTOM ICONS | ||
|
||
I have preliminary support for compiling this app on FreeDOS, MS-DOS, and other DOS-compatible systems. Use the `make-dos.bat` file to build the app and create a file, `APRSWX.EXE`. Note that APRS-IS support will be unavailable. | ||
The new `--icon` parameter lets you specify a character from the two symbol tables. If not specified, you will get the classic weather icon. | ||
|
||
This does not currently work. OpenWatcom has an implementation of `getopt()` that is required, but due to licensing differences, I cannot distribute it with this app. I'm working on finding a replacemnet. | ||
|
||
## CUSTOM COMMENTS | ||
|
||
Custom comments can now be included with the `--comment` option. | ||
|
||
## GOT ME A RAYGUN, GOT ME AN ALTITUDE | ||
|
||
The short version of the `--altitude` parameter (`-A`) was not being detected. This bug has been corrected. | ||
|
||
## TWO MINUTES TO MIDNIGHT | ||
|
||
For latitudes and longitudes between ±0.1 (e.g., 40.00 to 40.1666), the "minutes" calculation would evaluate to less than ten. This would result in a missing digit and invalid uncompressed positions. This has been fixed thanks to [ploeffler](https://github.com/ploeffler)'s bug report. | ||
|
||
----- | ||
For information about older versions, consult the CHANGELOG.md files. | ||
Note that APRS.fi does not support parsing weather data from packets that have custom icons. If this is important to you, do not use this new feature. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
AUTHORS | ||
CHANGELOG.md | ||
CODE_OF_CONDUCT.md | ||
INSTALL.md | ||
NEWS.md | ||
README.md | ||
SECURITY.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,9 @@ | ||
aprs-weather-submit (1.6-4) unstable; urgency=medium | ||
aprs-weather-submit (1.7-2) jammy; urgency=medium | ||
|
||
* Custom comments can be added to packets! Use --comment` to add your own | ||
notes to a packet. | ||
* When not using custom comments, the "X" in the comment field is removed. | ||
APRS packets rarely, if ever, use the operating system identifier these days, | ||
so there is no need to prefix the user agent or comment with it. | ||
* Fixed GitHub issue #9: minute values less than ten would result in invalid | ||
uncompressed positions. (Thank you, ploeffler!) | ||
* Fixed a bug where the --altitude parameter was not being detected in its | ||
short form (-A). | ||
* Fixed GitHub issue #6 (for real this time): Worked around a bug with APRS.fi | ||
where their site would reject packets with the temperature listed before the | ||
wind gust speeds. This was not a bug in this app. Thank you, PD9MWO! | ||
* Fixed GitHub issue #4 where GCC 8.1 would emit spurious warnings. This was | ||
fixed by replacing calls to strncat() with strcat(). Thank you for the report | ||
and the pull request, KR4DIO! | ||
* Removed dependency on <assert.h>. | ||
* The icon can now be changed from the default (WX) icon using the new | ||
`--icon` option. | ||
* Output of `snprintf()` is now better checked to make sure we haven't | ||
overflowed our buffer. | ||
* Fixed a compile-time error on armhf platforms. | ||
|
||
-- Colin Cogle <colin@colincogle.name> Wed, 26 Oct 2022 22:53:17 -0400 | ||
-- Colin Cogle <colin@colincogle.name> Thu, 30 Nov 2023 00:32:00 -0500 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
aprs-weather-submit-dbgsym_1.6-1_amd64.ddeb debug optional automatic=yes | ||
aprs-weather-submit_1.6-1_amd64.buildinfo hamradio optional | ||
aprs-weather-submit_1.6-1_amd64.deb hamradio optional | ||
aprs-weather-submit-dbgsym_1.7-2_amd64.ddeb debug optional automatic=yes | ||
aprs-weather-submit_1.7-2_amd64.buildinfo hamradio optional | ||
aprs-weather-submit_1.7-2_amd64.deb hamradio optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters