Skip to content

Commit

Permalink
Minor fix in about
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantor committed May 28, 2021
1 parent eebcaf9 commit 7e35a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int main(int argc, char *argv[]) {
QSurfaceFormat::setDefaultFormat(format);

fractals3DApp.setApplicationName("Fractals 3D");
fractals3DApp.setApplicationVersion("v1.4");
fractals3DApp.setApplicationVersion("v1.5");
fractals3DApp.setOrganizationName("HSE University Saint Petersburg");
fractals3DApp.setOrganizationDomain("spb.hse.ru");

Expand Down
1 change: 1 addition & 0 deletions src/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ void MainWindow::makeMenu() {
aboutMenu->addAction("About", [&]() {
QMessageBox aboutBox;
aboutBox.setIcon(QMessageBox::Information);
aboutBox.setWindowTitle("About Fractals 3D");
aboutBox.setTextFormat(Qt::RichText);
aboutBox.setText("<strong>Fractals 3D</strong> is a program designed for exploring three-dimensional fractals. Made by the three students of the HSE University Saint Petersburg campus.<br><br><strong>Authors:</strong> Sergey Zhuravlev, Stepan Konstantinov, Daria Ledneva<br><strong>Mentor:</strong> Anton Sosnin<br><br><strong>Version:</strong> " + dynamic_cast<QApplication *>(QCoreApplication::instance())->applicationVersion() + "<br><strong>Source:</strong> <a href='https://github.com/Constantor/fractals3d'>github.com/Constantor/fractals3d</a><br><strong>License:</strong> GNU GPL v3.0");
aboutBox.exec();
Expand Down

0 comments on commit 7e35a56

Please sign in to comment.