diff --git a/WMVx/Build.h b/WMVx/Build.h index ff849b0..106f2d4 100644 --- a/WMVx/Build.h +++ b/WMVx/Build.h @@ -1,3 +1,3 @@ #pragma once -#define WMVX_BUILD "0.3.0" \ No newline at end of file +#define WMVX_BUILD "0.3.1" \ No newline at end of file diff --git a/WMVx/LibraryNpcsControl.cpp b/WMVx/LibraryNpcsControl.cpp index 5ea2bf8..0f2c918 100644 --- a/WMVx/LibraryNpcsControl.cpp +++ b/WMVx/LibraryNpcsControl.cpp @@ -214,6 +214,7 @@ void LibraryNpcsControl::loadNpcs() for (const auto& adaptor : gameDB->npcsDB->all()) { auto item = new QListWidgetItem(ui.listWidgetNpcs); item->setText(adaptor->getName()); + item->setToolTip(QString::number(adaptor->getId())); item->setData(Qt::UserRole, QVariant(adaptor->getId())); ui.listWidgetNpcs->addItem(item); } diff --git a/WMVx/WMVx.rc b/WMVx/WMVx.rc index 3235232..afd8893 100644 --- a/WMVx/WMVx.rc +++ b/WMVx/WMVx.rc @@ -3,16 +3,16 @@ IDI_ICON1 ICON DISCARDABLE "WMVx.ico" #include VS_VERSION_INFO VERSIONINFO -FILEVERSION 0,3,0,0 -PRODUCTVERSION 0,3,0,0 +FILEVERSION 0,3,1,0 +PRODUCTVERSION 0,3,1,0 BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904E4" BEGIN -VALUE "FileVersion", "0.3.0" +VALUE "FileVersion", "0.3.1" VALUE "ProductName", "WMVx" -VALUE "ProductVersion", "0.3.0" +VALUE "ProductVersion", "0.3.1" END END END \ No newline at end of file