diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html
index c8dab34e..f3eb620e 100644
--- a/Htmldocs/release_notes.html
+++ b/Htmldocs/release_notes.html
@@ -8,7 +8,7 @@
- Changes and fixes in OSCAR after v1.2.0-beta-1
+ Changes and fixes in OSCAR v1.2.0-beta-2
Portions of OSCAR are © 2019-2020 by
The OSCAR Team
@@ -16,7 +16,11 @@
- [fix] Correct 95th percentile computations on Statistics page when some days were summary-only.
- [fix] Improve some prompts and tooltip messages.
- [fix] Improve support of rare Philips Respironics 950P events and update warnings.
-
+ [fix] Empty directories in Profiles directory are not shown in Profiles list.
+ [fix] Show correct copyright when installing Debian version.
+ [fix] Improvements to Chromebook identification.
+
+
Changes and fixes in OSCAR v1.2.0-beta-1
Portions of OSCAR are © 2019-2020 by
The OSCAR Team
diff --git a/oscar/SleepLib/profiles.cpp b/oscar/SleepLib/profiles.cpp
index e25927b5..11d80312 100644
--- a/oscar/SleepLib/profiles.cpp
+++ b/oscar/SleepLib/profiles.cpp
@@ -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();
diff --git a/oscar/profileselector.cpp b/oscar/profileselector.cpp
index 8db6f013..21e74648 100644
--- a/oscar/profileselector.cpp
+++ b/oscar/profileselector.cpp
@@ -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()) {