-
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.
Fix bug rejecting packets with 100% humidity.
An error in all previous versions of aprs-weather-submit prevented the creation of packets with 100% relative humidity. This off-by-one error has been corrected, and I am making this a whole new version. Thank you to Jeffrey McPike, N9CQS, for the bug report submitted via email.
- Loading branch information
1 parent
cb0be8d
commit 9880993
Showing
8 changed files
with
27 additions
and
15 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,13 +1,21 @@ | ||
# aprs-weather-submit news | ||
|
||
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. | ||
This file details all of the user-facing changes that are in versions 1.7 of aprs-weather-submit. For more details, please consult the CHANGELOG file or this project's GitHub page. | ||
|
||
## CUSTOM ICONS | ||
## Custom Icons | ||
|
||
The new `--icon` parameter lets you specify a character from the two symbol tables. If not specified, you will get the classic weather icon. | ||
|
||
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. | ||
|
||
## ARMHF FIXES | ||
## `armhf` Fixes | ||
|
||
Version 1.7 did not compile on the armhf platforms. Version 1.7.1 is fixed. | ||
|
||
## It's not the heat, it's the humidity! | ||
|
||
Before version 1.7.2, one could not create an APRS packet with 100% relative humidity due to a bug in the code that only allowed values from 1% to 99%. This was corrected in version 1.7.2 thanks to a report from Jeff, N9CQS. | ||
|
||
## Can this app be in Debian, please? | ||
|
||
I've also been making behind-the-scenes improvements to how this app is packaged and installed. Users of Debian-based Linux distributions can enjoy nearly-effortless installation, upgrades, and removals. |
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,5 +1,6 @@ | ||
aprs-weather-submit (1.7.1-2) UNRELEASED; urgency=medium | ||
aprs-weather-submit (1.7.2-1) UNRELEASED; urgency=medium | ||
|
||
* Fixed a compile-time error on armhf platforms. | ||
* Fixed a bug that prevented creating APRS packets with 100% relative | ||
humidity. (Thanks to Jeff, N9CQS, for the report.) | ||
|
||
-- Colin Cogle <[email protected]> Thu, 30 Nov 2023 01:32:00 -0500 | ||
-- Colin Cogle <[email protected]> Mon, 23 Sep 2024 09:09:09 -0400 |
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,5 @@ | ||
AUTHORS | ||
CHANGELOG.md | ||
CODE_OF_CONDUCT.md | ||
LICENSE | ||
NEWS.md | ||
README.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,3 +1,3 @@ | ||
aprs-weather-submit-dbgsym_1.7-1.1_amd64.ddeb debug optional automatic=yes | ||
aprs-weather-submit_1.7.1-1_amd64.buildinfo hamradio optional | ||
aprs-weather-submit_1.7.1-1_amd64.deb hamradio optional | ||
aprs-weather-submit-dbgsym_1.7-2.1_amd64.ddeb debug optional automatic=yes | ||
aprs-weather-submit_1.7.2-1_amd64.buildinfo hamradio optional | ||
aprs-weather-submit_1.7.2-1_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