mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Preferences shouldn't recalc on empty profile
This commit is contained in:
parent
7044ea6e8b
commit
95278e0408
@ -186,7 +186,8 @@ OTHER_FILES += \
|
|||||||
docs/tz.txt \
|
docs/tz.txt \
|
||||||
LICENSE.txt \
|
LICENSE.txt \
|
||||||
docs/tooltips.css \
|
docs/tooltips.css \
|
||||||
docs/script.js
|
docs/script.js \
|
||||||
|
update.xml
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -2500,6 +2500,9 @@ void MainWindow::FreeSessions()
|
|||||||
|
|
||||||
void MainWindow::doReprocessEvents()
|
void MainWindow::doReprocessEvents()
|
||||||
{
|
{
|
||||||
|
if (PROFILE.countDays(MT_CPAP,PROFILE.FirstDay(),PROFILE.LastDay())==0)
|
||||||
|
return;
|
||||||
|
|
||||||
m_inRecalculation=true;
|
m_inRecalculation=true;
|
||||||
QDate first=PROFILE.FirstDay();
|
QDate first=PROFILE.FirstDay();
|
||||||
QDate date=PROFILE.LastDay();
|
QDate date=PROFILE.LastDay();
|
||||||
@ -2513,7 +2516,7 @@ void MainWindow::doReprocessEvents()
|
|||||||
int daycount=first.daysTo(date);
|
int daycount=first.daysTo(date);
|
||||||
int idx=0;
|
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
|
// Disabling multithreaded save as it appears it's causing problems
|
||||||
bool cache_sessions=false; //PROFILE.session->cacheSessions();
|
bool cache_sessions=false; //PROFILE.session->cacheSessions();
|
||||||
|
@ -315,9 +315,11 @@ bool PreferencesDialog::Save()
|
|||||||
recalc_events=true;
|
recalc_events=true;
|
||||||
|
|
||||||
if (recalc_events) {
|
if (recalc_events) {
|
||||||
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) {
|
if (PROFILE.countDays(MT_CPAP,PROFILE.FirstDay(),PROFILE.LastDay())>0) {
|
||||||
return false;
|
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) {
|
} 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) {
|
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;
|
return false;
|
||||||
|
48
update.xml
Normal file
48
update.xml
Normal 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><p>SleepyHead has finally reached beta.. Welcome to the 0.9 series.</p>
|
||||||
|
<b>Features</b>
|
||||||
|
<list>
|
||||||
|
<li>New Auto-Updater for Mac & Windows platforms</li>
|
||||||
|
<li>SleepLib database improvements, and lots of other underneath stuff and code cleanups you don't see.</li>
|
||||||
|
<li>New Statistics page showing some more useful data.</li>
|
||||||
|
<li>Welcome page has become a Help Browser.</li>
|
||||||
|
<li>New Navigation Panel on the right side, now accessible from all tabs. It can be hidden to reclaim screen space.</li>
|
||||||
|
<li>New Favourites tab in this right panel for bookmarking days and quickly finding them again.</li>
|
||||||
|
<li>New Records tab to show some best/worst entries, which have links going directly to the related day or overview range.</li>
|
||||||
|
<li>Daily reports bookmarked areas show oximetry data when available.</li>
|
||||||
|
<li>Can print from both the Statistics & Help Browser pages.</li>
|
||||||
|
<li>New Context cube can be switched on to make empty pages more attractive.</li>
|
||||||
|
<li>More stuff that's mentioned in the official release notes.. (Editing in this xml file sucks)</li>
|
||||||
|
<li>Plenty of other bug fixes, including more oximetry fixes.</li>
|
||||||
|
<li> </li>
|
||||||
|
</list>
|
||||||
|
</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>
|
Loading…
Reference in New Issue
Block a user