mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Force PRS1 purge, don't try to copy when importing from PRS1 backup, warn when switching backups off
This commit is contained in:
parent
757de33b9a
commit
cd121c319a
@ -392,7 +392,10 @@ int PRS1Loader::OpenMachine(Machine *m, QString path, Profile *profile)
|
||||
return 0;
|
||||
}
|
||||
QString backupPath = p_profile->Get(m->properties[STR_PROP_BackupPath]) + path.section("/", -2);
|
||||
|
||||
if (dir.absolutePath().compare(QDir(backupPath).absolutePath()) != 0) {
|
||||
copyPath(path, backupPath);
|
||||
}
|
||||
|
||||
dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
||||
dir.setSorting(QDir::Name);
|
||||
|
@ -23,7 +23,7 @@
|
||||
//********************************************************************************************
|
||||
// Please INCREMENT the following value when making changes to this loaders implementation.
|
||||
//
|
||||
const int prs1_data_version = 12;
|
||||
const int prs1_data_version = 13;
|
||||
//
|
||||
//********************************************************************************************
|
||||
|
||||
|
@ -159,6 +159,14 @@ void showInGraphicalShell(const QString &pathIn)
|
||||
#endif
|
||||
}
|
||||
|
||||
int dirCount(QString path)
|
||||
{
|
||||
QDir dir(path);
|
||||
|
||||
QStringList list = dir.entryList(QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs);
|
||||
return list.size();
|
||||
}
|
||||
|
||||
void Profile::DataFormatError(Machine *m)
|
||||
{
|
||||
QString msg;
|
||||
@ -170,8 +178,9 @@ void Profile::DataFormatError(Machine *m)
|
||||
|
||||
bool backups = false;
|
||||
if (p_profile->session->backupCardData() && m->properties.contains(STR_PROP_BackupPath)) {
|
||||
QDir dir(Get(m->properties[STR_PROP_BackupPath]));
|
||||
if (dir.count() > 0) backups = true;
|
||||
QString bpath = Get(m->properties[STR_PROP_BackupPath]);
|
||||
int cnt = dirCount(bpath);
|
||||
if (cnt > 0) backups = true;
|
||||
}
|
||||
|
||||
if (backups) {
|
||||
@ -179,7 +188,7 @@ void Profile::DataFormatError(Machine *m)
|
||||
msg = msg + QObject::tr("<i>Your old machine data should be regenerated provided this backup feature has not been disabled in preferences during a previous data import.</i>") + "<br/><br/>";
|
||||
backups = true;
|
||||
} else {
|
||||
msg = msg + QObject::tr("SleepyHead does <font size=+1>not</font> yet have an automatic card backup capabilities for this device.") + "<br/><br/>";
|
||||
msg = msg + "<font size=+1>"+STR_MessageBox_Warning+":</font> "+QObject::tr("SleepyHead does not yet have any automatic card backups stored for this device.") + "<br/><br/>";
|
||||
msg = msg + QObject::tr("This means you will need to import this machine data again afterwards from your own backups or data card.") + "<br/><br/>";
|
||||
}
|
||||
|
||||
@ -209,6 +218,15 @@ void Profile::DataFormatError(Machine *m)
|
||||
if (backups) {
|
||||
mainwin->importCPAP(Get(m->properties[STR_PROP_BackupPath]), QObject::tr("Rebuilding from %1 Backup").arg(m->properties[STR_PROP_Brand]));
|
||||
} else {
|
||||
if (!p_profile->session->backupCardData()) {
|
||||
// Automatic backups not available for Intellipap users yet, so don't taunt them..
|
||||
if (m->GetClass() != STR_MACH_Intellipap) {
|
||||
if (QMessageBox::question(nullptr, STR_MessageBox_Question, QObject::tr("Would you like to switch on automatic backups, so next time a new version of SleepyHead needs to do so, it can rebuild from these?"),
|
||||
QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes)) {
|
||||
p_profile->session->setBackupCardData(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
QMessageBox::information(nullptr, STR_MessageBox_Information,
|
||||
QObject::tr("SleepyHead will now start the import wizard so you can reinstall your %1 data.").arg(m->properties[STR_PROP_Brand])
|
||||
,QMessageBox::Ok, QMessageBox::Ok);
|
||||
|
@ -902,3 +902,14 @@ void PreferencesDialog::on_tooltipTimeoutSlider_valueChanged(int value)
|
||||
{
|
||||
ui->tooltipMS->display(value * 50);
|
||||
}
|
||||
|
||||
void PreferencesDialog::on_createSDBackups_clicked(bool checked)
|
||||
{
|
||||
if (!checked && p_profile->session->backupCardData()) {
|
||||
if (QMessageBox::question(this, STR_MessageBox_Warning, tr("Switching off automatic backups is not a good idea, because SleepyHead needs these to rebuild the database if errors are found.")+"\n\n"+
|
||||
tr("Are you really sure you want to do this?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::Yes) {
|
||||
} else {
|
||||
ui->createSDBackups->setChecked(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -96,7 +96,9 @@ class PreferencesDialog : public QDialog
|
||||
|
||||
void on_tooltipTimeoutSlider_valueChanged(int value);
|
||||
|
||||
private:
|
||||
void on_createSDBackups_clicked(bool checked);
|
||||
|
||||
private:
|
||||
//! \brief Populates the Graph Model view with data from the Daily, Overview & Oximetry gGraphView objects
|
||||
void resetGraphModel();
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>4</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="importTab">
|
||||
<attribute name="title">
|
||||
|
Loading…
Reference in New Issue
Block a user