Skip to content

Commit

Permalink
Updated to build number to 0.3.1 (using new WDBReader build)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frostshake committed Jul 11, 2024
1 parent a8bb016 commit e53c888
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion WMVx/Build.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#pragma once

#define WMVX_BUILD "0.3.0"
#define WMVX_BUILD "0.3.1"
1 change: 1 addition & 0 deletions WMVx/LibraryNpcsControl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
8 changes: 4 additions & 4 deletions WMVx/WMVx.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ IDI_ICON1 ICON DISCARDABLE "WMVx.ico"
#include <windows.h>

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

0 comments on commit e53c888

Please sign in to comment.