0.9.7 version bump

This commit is contained in:
Mark Watkins 2014-07-03 02:16:12 +10:00
parent b5ea2f02cc
commit b6cff80991
5 changed files with 38 additions and 21 deletions

View File

@ -1,11 +1,30 @@
<html>
<body>
<h1><image src="qrc:/docs/sheep.png" width=64 height=64>SleepyHead v0.9.6 <b>Testing</b></h1>
<h1><image src="qrc:/docs/sheep.png" width=64 height=64>SleepyHead v0.9.7 <b>Testing</b></h1>
<p><h2><b>Release Notes</b></h2></p>
<p>Greetings!</p>
<p>Here is a new and hopefully improved SleepyHead build.</p>
<p>0.9.7 already? Yup.. otherwise I can't tell them apart, and you probably won't be able to either. Before anyone asks, yes, version numbers will go past 0.9.10 before 1.0.0 is reached.</p>
<p>Not a gigantic set of changes this time, but I've been busily working my way through a lot of bugs mentioned on the forums, trying to knock them down one by one. Please don't be offended if yours isn't in here yet.. I have a memory like a goldfish, plus I tried to focus on stability issues first.</p>
<p>A gentle reminder for anyone submitting bug reports (either via message or through sourceforges bug reporting system), please (please please) remember to state the SleepyHead version number, your computers platform and operating system type version (and service packs), and your CPAP machines type and model number. Without this information I pretty much don't have a clue what you are talking about.</p>
<br/>
<b>New features & bug fixes in v0.9.7</b><br/>
<list>
<li>Stopped faulty statistics calculations where only summary data was present (For now it should show zero where calculations are impossible)</li>
<li>Added .spo2 file import support for firmware 3.7 CMS50F oximeters.</li>
<li>Some pre-v3.7 firmware CMS50 oximeter serial importer improvements</li>
<li>Fixed ResMed AutoSet minimum pressure not displaying correctly</li>
<li>Fix ResMed EPR setting display</li>
<li>Restore display of MaskPressureHi plots when available</li>
<li>Fix wiki URL's thanks to sourceForge forcing move of SleepyHead's wiki</li>
<li>Fix ResMed importer crashes, finished rewriting stage2 multithreading code</li>
<li>Made database upgrade/purge process a bit more friendly (ResMed users Keep your backups switched on!)</li>
<li>Fixed a SleepyHead summary error that prevented count indexes from being stored properly</li>
<li>Some other minor stuff</li>
</list>
<br/>
<b>New features & bugs fixes in v0.9.6</b><br/>
<list>
<li>Threadsafety improvements to debug/logger</li>

View File

@ -592,11 +592,17 @@ QStringList MainWindow::detectCPAPCards()
QDialog popup(this, Qt::SplashScreen);
QLabel waitmsg(tr("Please wait, scanning for CPAP data cards..."));
QProgressBar progress;
QVBoxLayout waitlayout(&popup);
QPushButton skipbtn(tr("Click here to choose a folder"));
QVBoxLayout waitlayout;
popup.setLayout(&waitlayout);
QHBoxLayout layout2;
QIcon icon("://icons/sdcard.png");
QPushButton skipbtn(icon, tr("Choose a folder"));
skipbtn.setMinimumHeight(40);
waitlayout.addWidget(&waitmsg,1,Qt::AlignCenter);
waitlayout.addWidget(&progress,1);
waitlayout.addWidget(&skipbtn);
waitlayout.addLayout(&layout2,1);
layout2.addWidget(&skipbtn);
popup.connect(&skipbtn, SIGNAL(clicked()), &popup, SLOT(hide()));
progress.setValue(0);
progress.setMaximum(timeout);
@ -2349,3 +2355,9 @@ void MainWindow::on_actionPurgeCurrentDaysOximetry_triggered()
tr("Select the day with valid oximetry data in daily view first."),QMessageBox::Ok);
}
}
void MainWindow::on_importButton_clicked()
{
on_action_Import_Data_triggered();
}

View File

@ -316,6 +316,8 @@ class MainWindow : public QMainWindow
void logMessage(QString msg);
void on_importButton_clicked();
private:
void importCPAPBackups();
void finishCPAPImport();

View File

@ -3435,22 +3435,6 @@ border-radius: 10px;
</hint>
</hints>
</connection>
<connection>
<sender>importButton</sender>
<signal>clicked()</signal>
<receiver>action_Import_Data</receiver>
<slot>trigger()</slot>
<hints>
<hint type="sourcelabel">
<x>850</x>
<y>460</y>
</hint>
<hint type="destinationlabel">
<x>-1</x>
<y>-1</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionView_Daily</sender>
<signal>triggered()</signal>

View File

@ -16,7 +16,7 @@
const int major_version = 0; // incompatible API changes
const int minor_version = 9; // new features that don't break things
const int patch_number = 6; // bugfixes, revisions
const int patch_number = 7; // bugfixes, revisions
#ifdef TEST_BUILD
const QString ReleaseStatus = "testing";