mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Help About fix for missing windows revision, Changed export Summary to Daily
This commit is contained in:
parent
74a8492e9b
commit
1534fe50bd
@ -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>
|
||||
|
@ -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 ©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);
|
||||
|
Loading…
Reference in New Issue
Block a user