Preferences shouldn't recalc on empty profile

This commit is contained in:
Mark Watkins 2012-01-11 19:10:40 +10:00
parent 7044ea6e8b
commit 95278e0408
4 changed files with 59 additions and 5 deletions

View File

@ -186,7 +186,8 @@ OTHER_FILES += \
docs/tz.txt \
LICENSE.txt \
docs/tooltips.css \
docs/script.js
docs/script.js \
update.xml

View File

@ -2500,6 +2500,9 @@ void MainWindow::FreeSessions()
void MainWindow::doReprocessEvents()
{
if (PROFILE.countDays(MT_CPAP,PROFILE.FirstDay(),PROFILE.LastDay())==0)
return;
m_inRecalculation=true;
QDate first=PROFILE.FirstDay();
QDate date=PROFILE.LastDay();
@ -2513,7 +2516,7 @@ void MainWindow::doReprocessEvents()
int daycount=first.daysTo(date);
int idx=0;
QList<Machine *> machines=PROFILE.GetMachines(MT_UNKNOWN);
QList<Machine *> machines=PROFILE.GetMachines(MT_CPAP);
// Disabling multithreaded save as it appears it's causing problems
bool cache_sessions=false; //PROFILE.session->cacheSessions();

View File

@ -315,9 +315,11 @@ bool PreferencesDialog::Save()
recalc_events=true;
if (recalc_events) {
if (PROFILE.countDays(MT_CPAP,PROFILE.FirstDay(),PROFILE.LastDay())>0) {
if (QMessageBox::question(this,tr("Data Reindex Required"),tr("A data reindexing proceedure is required to apply these changes. This operation may take a couple of minutes to complete.\n\nAre you sure you want to make these changes?"),QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) {
return false;
}
} else recalc_events=false;
} else if (needs_restart) {
if (QMessageBox::question(this,tr("Restart Required"),tr("One or more of the changes you have made will require this application to be restarted,\nin order for these changes to come into effect.\n\nWould you like do this now?"),QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) {
return false;

48
update.xml Normal file
View File

@ -0,0 +1,48 @@
<!DOCTYPE Upgrade>
<SleepyHead>
<Release version="0.9.1" codename="Funky" status="beta">
<update type="qtlibs" version="4.8.0" platform="win32">
<file name="qtlibs-4.8.0-win32.zip"
url="http://sourceforge.net/projects/sleepyhead/files/AutoUpdate/Win32/qtlibs-4.8.0-win32.zip/download"
hash="ed0312c0f9a51e8774e6556f83b13df8d4195d2b"/>
</update>
<update type="application" version="0.9.1" platform="win32" release_date="2012-01-10">
<file name="SleepyHead-0.9.1-beta-win32-binary_only.zip"
url="http://sourceforge.net/projects/sleepyhead/files/AutoUpdate/Win32/SleepyHead-0.9.1-beta-win32-binary_only.zip/download"
hash="89cf16fbbc5dc5018946916dc8c95c01578635f8"/>
<notes>
Initial v0.9.1 release.
</notes>
</update>
<update type="application" version="0.9.1" platform="macosx" release_date="2012-01-11">
<file name="SleepyHead-0.9.1-beta-macosx-binary_only.zip"
url="http://sourceforge.net/projects/sleepyhead/files/AutoUpdate/MacOSX/SleepyHead-0.9.1-beta-macosx-binary_only.zip/download"
hash="2f0983dfec2e9968b36ff8ccd7c24a1af5bb8818"/>
<notes>
The Official v0.9.1 release. (You've been using a sneak preview)
</notes>
</update>
<notes>&lt;p&gt;SleepyHead has finally reached beta.. Welcome to the 0.9 series.&lt;/p&gt;
&lt;b&gt;Features&lt;/b&gt;
&lt;list&gt;
&lt;li&gt;New Auto-Updater for Mac &amp; Windows platforms&lt;/li&gt;
&lt;li&gt;SleepLib database improvements, and lots of other underneath stuff and code cleanups you don't see.&lt;/li&gt;
&lt;li&gt;New Statistics page showing some more useful data.&lt;/li&gt;
&lt;li&gt;Welcome page has become a Help Browser.&lt;/li&gt;
&lt;li&gt;New Navigation Panel on the right side, now accessible from all tabs. It can be hidden to reclaim screen space.&lt;/li&gt;
&lt;li&gt;New Favourites tab in this right panel for bookmarking days and quickly finding them again.&lt;/li&gt;
&lt;li&gt;New Records tab to show some best/worst entries, which have links going directly to the related day or overview range.&lt;/li&gt;
&lt;li&gt;Daily reports bookmarked areas show oximetry data when available.&lt;/li&gt;
&lt;li&gt;Can print from both the Statistics &amp; Help Browser pages.&lt;/li&gt;
&lt;li&gt;New Context cube can be switched on to make empty pages more attractive.&lt;/li&gt;
&lt;li&gt;More stuff that's mentioned in the official release notes.. (Editing in this xml file sucks)&lt;/li&gt;
&lt;li&gt;Plenty of other bug fixes, including more oximetry fixes.&lt;/li&gt;
&lt;li&gt; &lt;/li&gt;
&lt;/list&gt;
</notes>
<notes platform="linux">Linux Rules. But you already knew that!</notes>
<notes platform="macosx">Always remember to write-protect your SD card, as MacOSX occasionally likes to eat them.</notes>
<notes platform="win32">Nothing particularly platform relevant to this Windows build</notes>
<info url="http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=ReleaseNotes-0.9.1"/>
</Release>
</SleepyHead>