Skip to content

Commit

Permalink
Fix issue 78
Browse files Browse the repository at this point in the history
jmMeessen committed Mar 15, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent ad8b7f9 commit 7ef81e7
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions doc/whats_new.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# What's new?

## v0.1.4
## v0.1.5

* Support POTA DIF output
* Fix "S2S contacts not recognized properly" (issue #78)


## Previous releases

### v0.1.4

* Support POTA ADIF output
* Tabs can be used as delimiter in the header section (issue #70)
* Frequency can now be specified up to 500Hz without truncation (issue #71)
* Enabled Homebrew distribution



## Previous releases

### v0.1.3

* Enable FLEcli to generate CSV chaser logs
4 changes: 2 additions & 2 deletions fleprocess/parse_line.go
Original file line number Diff line number Diff line change
@@ -205,10 +205,10 @@ func ParseLine(inputStr string, previousLine LogLine) (logLine LogLine, errorMsg
}

// Is it a call sign ?
//FIXME: (don't remember what)
if validCallRegexp.MatchString(strings.ToUpper(element)) {
//If it starts with "#",it is a grid definition and not a call
if element[0] != '#' {
//If the potential callsign contains a dash, it is a Sota reference
if (element[0] != '#') && (!strings.Contains(element, "-")) {
callErrorMsg := ""
logLine.Call, callErrorMsg = ValidateCall(element)
errorMsg = errorMsg + callErrorMsg

0 comments on commit 7ef81e7

Please sign in to comment.