diff --git a/oscr/Resources.qrc b/oscr/Resources.qrc index b2790009..62200d1b 100644 --- a/oscr/Resources.qrc +++ b/oscr/Resources.qrc @@ -7,6 +7,8 @@ docs/countries.txt docs/tz.txt docs/release_notes.html + docs/about.html + docs/credits.html docs/schema.xml docs/channels.xml fonts/FreeSans.ttf diff --git a/oscr/SleepLib/common.h b/oscr/SleepLib/common.h index 3353f0e9..c91f5380 100644 --- a/oscr/SleepLib/common.h +++ b/oscr/SleepLib/common.h @@ -326,7 +326,7 @@ extern QString STR_TR_PrRelief; // Pressure Relief extern QString STR_TR_SensAwake; extern QString STR_TR_Bookmarks; -extern QString STR_TR_SleepyHead; +extern QString STR_TR_OSCR; extern QString STR_TR_AppVersion; extern QString STR_TR_Mode; diff --git a/oscr/UpdaterWindow.cpp b/oscr/UpdaterWindow.cpp index 8511b764..9cc9f80c 100644 --- a/oscr/UpdaterWindow.cpp +++ b/oscr/UpdaterWindow.cpp @@ -89,10 +89,11 @@ QString platformStr() void UpdaterWindow::checkForUpdates() { - QMessageBox(tr("Not yet implemented")); +#ifdef NO_UPDATER + QMessageBox::information(nullptr,STR_MessageBox_Information, tr("Updates are not yet implemented")); return; +#else -/******************************************** QString platform=platformStr(); #ifdef Q_OS_WIN @@ -131,9 +132,10 @@ void UpdaterWindow::checkForUpdates() update_url = QUrl(QString("http://sleepyhead.jedimark.net/releases/LatestVersion-%1").arg(platform)); #endif downloadUpdateXML(); -*******************************************/ +#endif // NO_UPDATER } +#ifndef NO_UPDATER void UpdaterWindow::downloadUpdateXML() { requestmode = RM_CheckUpdates; @@ -267,7 +269,9 @@ void UpdaterWindow::requestFile() connect(reply, SIGNAL(readyRead()), this, SLOT(dataReceived())); connect(reply, SIGNAL(downloadProgress(qint64, qint64)), this, SLOT(downloadProgress(qint64, qint64))); -} */ +} +************************************************************/ +#endif int checkVersionStatus(QString statusstr) { @@ -410,9 +414,11 @@ int compareVersion(QString version) return 0; } -//const QString UPDATE_SleepyHead = "com.jedimark.sleepyhead"; -//const QString UPDATE_QT = "com.jedimark.sleepyhead.qtlibraries"; -//const QString UPDATE_Translations = "com.jedimark.sleepyhead.translations"; +#ifndef NO_UPDATER + +const QString UPDATE_ROSCR = "com.jedimark.sleepyhead"; +const QString UPDATE_QT = "com.jedimark.sleepyhead.qtlibraries"; +const QString UPDATE_Translations = "com.jedimark.sleepyhead.translations"; bool SpawnApp(QString apppath, QStringList args = QStringList()) { @@ -464,7 +470,7 @@ void UpdaterWindow::ParseUpdatesXML(QIODevice *dev) qDebug() << " XML update structure parsed cleanly"; QHash CurrentVersion; - CurrentVersion[UPDATE_SleepyHead] = VersionString; + CurrentVersion[UPDATE_OSCR] = VersionString; CurrentVersion[UPDATE_QT] = QT_VERSION_STR; CurrentVersion[UPDATE_Translations] = VersionString; @@ -514,6 +520,7 @@ void UpdaterWindow::ParseUpdatesXML(QIODevice *dev) qDebug() << "Couldn't parse Updates.xml file"; } } +#endif // Old /************************************ @@ -859,11 +866,13 @@ void UpdaterWindow::replyFinished(QNetworkReply *reply) } } ****************************************************************/ +#ifndef NO_UPDATER void UpdaterWindow::on_CloseButton_clicked() { close(); } +#endif /************************************* void UpdaterWindow::upgradeNext() @@ -956,9 +965,11 @@ void UpdaterWindow::on_upgradeButton_clicked() } ************************************************************************/ +#ifndef NO_UPDATER void UpdaterWindow::on_FinishedButton_clicked() { if (success) { mainwin->RestartApplication(); } else { close(); } } +#endif diff --git a/oscr/UpdaterWindow.h b/oscr/UpdaterWindow.h index 79ae959d..408cb2f0 100644 --- a/oscr/UpdaterWindow.h +++ b/oscr/UpdaterWindow.h @@ -47,6 +47,8 @@ class UpdaterWindow : public QMainWindow //! Start the void checkForUpdates(); +#ifndef NO_UPDATER + /*! \fn ParseUpdateXML(QIODevice * dev) \brief Parses the update.xml from either QFile or QNetworkReply source */ @@ -84,29 +86,32 @@ class UpdaterWindow : public QMainWindow //! \brief Click on finished, restart if app has been upgraded, otherwise just close the window. void on_FinishedButton_clicked(); +#endif private: + Ui::UpdaterWindow *ui; + RequestMode requestmode; + QNetworkAccessManager *netmanager; + Update *update; + +#ifndef NO_UPDATER //! \brief Holds the results of parsing the update.xml file UpdateParser updateparser; // new parser UpdatesParser updatesparser; - Ui::UpdaterWindow *ui; - - RequestMode requestmode; QTime dltime; + QList updates; - Update *update; Release *release; QFile file; - QNetworkAccessManager *netmanager; QNetworkReply *reply; - QList updates; int current_row; bool success; QUrl update_url; // for update.xml redirects.. +#endif }; #endif // UPDATEWINDOW_H diff --git a/oscr/aboutdialog.cpp b/oscr/aboutdialog.cpp index 8ad64da0..89ae1d69 100644 --- a/oscr/aboutdialog.cpp +++ b/oscr/aboutdialog.cpp @@ -9,6 +9,8 @@ #include #include +#include +#include #include "version.h" #include "SleepLib/appsettings.h" @@ -22,6 +24,8 @@ AboutDialog::AboutDialog(QWidget *parent) : { ui->setupUi(this); + ui->aboutText->setHtml(getAbout()); + ui->creditsText->setHtml(getCredits()); ui->licenseText->setHtml(getLicense()); ui->relnotesText->setHtml(getRelnotes()); ui->versionLabel->setText(VersionString); @@ -55,10 +59,35 @@ AboutDialog::~AboutDialog() delete ui; } +/*************************************************** void AboutDialog::on_donateButton_clicked() { // QDesktopServices::openUrl(QUrl("http://sleepyhead.jedimark.net/donate.php")); - QMessageBox(tr("Not yet implemented")); + QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Donations are not yet implemented")); +} +******************************************************/ + +QString AboutDialog::getAbout() +{ + QFile clfile(":/docs/about.html"); + QString text = tr("Sorry, could not locate About file."); + if (clfile.open(QIODevice::ReadOnly)) { + text = clfile.readAll(); + } else + qDebug() << "Failed to open About file"; + + return text; +} + +QString AboutDialog::getCredits() +{ + QFile clfile(":/docs/credits.html"); + QString text = tr("Sorry, could not locate Credits file."); + if (clfile.open(QIODevice::ReadOnly)) { + text = clfile.readAll(); + } + + return text; } QString AboutDialog::getRelnotes() diff --git a/oscr/aboutdialog.h b/oscr/aboutdialog.h index 990d1eda..a2a933aa 100644 --- a/oscr/aboutdialog.h +++ b/oscr/aboutdialog.h @@ -22,10 +22,13 @@ public: explicit AboutDialog(QWidget *parent = 0); ~AboutDialog(); +/**************************************************** private slots: void on_donateButton_clicked(); - +***************************************************/ private: + QString getAbout(); + QString getCredits(); QString getLicense(); QString getRelnotes(); diff --git a/oscr/aboutdialog.ui b/oscr/aboutdialog.ui index 628c7862..5ab5fcfb 100644 --- a/oscr/aboutdialog.ui +++ b/oscr/aboutdialog.ui @@ -37,34 +37,6 @@ - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:20pt;">Welcome to Open Source CPAP Reviewer</span></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This software has been designed to assist you in reviewing the data produced by your CPAP machines and related equipment.</p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<hr /> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; color:#ff0000;">PLEASE READ CAREFULLY</span></p> -<hr /> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">OSCR is <span style=" font-weight:600;">NOT </span>a substitute for competent medical guidance from your Doctor.</p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Due to the lack of documentation released by manufacturers regarding file formats, accuracy of data displayed in OSCR can not in any way be guaranteed. </p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Any reports generated are for <span style=" font-weight:600;">PERSONAL USE ONLY</span>, and are <span style=" font-weight:600;">NOT IN ANY WAY</span> fit for compliance or medical diagnostic purposes.</p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Use of this software is <span style=" font-style:italic;">entirely </span>at your own risk. The author will not be held liable for <span style=" font-weight:600; text-decoration: underline;">anything</span> related to the use or misuse of this software.</p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<hr /> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">OSCR is free (as in freedom) software, released under the <span style=" font-style:italic;">GNU Public License v3</span>, and comes with no warranty, and without ANY claims to fitness for any purpose.</p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">OSCR is copyright ©2011-2018 <a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Mark Watkins</span></a></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt;"><br /></p></body></html> - true @@ -93,30 +65,6 @@ p, li { white-space: pre-wrap; } - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:20pt;">OSCR Credits</span></p> -<hr /> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For OSCR to come to you in the form you see it in now, it took a lot more work than just that of the projects creator <a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Jedimark</span></a>.</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">OpenSource Libraries</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">OSCR uses the OpenSource version of the Qt cross platform toolkit available from <a href="http://qt.io"><span style=" text-decoration: underline; color:#0000ff;">http://qt.io</span></a> which itself draws from many smaller open source libraries. You can read the individual licensing for many of these components that are used under the hood of ROSCR at <a href="http://doc.qt.io/archives/qt-5.7/3rdparty.html"><span style=" text-decoration: underline; color:#0000ff;">http://doc.qt.io/archives/qt-5.7/3rdparty.html</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data formats</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Becase the CPAP machine data formats are mostly undocumented and getting them working in OSCR involved a lot of hacking, I needed a lot of SD card data samples, and patient users willing to put up with crashes and wonky data, and plenty of help from my fellow hackers out there who shared in the workload breaking data formats. Thanks to all of you who have helped in the fight to protect our right to keep our own data open and accessible!<br /><br /><span style=" font-weight:600;">Patches, bugfixes and platform support</span><br /><span style=" color:#000000;">James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl, Roy Stone, François Revol, Michael Masterson, RezNet, JediBob, Pholy and names I'm sure I've missed or yet to add.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#000000;">Language and Translation</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#000000;">Now with sixteen (!) new languages besides English (US) it is important to mention all those people who have done an enormous job breaking their heads over 1566 strings with 9572 words, making a total of over 56.000 characters, for the original SleepyHead Version 1.0.0<br /></span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#000000;">The translation team is as follows: Arie Klerk (Translation Coordinator, also Dutch), Steffen Reitz (German), Chen Hao (Chinese), Lars-Erik Söderström (Swedish), Damien Vigneron (French), António Jorge Costa (Portuguese), Judith Guzmán (Spanish), Plamen Tonev (Bulgarian), Johan Heikkilä (Finnish), Boguslaw Kucharski (Polish), Luca Roberti (Italian), Iohannis Nasef (Greek and Arabic), Heyns van der Merwe (African), Jason Williams (English UK) and Yaron Keren (Hebrew).</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#000000;"><br />Any remarks can be sent to Arie Klerk, who will gladly bring you in contact with the translator.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#000000;"><br /></span><span style=" font-weight:600; color:#000000;">Special Mentions<br /></span><span style=" color:#000000;">A big thanks (again) to Arie Klerk for tirelessly filling the role of SleepyHead's Translation coordinator and helping get SleepyHead out of it's monolingual rut, and fit and ready to be shared with a much wider audience around the world.<br /></span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#000000;">Special thanks to Pugsy and Robysue from </span><a href="http://cpaptalk.com"><span style=" text-decoration: underline; color:#0000ff;">CPAPTalk</span></a><span style=" color:#000000;"> for their help with documentation and tutorials, as well as everyone who helped out by testing and sharing their CPAP data.<br /><br />Thanks to CPAPTalk's host </span><a href="http://CPAP.com"><span style=" text-decoration: underline; color:#0000ff;">CPAP.com</span></a><span style=" color:#000000;"> for their generous donations, and letting me run amock in the early days and pester their forums users for help to test SleepyHead. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#000000;">Thanks to SuperSleeper over at </span><a href="http://www.apneaboard.com/"><span style=" text-decoration: underline; color:#0000ff;">ApneaBoard</span></a><span style=" color:#000000;"> for helping out with mirroring space and forums and stuff.</span></p></body></html> - true @@ -147,37 +95,6 @@ p, li { white-space: pre-wrap; } - - - Support OSCR - - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:400; font-style:normal;"> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:20pt;">Support OSCR Development</span></p> -<hr /> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;"> </span></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All software, regardless of its software licensing costs time, money and resources to create and maintain, especially complex applications like OSCR.<br /><br />The SleepyHead project was created early in 2011 by Mark Watkins (<a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Jedimark</span></a>), and has grown over the years into a seriously complex cross platform desktop application. It is the compound result of an insane amount of hard work and many, many all nighter hacking sessions, and time spent distracted from family responsibilties.</p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />There is a lot of ongoing work trying to keep OSCR up to date with ever changing CPAP machine variants as well as the continuously improving understanding of the undocumented data formats. I know I haven't always kept up, but I really do try my best.<br /><br />I'd like to offer a huge thankyou for those who have given donations and support along the way... you truly helped to make OSCR what it is today.<br /><br />If OSCR has benefited you and have the means to do so, please consider showing your appreciation by supporting the continued development of this software project.</p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<hr /> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://sleepyhead.jedimark.net/donate.php"><span style=" font-size:11pt; font-weight:600; text-decoration: underline; color:#0000ff;"><br />Donate via Paypal</span></a><span style=" font-size:11pt;"><br /></span></p> -<hr /> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt;"><br /></p></body></html> - - - true - - - - - @@ -277,13 +194,6 @@ p, li { white-space: pre-wrap; } - - - - &Donate via Paypal - - - diff --git a/oscr/docs/about.html b/oscr/docs/about.html new file mode 100644 index 00000000..ce82d8cd --- /dev/null +++ b/oscr/docs/about.html @@ -0,0 +1,45 @@ + + + + + + + +


+

+ Welcome to Open Source CPAP Reviewer

+


+

+ This software has been designed to assist you in reviewing the data produced by your CPAP machines and related equipment.

+


+
+

+ PLEASE READ CAREFULLY

+
+


+

+ OSCR is NOT a substitute for competent medical guidance from your Doctor.

+


+

+ Due to the lack of documentation released by manufacturers regarding file formats, accuracy of data displayed in OSCR can not in any way be guaranteed.

+


+

+ Any reports generated are for PERSONAL USE ONLY, and are NOT IN ANY WAY fit for compliance or medical diagnostic purposes.

+


+

+ Use of this software is entirely at your own risk. The authors will not be held liable for anything related to the use or misuse of this software.

+


+
+

+ OSCR is free (as in freedom) software, released under the GNU Public License v3, and comes with no warranty, and without ANY claims to fitness for any purpose.

+


+

+ OSCR is copyright ©2011-2018 Mark Watkins

+

+ and portions ©2019 Nightowl Software

+


+ + diff --git a/oscr/docs/credits.html b/oscr/docs/credits.html new file mode 100644 index 00000000..b76ac0a3 --- /dev/null +++ b/oscr/docs/credits.html @@ -0,0 +1,31 @@ + + + + + + + +

OSCR Credits

+
+

OSCR is a derivitive of the SleepyHead program written by Mark Watkins, during the years 2011 to 2018. The current project is the combined effort of people from both CPAPtalk.com and ApneaBoard.com, starting in 2019.

+

For OSCR to come to you in the form you see it in now, it took a lot more work than just that of the project's original creator Jedimark. The following are the Credits from the last version of SleepyHead.

+


+

OpenSource Libraries

+

OSCR uses the OpenSource version of the Qt cross platform toolkit available from http://qt.io which itself draws from many smaller open source libraries. You can read the individual licensing for many of these components that are used under the hood of ROSCR at http://doc.qt.io/archives/qt-5.7/3rdparty.html

+


+

Data formats

+

Becase the CPAP machine data formats are mostly undocumented and getting them working in OSCR involved a lot of hacking, Mark Watkins needed a lot of SD card data samples, and patient users willing to put up with crashes and wonky data, and plenty of help from my fellow hackers out there who shared in the workload breaking data formats. Thanks to all of you who have helped in the fight to protect our right to keep our own data open and accessible!

Patches, bugfixes and platform support
James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl, Roy Stone, François Revol, Michael Masterson, RezNet, JediBob, Pholy and names I'm sure I've missed or yet to add.

+


+

Language and Translation

+

Now with sixteen (!) new languages besides English (US) it is important to mention all those people who have done an enormous job breaking their heads over 1566 strings with 9572 words, making a total of over 56.000 characters, for the original SleepyHead Version 1.0.0

+

The translation team was: Arie Klerk (Translation Coordinator, also Dutch), Steffen Reitz (German), Chen Hao (Chinese), Lars-Erik Söderström (Swedish), Damien Vigneron (French), António Jorge Costa (Portuguese), Judith Guzmán (Spanish), Plamen Tonev (Bulgarian), Johan Heikkilä (Finnish), Boguslaw Kucharski (Polish), Luca Roberti (Italian), Iohannis Nasef (Greek and Arabic), Heyns van der Merwe (African), Jason Williams (English UK) and Yaron Keren (Hebrew).

+


Any remarks can be sent to Arie Klerk, who will attempt to put you in contact with the translator.

+


Special Mentions
A big thanks (again) to Arie Klerk for tirelessly filling the role of SleepyHead's Translation coordinator and helping get SleepyHead out of it's monolingual rut, and fit and ready to be shared with a much wider audience around the world.

+ Special thanks to Pugsy and Robysue from CPAPTalk for their help with documentation and tutorials, as well as everyone who helped out by testing and sharing their CPAP data.

Thanks to CPAPTalk's host
CPAP.com for their generous donations, and letting me run amock in the early days and pester their forums users for help to test SleepyHead.

+


+

Thanks to SuperSleeper over at ApneaBoard for helping out with mirroring space and forums and stuff.

+ + + diff --git a/oscr/docs/release_notes.html b/oscr/docs/release_notes.html index ea253eed..2226acb4 100644 --- a/oscr/docs/release_notes.html +++ b/oscr/docs/release_notes.html @@ -2,9 +2,12 @@

-Changes and fixes in v1.1.1-testing-1 +Changes and fixes in OSCR v1.0.0-beta-1 -

  • This is a Community Release, prepared without Mark's assistance, but, we hope, with his blessing
  • +
  • This is a Community Release, prepared without Mark Watkin's assistance
  • +
  • The Donation and Update features have been removed
  • +
  • The Glossary, FAQ, and Wiki features are not yet implemented
  • +
  • The Help Pages require Qt 5.9 to build; Qt 5.7 is the oldest supported
  • The Daily page left panel will resize to a smaller size.
  • Oximeter import reports file errors in a message box
  • Fixed date and time problems with Oximeter import
  • @@ -17,7 +20,7 @@

    -Changes and fixes in v1.1.0-unstable-0 +Changes and fixes in SleepyHead v1.1.0-unstable-0

  • New help browser with indexing and multilanguage support
  • Killed off dependency on Webkit... (or as I prefer to call it "murderalized with extreme prejudice"!)
  • diff --git a/oscr/main.cpp b/oscr/main.cpp index d21431df..b073cdc3 100644 --- a/oscr/main.cpp +++ b/oscr/main.cpp @@ -155,23 +155,23 @@ int main(int argc, char *argv[]) if (opengl2supported) { if (!settings.value(BetterBuild, false).toBool()) { - QMessageBox::information(nullptr, QObject::tr("A faster build of SleepyHead may be available"), - QObject::tr("This build of SleepyHead is a compatability version that also works on computers lacking OpenGL 2.0 support.")+"

    "+ - QObject::tr("However it looks like your computer has full support for OpenGL 2.0!") + "

    "+ - QObject::tr("This version will run fine, but a \"%1\" tagged build of SleepyHead will likely run a bit faster on your computer.").arg("-OpenGL")+"

    "+ - QObject::tr("You will not be bothered with this message again."), QMessageBox::Ok, QMessageBox::Ok); + QMessageBox::information(nullptr, QObject::tr("A faster build of OSCR may be available"), + QObject::tr("This build of OSCR is a compatability version that also works on computers lacking OpenGL 2.0 support.")+"

    "+ + QObject::tr("However it looks like your computer has full support for OpenGL 2.0!") + "

    "+ + QObject::tr("This version will run fine, but a \"%1\" tagged build of OSCR will likely run a bit faster on your computer.").arg("-OpenGL")+"

    "+ + QObject::tr("You will not be bothered with this message again."), QMessageBox::Ok, QMessageBox::Ok); settings.setValue(BetterBuild, true); } } #else if (bad_graphics) { QMessageBox::warning(nullptr, QObject::tr("Incompatible Graphics Hardware"), - QObject::tr("This build of SleepyHead requires OpenGL 2.0 support to function correctly, and unfortunately your computer lacks this capability.") + "

    "+ - QObject::tr("You may need to update your computers graphics drivers from the GPU makers website. %1"). - arg(intel_graphics ? QObject::tr("(Intel's support site)") : "")+"

    "+ - QObject::tr("Because graphs will not render correctly, and it may cause crashes, this build will now exit.")+"

    "+ - QObject::tr("There is another build available tagged \"-BrokenGL\" that should work on your computer.") - ,QMessageBox::Ok, QMessageBox::Ok); + QObject::tr("This build of OSCR requires OpenGL 2.0 support to function correctly, and unfortunately your computer lacks this capability.") + "

    "+ + QObject::tr("You may need to update your computers graphics drivers from the GPU makers website. %1"). + arg(intel_graphics ? QObject::tr("(Intel's support site)") : "")+"

    "+ + QObject::tr("Because graphs will not render correctly, and it may cause crashes, this build will now exit.")+"

    "+ + QObject::tr("There is another build available tagged \"-BrokenGL\" that should work on your computer."), + QMessageBox::Ok, QMessageBox::Ok); exit(1); } #endif @@ -195,10 +195,10 @@ int main(int argc, char *argv[]) if (!havefolder && !force_data_dir) { if (QMessageBox::question(nullptr, STR_MessageBox_Question, - QObject::tr("Would you like SleepyHead to use this location for storing its data?")+"\n\n"+ + QObject::tr("Would you like OSCR to use this location for storing its data?")+"\n\n"+ QDir::toNativeSeparators(GetAppRoot())+"\n\n"+ - QObject::tr("If you are upgrading, don't panic, you just need to make sure this is pointed at your old SleepyHead data folder.")+"\n\n"+ - QObject::tr("(If you have no idea what to do here, just click yes.)"), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) { + QObject::tr("If you are upgrading, don't panic, you just need to make sure this is pointed at your old OSCR data folder.")+"\n\n"+ + QObject::tr("(If you are unsure, just click yes.)"), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) { settings.setValue("Settings/AppRoot", GetAppRoot()); change_data_dir = false; } @@ -208,18 +208,18 @@ retry_directory: if (change_data_dir) { QString datadir = QFileDialog::getExistingDirectory(nullptr, - QObject::tr("Choose or create new folder for SleepyHead data"), GetAppRoot(), + QObject::tr("Choose or create new folder for OSCR data"), GetAppRoot(), QFileDialog::ShowDirsOnly); if (datadir.isEmpty()) { if (!havefolder) { QMessageBox::information(nullptr, QObject::tr("Exiting"), - QObject::tr("As you did not select a data folder, SleepyHead will exit.")+"\n\n"+QObject::tr("Next time you run, you will be asked again.")); + QObject::tr("As you did not select a data folder, OSCR will exit.")+"\n\n"+QObject::tr("Next time you run, you will be asked again.")); return 0; } else { QMessageBox::information(nullptr, STR_MessageBox_Warning, - QObject::tr("You did not select a directory.")+"\n\n"+QObject::tr("SleepyHead will now start with your old one.")+"\n\n"+ - QDir::toNativeSeparators(GetAppRoot()), QMessageBox::Ok); + QObject::tr("You did not select a directory.")+"\n\n"+QObject::tr("OSCR will now start with your old one.")+"\n\n"+ + QDir::toNativeSeparators(GetAppRoot()), QMessageBox::Ok); } } else { QDir dir(datadir); @@ -229,9 +229,9 @@ retry_directory: if (dir.count() > 2) { // Not a new directory.. nag the user. if (QMessageBox::question(nullptr, STR_MessageBox_Warning, - QObject::tr("The folder you chose is not empty, nor does it already contain valid SleepyHead data.") - + "\n\n"+QObject::tr("Are you sure you want to use this folder?")+"\n\n" - + datadir, QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) { + QObject::tr("The folder you chose is not empty, nor does it already contain valid OSCR data.") + + "\n\n"+QObject::tr("Are you sure you want to use this folder?")+"\n\n" + + datadir, QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) { goto retry_directory; } } @@ -253,14 +253,15 @@ retry_directory: AppSetting->setLanguage(language); // Clean up some legacy crap - QFile lf(PREF.Get("{home}/Layout.xml")); - if (lf.exists()) { - lf.remove(); - } +// QFile lf(PREF.Get("{home}/Layout.xml")); +// if (lf.exists()) { +// lf.remove(); +// } PREF.Erase(STR_AppName); PREF.Erase(STR_GEN_SkipLogin); +#ifndef NO_UPDATER //////////////////////////////////////////////////////////////////////////////////////////// // Check when last checked for updates.. //////////////////////////////////////////////////////////////////////////////////////////// @@ -282,16 +283,17 @@ retry_directory: check_updates = true; } } +#endif int vc = compareVersion(AppSetting->versionString()); if (vc < 0) { AppSetting->setShowAboutDialog(1); //release_notes(); - check_updates = false; +// check_updates = false; } else if (vc > 0) { if (QMessageBox::warning(nullptr, STR_MessageBox_Error, - QObject::tr("The version of SleepyHead you just ran is OLDER than the one used to create this data (%1)."). + QObject::tr("The version of OSCR you just ran is OLDER than the one used to create this data (%1)."). arg(AppSetting->versionString()) +"\n\n"+ QObject::tr("It is likely that doing this will cause data corruption, are you sure you want to do this?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) { @@ -353,8 +355,9 @@ retry_directory: Q_UNUSED(changing_language) Q_UNUSED(dont_load_profile) - +#ifndef NO_UPDATER if (check_updates) { mainwin->CheckForUpdates(); } +#endif mainwin->SetupGUI(); mainwin->show(); diff --git a/oscr/mainwindow.cpp b/oscr/mainwindow.cpp index 43d1aacb..cc261c02 100644 --- a/oscr/mainwindow.cpp +++ b/oscr/mainwindow.cpp @@ -92,7 +92,7 @@ MainWindow::MainWindow(QWidget *parent) : a->setEnabled(false); systraymenu->addSeparator(); systraymenu->addAction(tr("&About"), this, SLOT(on_action_About_triggered())); - systraymenu->addAction(tr("Check for &Updates"), this, SLOT(on_actionCheck_for_Updates_triggered())); +// systraymenu->addAction(tr("Check for &Updates"), this, SLOT(on_actionCheck_for_Updates_triggered())); systraymenu->addSeparator(); systraymenu->addAction(tr("E&xit"), this, SLOT(close())); } else { // if not available, the messages will popup in the taskbar @@ -390,10 +390,10 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword) if (!lockhost.isEmpty()) { if (lockhost.compare(QHostInfo::localHostName()) != 0) { if (QMessageBox::warning(nullptr, STR_MessageBox_Warning, - QObject::tr("There is a lockfile already present for this profile '%1', claimed on '%2'.").arg(prof->user->userName()).arg(lockhost)+"\n\n"+ - QObject::tr("You can only work with one instance of an individual OSCR profile at a time.")+"\n\n"+ - QObject::tr("If you are using cloud storage, make sure OSCR is closed and syncing has completed first on the other computer before proceeding."), - QMessageBox::Cancel |QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Cancel) { + QObject::tr("There is a lockfile already present for this profile '%1', claimed on '%2'.").arg(prof->user->userName()).arg(lockhost)+"\n\n"+ + QObject::tr("You can only work with one instance of an individual OSCR profile at a time.")+"\n\n"+ + QObject::tr("If you are using cloud storage, make sure OSCR is closed and syncing has completed first on the other computer before proceeding."), + QMessageBox::Cancel |QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Cancel) { return false; } } // not worried about localhost locks anymore, just silently drop it. @@ -845,11 +845,9 @@ void MainWindow::on_action_Import_Data_triggered() if (!p_profile->cpap->autoImport()) { QMessageBox mbox(QMessageBox::NoIcon, - tr("CPAP Data Located"), - infostr+"\n\n"+QDir::toNativeSeparators(datacards[0].path)+"\n\n"+ - tr("Would you like to import from this location?"), - QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, - this); + tr("CPAP Data Located"), infostr+"\n\n"+QDir::toNativeSeparators(datacards[0].path)+"\n\n"+ + tr("Would you like to import from this location?"), + QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, this); mbox.setDefaultButton(QMessageBox::Yes); mbox.setButtonText(QMessageBox::No, tr("Specify")); @@ -1260,13 +1258,19 @@ void MainWindow::on_oximetryButton_clicked() void MainWindow::CheckForUpdates() { + qDebug() << "procedure called"; on_actionCheck_for_Updates_triggered(); } void MainWindow::on_actionCheck_for_Updates_triggered() { +#ifdef NO_UPDATER + qDebug() << "procedure called"; + QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Updates are not yet implemented")); +#else UpdaterWindow *w = new UpdaterWindow(this); w->checkForUpdates(); +#endif } bool toolbox_visible = false; @@ -1433,13 +1437,13 @@ void MainWindow::on_action_CycleTabs_triggered() void MainWindow::on_actionOnline_Users_Guide_triggered() { // QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=SleepyHead_Users_Guide")); - QMessageBox(tr("Not yet implemented")); + QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The User's Guide is not yet implemented")); } void MainWindow::on_action_Frequently_Asked_Questions_triggered() { // QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Frequently_Asked_Questions")); - QMessageBox(tr("Not yet implemented")); + QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The FAQ is not yet implemented")); } void packEventList(EventList *el, EventDataType minval = 0) @@ -1685,7 +1689,10 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline) if (QProcess::startDetached("/usr/bin/open", args)) { QApplication::instance()->exit(); - } else { QMessageBox::warning(nullptr, tr("Gah!"), tr("If you can read this, the restart command didn't work. Your going to have to do it yourself manually."), QMessageBox::Ok); } + } else { + QMessageBox::warning(nullptr, tr("Gah!"), + tr("If you can read this, the restart command didn't work. You will have to do it yourself manually."), QMessageBox::Ok); + } #else apppath = QApplication::instance()->applicationFilePath(); @@ -1709,7 +1716,10 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline) QApplication::instance()->exit(); // ::exit(0); - } else { QMessageBox::warning(nullptr, tr("Gah!"), tr("If you can read this, the restart command didn't work. Your going to have to do it yourself manually."), QMessageBox::Ok); } + } else { + QMessageBox::warning(nullptr, tr("Gah!"), + tr("If you can read this, the restart command didn't work. You will have to do it yourself manually."), QMessageBox::Ok); + } #endif } @@ -1822,9 +1832,9 @@ void MainWindow::on_actionRebuildCPAP(QAction *action) if (backups) { if (QMessageBox::question(this, STR_MessageBox_Question, - tr("Are you sure you want to rebuild all CPAP data for the following machine:\n\n" + + tr("Are you sure you want to rebuild all CPAP data for the following machine:\n\n") + mach->brand() + " " + mach->model() + " " + - mach->modelnumber() + " (" + mach->serial() + ")\n\n"+ + mach->modelnumber() + " (" + mach->serial() + ")\n\n" + tr("Please note, that this could result in loss of graph data if OSCR's backups have been disabled or interfered with in any way."), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) { return; @@ -1834,7 +1844,7 @@ void MainWindow::on_actionRebuildCPAP(QAction *action) STR_MessageBox_Warning, "

    "+STR_MessageBox_Warning+": "+tr("For some reason, OSCR does not have any backups for the following machine:")+ "

    " + "

    "+mach->brand() + " " + mach->model() + " " + mach->modelnumber() + " (" + mach->serial() + ")

    "+ - "

    "+tr("Provided you have made your own backups for ALL of your CPAP data, you can still complete this operation, but you will have to restore from your backups manually.")+"

    " + "

    "+tr("Provided you have made your own backups for ALL of your CPAP data, you can still complete this operation, but you will have to restore from your backups manually.")+"

    " + "

    "+tr("Are you really sure you want to do this?")+"

    ", QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) { return; @@ -1850,9 +1860,9 @@ void MainWindow::on_actionRebuildCPAP(QAction *action) importCPAP(ImportPath(path, loader), tr("Please wait, importing from backup folder(s)...")); } else { if (QMessageBox::information(this, STR_MessageBox_Warning, - tr("Because there are no internal backups to rebuild from, you will have to restore from your own.")+"\n\n"+ - tr("Would you like to import from your own backups now? (you will have no data visible for this machine until you do)"), - QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) { + tr("Because there are no internal backups to rebuild from, you will have to restore from your own.")+"\n\n"+ + tr("Would you like to import from your own backups now? (you will have no data visible for this machine until you do)"), + QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) { on_action_Import_Data_triggered(); } else { } @@ -1940,23 +1950,26 @@ void MainWindow::purgeMachine(Machine * mach) p_profile->StoreMachines(); } else { QMessageBox::warning(this, STR_MessageBox_Error, - tr("A file permission error or simillar screwed up the purge process, you will have to delete the following folder manually:") - +"\n\n"+ - QDir::toNativeSeparators(mach->getDataPath()), QMessageBox::Ok, QMessageBox::Ok); - if (overview) overview->ReloadGraphs(); + tr("A file permission error casued the purge process to fail; you will have to delete the following folder manually:") + + "\n\n" + QDir::toNativeSeparators(mach->getDataPath()), QMessageBox::Ok, QMessageBox::Ok); + + if (overview) + overview->ReloadGraphs(); if (daily) { daily->clearLastDay(); // otherwise Daily will crash daily->ReloadGraphs(); } - if (welcome) welcome->refreshPage(); + if (welcome) + welcome->refreshPage(); //GenerateStatistics(); return; } - if (overview) overview->ReloadGraphs(); + if (overview) + overview->ReloadGraphs(); QFile rxcache(p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" )); rxcache.remove(); @@ -1986,9 +1999,7 @@ void MainWindow::on_helpButton_clicked() #ifndef helpless ui->tabWidget->setCurrentWidget(help); #else -QMessageBox msgBox; - msgBox.setText("No help is available."); - msgBox.exec(); + QMessageBox::information(nullptr, STR_MessageBox_Error, tr("No help is available.")); #endif } @@ -2222,13 +2233,13 @@ void MainWindow::on_actionImport_RemStar_MSeries_Data_triggered() void MainWindow::on_actionSleep_Disorder_Terms_Glossary_triggered() { // QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Glossary")); - QMessageBox(tr("Not yet implemented")); + QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The Glossary is not yet implemented")); } void MainWindow::on_actionHelp_Support_OSCR_Development_triggered() { // QDesktopServices().openUrl(QUrl("https://sleepyhead.jedimark.net/donate.php")); - QMessageBox(tr("Not yet implemented")); + QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Donations are not yet implemented")); } void MainWindow::on_actionChange_Language_triggered() @@ -2449,7 +2460,7 @@ void MainWindow::on_actionExport_CSV_triggered() void MainWindow::on_actionExport_Review_triggered() { - QMessageBox::information(nullptr, STR_MessageBox_Information, QObject::tr("Sorry, this feature is not implemented yet"), QMessageBox::Ok); + QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Export review is not yet implemented")); } void MainWindow::on_mainsplitter_splitterMoved(int, int) @@ -2464,7 +2475,7 @@ void MainWindow::on_actionReport_a_Bug_triggered() // QString language = settings.value(LangSetting).toString(); // // QDesktopServices::openUrl(QUrl(QString("https://sleepyhead.jedimark.net/report_bugs.php?lang=%1&version=%2&platform=%3").arg(language).arg(VersionString).arg(PlatformString))); - QMessageBox(tr("Not yet implemented")); + QMessageBox::information(nullptr, STR_MessageBox_Error, tr("Bug reports are not yet implemented")); } void MainWindow::on_profilesButton_clicked() diff --git a/oscr/mainwindow.h b/oscr/mainwindow.h index eea77bd1..20c82748 100644 --- a/oscr/mainwindow.h +++ b/oscr/mainwindow.h @@ -267,7 +267,7 @@ class MainWindow : public QMainWindow void on_actionSleep_Disorder_Terms_Glossary_triggered(); - void on_actionHelp_Support_SleepyHead_Development_triggered(); + void on_actionHelp_Support_OSCR_Development_triggered(); void aboutBoxLinkClicked(const QUrl &url); diff --git a/oscr/oscr.pro b/oscr/oscr.pro index 72b01aa9..037d1110 100644 --- a/oscr/oscr.pro +++ b/oscr/oscr.pro @@ -18,6 +18,7 @@ contains(DEFINES, helpless) { } DEFINES += QT_DEPRECATED_WARNINGS +DEFINES += NO_UPDATER #OSRC requires OpenGL 2.0 support to run smoothly #On platforms where it's not available, it can still be built to work @@ -357,6 +358,8 @@ OTHER_FILES += \ docs/graphs.xml \ docs/channels.xml \ docs/release_notes.html \ + docs/about.html \ + docs/credits.html \ docs/startup_tips.txt \ docs/countries.txt \ docs/tz.txt \ diff --git a/oscr/preferencesdialog.cpp b/oscr/preferencesdialog.cpp index 432f4705..af032550 100644 --- a/oscr/preferencesdialog.cpp +++ b/oscr/preferencesdialog.cpp @@ -1165,8 +1165,8 @@ void PreferencesDialog::on_resetChannelDefaults_clicked() void PreferencesDialog::on_createSDBackups_clicked(bool checked) { if (!checked && p_profile->session->backupCardData()) { - if (QMessageBox::question(this, - STR_MessageBox_Warning, tr("Switching off backups is not a good idea, because OSCR needs these to rebuild the database if errors are found.\n\n"+ + if (QMessageBox::question(this, + STR_MessageBox_Warning, tr("Switching off backups is not a good idea, because OSCR 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) { // do nothing } else { diff --git a/oscr/statistics.cpp b/oscr/statistics.cpp index 939129ba..4db1365b 100644 --- a/oscr/statistics.cpp +++ b/oscr/statistics.cpp @@ -637,7 +637,7 @@ QString Statistics::htmlHeader(bool showheader) if (showheader) { html += "
    " +resizeHTMLPixmap(logoPixmap,64,64)+"
    " - "" + STR_TR_SleepyHead + "
    " + "" + STR_TR_OSCR + "
    " "" + tr("Usage Statistics") + "
    " "" + tr("(NOT approved for compliance or medical reporting purposes)")+"
    "; @@ -1424,7 +1424,7 @@ void Statistics::UpdateRecordsBox() } else { html += "
    "+tr("Want more information?")+"
    "; - html += ""+tr("SleepyHead needs all summary data loaded to calculate best/worst data for individual days.")+"

    "; + html += ""+tr("OSCR needs all summary data loaded to calculate best/worst data for individual days.")+"

    "; html += ""+tr("Please enable Pre-Load Summaries checkbox in preferences to make sure this data is available.")+"

    "; }