diff --git a/CHANGELOG.md b/CHANGELOG.md index 684b83f..cec81c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 3.7.3 (2024-12-30) + +Changes: + +- Fixed a bug in format printing in JSON mode. (Developed by @Devaniti as #25) + +Compiled with DirectX 12 Agility SDK 1.614.1 ("D3d12info.exe") / 1.715.1-preview ("D3d12info_preview.exe"), AMD AGS 6.2.0, NVAPI R550, Intel GPU Detect from 2023-07-18 (all same as previous version). + # Version 3.7.2 (2024-11-27) Changes: diff --git a/Src/Utils.cpp b/Src/Utils.cpp index 2f8e00e..47e296c 100644 --- a/Src/Utils.cpp +++ b/Src/Utils.cpp @@ -11,8 +11,8 @@ For more information, see files README.md, LICENSE.txt. const wchar_t* const PROGRAM_NAME = L"D3d12info"; const char* const PROGRAM_NAME_ANSI = "D3d12info"; -const wchar_t* const PROGRAM_VERSION = L"3.7.2"; -const uint32_t PROGRAM_VERSION_NUMBER = (3u << 20) | (7u << 10) | (2u); +const wchar_t* const PROGRAM_VERSION = L"3.7.3"; +const uint32_t PROGRAM_VERSION_NUMBER = (3u << 20) | (7u << 10) | (3u); wstring SizeToStr(uint64_t size) {