diff --git a/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp b/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp index b4e210ac..45466773 100644 --- a/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp @@ -622,8 +622,8 @@ bool FPIconLoader::OpenSummary(Machine * mach,QString filename, Profile * profil //sess->setCount(CPAP_,j5); if (p1!=p2) { sess->settings[CPAP_Mode]=(int)MODE_APAP; - sess->settings[CPAP_PressureMin]=p4/10.0; - sess->settings[CPAP_PressureMax]=p3/10.0; + sess->settings[CPAP_PressureMin]=p3/10.0; + sess->settings[CPAP_PressureMax]=p4/10.0; } else { sess->settings[CPAP_Mode]=(int)MODE_CPAP; sess->settings[CPAP_Pressure]=p1/10.0; diff --git a/sleepyhead/docs/update_notes.html b/sleepyhead/docs/update_notes.html index 034d90c8..ffd4bfc7 100644 --- a/sleepyhead/docs/update_notes.html +++ b/sleepyhead/docs/update_notes.html @@ -6,13 +6,10 @@ Changes in this version
-
  • Auto-Updater test for Windows & Mac Platforms
  • -
  • Adds Total Leaks Overview chart for PRS1 Users.
  • -
  • Preliminary ZEO CSV Support
  • -
  • Fixes Overview AHI chart showing "No Data" on 0.00 days.
  • -
  • Fixes crash after using Preferences before importing first data.
  • -
  • Cursor up/down zoom did not take into account hidden graphs
  • -
  • Fixes first minute of Resp. Rate & Minute Vent calcs not showing data. (You will have to Data->Advanced->Purge CPAP Data and then reimport if you want this, as recalc won't do it)
  • +
  • Fisher & Paykel ICON improvements
  • +
  • ResMed S9 Importer fixes
  • +
  • Lots of crashes resolved
  • +
  • Heaps more bug fixes
  • Have fun!

    diff --git a/sleepyhead/version.h b/sleepyhead/version.h index 20659f38..aa332618 100644 --- a/sleepyhead/version.h +++ b/sleepyhead/version.h @@ -6,7 +6,7 @@ const int major_version=0; const int minor_version=9; const int revision_number=3; -const int release_number=0; +const int release_number=5; const QString VersionString=QString().sprintf("%i.%i.%i",major_version,minor_version,revision_number); const QString FullVersionString=QString().sprintf("%i.%i.%i-%i",major_version,minor_version,revision_number,release_number);