diff --git a/Resources.qrc b/Resources.qrc index 00d2e50c..f71e5862 100644 --- a/Resources.qrc +++ b/Resources.qrc @@ -1,6 +1,5 @@ - docs/sheep.png docs/index.html icons/sdcard.png icons/preferences.png @@ -43,5 +42,7 @@ icons/nographs.png icons/sheep.png docs/update_notes.html + docs/sheep.png + docs/sheep.jpg diff --git a/docs/release_notes.html b/docs/release_notes.html index 78c73bb7..705fe861 100644 --- a/docs/release_notes.html +++ b/docs/release_notes.html @@ -1,6 +1,6 @@ -

SleepyHead v0.9.3 BETA

+

SleepyHead v0.9.3 BETA

Release Notes

Hi There!

diff --git a/main.cpp b/main.cpp index d70c2262..4f706937 100644 --- a/main.cpp +++ b/main.cpp @@ -72,23 +72,16 @@ void release_notes() // Language??? - QFile f(":/docs/release_notes.html"); - if (!f.open(QIODevice::ReadOnly)) { - qWarning() << "Could not access release notes"; - return; - } - QTextStream ts(&f); + web.load(QUrl("qrc:/docs/release_notes.html")); - QString html=ts.readAll(); - web.setHtml(html); - - //web.load(QUrl("qrc:/docs/release_notes.html")); //web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn); relnotes.setLayout(&layout); layout.insertWidget(0,&web,1); QPushButton okbtn(QObject::tr("&Ok, get on with it.."),&relnotes); relnotes.connect(&okbtn,SIGNAL(clicked()),SLOT(accept())); layout.insertWidget(1,&okbtn,1); + QApplication::processEvents(); // MW: Needed on Mac, as the html has to finish loading + relnotes.exec(); } @@ -101,17 +94,7 @@ void build_notes() relnotes.setWindowTitle("SleepyHead v"+FullVersionString+" Update"); // Language??? - 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.load(QUrl("qrc:/docs/update_notes.html")); //web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn); relnotes.setLayout(&layout); @@ -120,6 +103,8 @@ void build_notes() relnotes.connect(&okbtn,SIGNAL(clicked()),SLOT(accept())); layout.insertWidget(1,&okbtn,1); layout.setMargin(0); + QApplication::processEvents(); // MW: Needed on Mac, as the html has to finish loading + relnotes.setFixedSize(500,400); relnotes.exec(); }