Help About fix for missing windows revision, Changed export Summary to Daily

This commit is contained in:
Mark Watkins 2011-11-15 12:14:44 +10:00
parent 74a8492e9b
commit 1534fe50bd
2 changed files with 6 additions and 3 deletions

View File

@ -53,7 +53,7 @@
<item>
<widget class="QRadioButton" name="rb1_Summary">
<property name="text">
<string>Summary</string>
<string>Daily</string>
</property>
<property name="checked">
<bool>true</bool>

View File

@ -343,12 +343,15 @@ void MainWindow::on_webView_loadProgress(int progress)
void MainWindow::on_action_About_triggered()
{
QString msg=tr("<html><body><div align='center'><h2>SleepyHead v%1.%2.%3</h2>Build Date: %4 %5<br/>Revision: %6<hr>"
QString gitrev=QString(GIT_REVISION);
if (!gitrev.isEmpty()) gitrev="Revision: "+gitrev;
QString msg=tr("<html><body><div align='center'><h2>SleepyHead v%1.%2.%3</h2>Build Date: %4 %5<br/>%6<hr>"
"Copyright &copy;2011 Mark Watkins (jedimark) <br> \n"
"<a href='http://sleepyhead.sourceforge.net'>http://sleepyhead.sourceforge.net</a> <hr>"
"This software is released under the GNU Public License <br>"
"<i>This software comes with absolutely no warranty, either express of implied. It comes with no guarantee of fitness for any particular purpose. No guarantees are made regarding the accuracy of any data this program displays."
"</div></body></html>").arg(major_version).arg(minor_version).arg(revision_number).arg(__DATE__).arg(__TIME__).arg(GIT_REVISION);
"</div></body></html>").arg(major_version).arg(minor_version).arg(revision_number).arg(__DATE__).arg(__TIME__).arg(gitrev);
QMessageBox msgbox(QMessageBox::Information,tr("About SleepyHead"),"",QMessageBox::Ok,this);
msgbox.setTextFormat(Qt::RichText);
msgbox.setText(msg);