Add qml note to manual, add version details to log

This commit is contained in:
GriffinR 2025-08-07 15:02:29 -04:00
parent e6a20c76bb
commit c53d6eb105
2 changed files with 5 additions and 1 deletions

View File

@ -11,6 +11,9 @@ Porymap is extensible via scripting capabilities. This allows the user to write
- Procedurally Generated Maps
- Randomize Grass Patterns
.. note::
If you are compiling Porymap yourself, these features will only be available if Qt's ``qml`` module is installed.
Custom Scripts Editor
---------------------

View File

@ -74,7 +74,8 @@ MainWindow::MainWindow(QWidget *parent) :
ui->setupUi(this);
logInit();
logInfo(QString("Launching Porymap v%1").arg(QCoreApplication::applicationVersion()));
logInfo(QString("Launching Porymap v%1 (%2)").arg(QCoreApplication::applicationVersion()).arg(QStringLiteral(PORYMAP_LATEST_COMMIT)));
logInfo(QString("Using Qt v%2 (%3)").arg(QStringLiteral(QT_VERSION_STR)).arg(QSysInfo::buildCpuArchitecture()));
}
void MainWindow::initialize() {