Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
m417z committed Oct 3, 2023
1 parent 60db60b commit 8e32d23
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions MainDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

#include "symbol_enum.h"

#define WSH_VERSION L"1.0.1"

namespace {

struct InitialUIValues {
Expand Down Expand Up @@ -198,8 +200,7 @@ void CMainDlg::OnAppAbout(UINT uNotifyCode, int nID, CWindow wndCtl) {
L"with the symbols API.\n\n"
L"The tool was created to help with Windhawk mod development.\n\n"
L"Windhawk can be downloaded at <A "
L"HREF=\"https://windhawk.net\">windhawk.net</A>.\n\n"
L"Compiled at " __DATE__ " " __TIME__ "\n\n";
L"HREF=\"https://windhawk.net\">windhawk.net</A>.";

TASKDIALOGCONFIG taskDialogConfig{
.cbSize = sizeof(taskDialogConfig),
Expand All @@ -209,7 +210,7 @@ void CMainDlg::OnAppAbout(UINT uNotifyCode, int nID, CWindow wndCtl) {
TDF_POSITION_RELATIVE_TO_WINDOW,
.pszWindowTitle = L"About",
.pszMainIcon = MAKEINTRESOURCE(IDR_MAINFRAME),
.pszMainInstruction = L"Windhawk Symbol Helper",
.pszMainInstruction = L"Windhawk Symbol Helper v" WSH_VERSION,
.pszContent = content,
.pfCallback = [](HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam,
LONG_PTR lpRefData) -> HRESULT {
Expand Down
8 changes: 4 additions & 4 deletions windhawk-symbol-helper.rc
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEVERSION 1,0,1,0
PRODUCTVERSION 1,0,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -141,12 +141,12 @@ BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", "Windhawk Symbol Helper"
VALUE "FileVersion", "1.0.0.0"
VALUE "FileVersion", "1.0.1.0"
VALUE "InternalName", "windhawk-symbol-helper"
VALUE "LegalCopyright", "Copyright Ramen Software"
VALUE "OriginalFilename", "windhawk-symbol-helper.exe"
VALUE "ProductName", "Windhawk Symbol Helper"
VALUE "ProductVersion", "1.0.0.0"
VALUE "ProductVersion", "1.0.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 8e32d23

Please sign in to comment.