Merge branch 'master' into translations

This commit is contained in:
Arie Klerk Hotmail 2021-10-09 10:29:25 +02:00
commit 3d05e10db2
3 changed files with 7 additions and 6 deletions

View File

@ -24,6 +24,7 @@
<br>Portions of OSCAR are © 2019-2021 by <br>Portions of OSCAR are © 2019-2021 by
<i>The OSCAR Team</i></p> <i>The OSCAR Team</i></p>
<ul> <ul>
<li>{new} Correct the mode names for BiLevel ResMed machines.</li>
<li>[new] Add support for additional Viatom/Wellue filename conventions.</li> <li>[new] Add support for additional Viatom/Wellue filename conventions.</li>
<li>[new] Add support for unreadably low SpO2 samples on Viatom/Wellue oximeters.</li> <li>[new] Add support for unreadably low SpO2 samples on Viatom/Wellue oximeters.</li>
<li>[fix] Fix AVAPS pressure settings.</li> <li>[fix] Fix AVAPS pressure settings.</li>

View File

@ -102,15 +102,15 @@ void ResmedLoader::initChannels()
chan->addOption(0, QObject::tr("CPAP")); chan->addOption(0, QObject::tr("CPAP"));
chan->addOption(1, QObject::tr("APAP")); chan->addOption(1, QObject::tr("APAP"));
chan->addOption(2, QObject::tr("VPAP-T")); chan->addOption(2, QObject::tr("BiPAP-T"));
chan->addOption(3, QObject::tr("VPAP-S")); chan->addOption(3, QObject::tr("BiPAP-S"));
chan->addOption(4, QObject::tr("VPAP-S/T")); chan->addOption(4, QObject::tr("BiPAP-S/T"));
chan->addOption(5, QObject::tr("?5?")); chan->addOption(5, QObject::tr("BiPAP-T"));
chan->addOption(6, QObject::tr("VPAPauto")); chan->addOption(6, QObject::tr("VPAPauto"));
chan->addOption(7, QObject::tr("ASV")); chan->addOption(7, QObject::tr("ASV"));
chan->addOption(8, QObject::tr("ASVAuto")); chan->addOption(8, QObject::tr("ASVAuto"));
chan->addOption(9, QObject::tr("iVAPS")); chan->addOption(9, QObject::tr("iVAPS"));
chan->addOption(10, QObject::tr("?10?")); chan->addOption(10, QObject::tr("PAC"));
chan->addOption(11, QObject::tr("Auto for Her")); chan->addOption(11, QObject::tr("Auto for Her"));
channel.add(GRP_CPAP, chan = new Channel(RMS9_EPR = 0xe201, SETTING, MT_CPAP, SESSION, channel.add(GRP_CPAP, chan = new Channel(RMS9_EPR = 0xe201, SETTING, MT_CPAP, SESSION,

View File

@ -308,7 +308,7 @@ QString Welcome::GenerateCPAPHTML()
comp = under; comp = under;
} else if ((leak > leakdays) && ((leak - leakdays) >= 0.1)) { } else if ((leak > leakdays) && ((leak - leakdays) >= 0.1)) {
comp = over; comp = over;
} else if ((fabs(ahi > ahidays) >= 0.01) ) { } else if ((fabs(leak - leakdays) >= 0.01) ) {
comp = close; comp = close;
} else { } else {
comp = equal; comp = equal;