Merge remote-tracking branch 'sm0svx/master' into DmrLogic
This commit is contained in:
commit
30a2638fd7
|
|
@ -142,6 +142,9 @@
|
|||
* The voter COMMAND_PTY now accept a new command MUTE that will keep the
|
||||
receiver active but block all content.
|
||||
|
||||
* Bugfix in ModuleMetarInfo: Gusts were not announced correctly in combination
|
||||
with mps
|
||||
|
||||
|
||||
|
||||
1.7.0 -- 01 Sep 2019
|
||||
|
|
|
|||
|
|
@ -2032,9 +2032,10 @@ bool ModuleMetarInfo::isWind(std::string &retval, std::string token)
|
|||
}
|
||||
|
||||
// do we have gusts?
|
||||
if (token.find("g",3) != string::npos)
|
||||
size_t found = token.find("g",3);
|
||||
if (found != string::npos)
|
||||
{
|
||||
ss << " " << token.substr(token.length()-4,2) << " " << unit;
|
||||
ss << " " << token.substr(found+1, 2) << " " << unit;
|
||||
}
|
||||
|
||||
retval = ss.str();
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ MODULE_PROPAGATION_MONITOR=1.0.1
|
|||
MODULE_TCL_VOICE_MAIL=1.0.2
|
||||
MODULE_SELCALLENC=1.0.0
|
||||
MODULE_DTMF_REPEATER=1.0.2
|
||||
MODULE_METAR_INFO=1.2.1.99.2
|
||||
MODULE_METAR_INFO=1.2.1.99.3
|
||||
MODULE_FRN=1.1.0
|
||||
MODULE_TRX=1.0.0
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue