mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fixed bug in displaying release notes
This commit is contained in:
parent
70f8bfcd8d
commit
188d53b3ed
@ -6,19 +6,19 @@
|
|||||||
<p>Hi There!</p>
|
<p>Hi There!</p>
|
||||||
<p>Thanks for bearing with us this year - it has been a crazy year for some of us, and we're thankful for a few who have stepped up to help out. Anyone who wants to contribue to SleepyHead (whether with code, documentation, or just helping those with questions), please contact us or post one one of the lists/forums on our website.</p>
|
<p>Thanks for bearing with us this year - it has been a crazy year for some of us, and we're thankful for a few who have stepped up to help out. Anyone who wants to contribue to SleepyHead (whether with code, documentation, or just helping those with questions), please contact us or post one one of the lists/forums on our website.</p>
|
||||||
<b>New features & bugs fixes in this Update:</b></br>
|
<b>New features & bugs fixes in this Update:</b></br>
|
||||||
|
|
||||||
<list>
|
<list>
|
||||||
<li>Impproved Auto-Updater previously released in a test release.</li>
|
<li>Improved Auto-Updater previously released in a test release.</li>
|
||||||
<li>Support for the PRS1 Series 60, in large part due to a patch from Keary Griffin.</li>
|
<li>Support for the PRS1 Series 60, in large part due to a patch from Keary Griffin.</li>
|
||||||
<li>A bunch of small PRS1 fixes, especially for the AutoSV.</li>
|
<li>A bunch of small PRS1 fixes, especially for the AutoSV.</li>
|
||||||
<li>Added Flow Limit to the summary and overview screens. This can be a useful indicator in certain types of apnea.</li>
|
<li>Added Flow Limit to the summary and overview screens. This can be a useful indicator in certain types of apnea.</li>
|
||||||
<li>Some 64-bit fixes, and some other bugfixes mainly useful to those building from source, especially on linux.</li>
|
<li>Some 64-bit fixes, and some other bugfixes mainly useful to those building from source, especially on linux.</li>
|
||||||
<li>Added Melbourne as a timezone option.</li>
|
<li>Added Melbourne as a timezone option.</li>
|
||||||
<li>Fixed some issues with the prescription changes table with certain machines.</li>
|
<li>Fixed some issues with the prescription changes table with certain machines.</li>
|
||||||
|
|
||||||
</list>
|
</list>
|
||||||
|
|
||||||
<p><b>Sleep Well, and have fun!</b></p>
|
<p><b>Sleep Well, and have fun!</b></p>
|
||||||
<p>Mark Watkins (JediMark)</p>
|
<p>Mark Watkins (JediMark)<br/>
|
||||||
<p>Richard Freeman (rich0)</p>
|
Richard Freeman (rich0)</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
28
main.cpp
28
main.cpp
@ -66,11 +66,23 @@ void initialize()
|
|||||||
void release_notes()
|
void release_notes()
|
||||||
{
|
{
|
||||||
QDialog relnotes;
|
QDialog relnotes;
|
||||||
|
relnotes.setWindowTitle(QObject::tr("SleepyHead Release Notes"));
|
||||||
QVBoxLayout layout(&relnotes);
|
QVBoxLayout layout(&relnotes);
|
||||||
QWebView web(&relnotes);
|
QWebView web(&relnotes);
|
||||||
|
|
||||||
// Language???
|
// Language???
|
||||||
|
|
||||||
web.load(QUrl("qrc:/docs/release_notes.html"));
|
QFile f(":/docs/release_notes.html");
|
||||||
|
if (!f.open(QIODevice::ReadOnly)) {
|
||||||
|
qWarning() << "Could not access release notes";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
QTextStream ts(&f);
|
||||||
|
|
||||||
|
QString html=ts.readAll();
|
||||||
|
web.setHtml(html);
|
||||||
|
|
||||||
|
//web.load(QUrl("qrc:/docs/release_notes.html"));
|
||||||
//web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn);
|
//web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn);
|
||||||
relnotes.setLayout(&layout);
|
relnotes.setLayout(&layout);
|
||||||
layout.insertWidget(0,&web,1);
|
layout.insertWidget(0,&web,1);
|
||||||
@ -83,13 +95,25 @@ void release_notes()
|
|||||||
void build_notes()
|
void build_notes()
|
||||||
{
|
{
|
||||||
QDialog relnotes;
|
QDialog relnotes;
|
||||||
|
relnotes.setWindowTitle(QObject::tr("SleepyHead Update Notes"));
|
||||||
QVBoxLayout layout(&relnotes);
|
QVBoxLayout layout(&relnotes);
|
||||||
QWebView web(&relnotes);
|
QWebView web(&relnotes);
|
||||||
relnotes.setWindowTitle("SleepyHead v"+FullVersionString+" Update");
|
relnotes.setWindowTitle("SleepyHead v"+FullVersionString+" Update");
|
||||||
// Language???
|
// Language???
|
||||||
|
|
||||||
web.load(QUrl("qrc:/docs/update_notes.html"));
|
QFile f(":/docs/update_notes.html");
|
||||||
|
if (!f.open(QIODevice::ReadOnly)) {
|
||||||
|
qWarning() << "Could not access update notes";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
QTextStream ts(&f);
|
||||||
|
|
||||||
|
QString html=ts.readAll();
|
||||||
|
web.setHtml(html);
|
||||||
|
|
||||||
|
//web.load(QUrl("qrc:/docs/update_notes.html"));
|
||||||
//web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn);
|
//web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn);
|
||||||
|
|
||||||
relnotes.setLayout(&layout);
|
relnotes.setLayout(&layout);
|
||||||
layout.insertWidget(0,&web,1);
|
layout.insertWidget(0,&web,1);
|
||||||
QPushButton okbtn(QObject::tr("&Ok, get on with it.."),&relnotes);
|
QPushButton okbtn(QObject::tr("&Ok, get on with it.."),&relnotes);
|
||||||
|
Loading…
Reference in New Issue
Block a user