mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Avoid data loss when destroying a profile that's just an empty directory; Release notes for v1.2.0-beta-2
- If trying to delete a profile folder with no contents, now displays an error message and doesn't delete it. - Folders with no contents are no longer listed on the Profiles page. - Release Notes updated with the fixes for beta-2.
This commit is contained in:
parent
b49e483fa4
commit
e39adbd41e
@ -8,7 +8,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<b>Changes and fixes in OSCAR after v1.2.0-beta-1</b>
|
||||
<b>Changes and fixes in OSCAR v1.2.0-beta-2</b>
|
||||
<br>Portions of OSCAR are © 2019-2020 by
|
||||
<i>The OSCAR Team</i></p>
|
||||
<ul>
|
||||
@ -16,7 +16,11 @@
|
||||
<li>[fix] Correct 95th percentile computations on Statistics page when some days were summary-only.</li>
|
||||
<li>[fix] Improve some prompts and tooltip messages.</li>
|
||||
<li>[fix] Improve support of rare Philips Respironics 950P events and update warnings.</li>
|
||||
</ul>
|
||||
<li>[fix] Empty directories in Profiles directory are not shown in Profiles list.</li>
|
||||
<li>[fix] Show correct copyright when installing Debian version.</li>
|
||||
<li>[fix] Improvements to Chromebook identification.</li>
|
||||
</ul></p>
|
||||
<p>
|
||||
<b>Changes and fixes in OSCAR v1.2.0-beta-1</b>
|
||||
<br>Portions of OSCAR are © 2019-2020 by
|
||||
<i>The OSCAR Team</i></p>
|
||||
|
@ -1147,6 +1147,9 @@ void Scan()
|
||||
// Iterate through subdirectories and load profiles..
|
||||
for (auto & fi : list) {
|
||||
QString npath = fi.canonicalFilePath();
|
||||
QDir profilePath(npath);
|
||||
if (profilePath.isEmpty()) // skip any empty folders
|
||||
continue;
|
||||
Profile *prof = new Profile(npath);
|
||||
//prof->Open();
|
||||
|
||||
|
@ -353,6 +353,10 @@ void ProfileSelector::on_buttonDestroyProfile_clicked()
|
||||
QString name = proxy->data(proxy->index(ui->profileView->currentIndex().row(), 0, QModelIndex()), Qt::UserRole+2).toString();
|
||||
Profile * profile = Profiles::profiles[name];
|
||||
QString path = profile->Get(PrefMacro(STR_GEN_DataFolder));
|
||||
if (path == (GetAppData() + "/Profiles/")) {
|
||||
QMessageBox::warning(this, STR_MessageBox_Error, tr("The selected profile does not appear to contain any data and cannot be removed by OSCAR"), QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
|
||||
bool verified = true;
|
||||
if (profile->user->hasPassword()) {
|
||||
|
Loading…
Reference in New Issue
Block a user