Skip to content

Commit

Permalink
Version 3.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sawickiap committed Dec 30, 2024
1 parent 1d9deaa commit ccebb60
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions Src/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit ccebb60

Please sign in to comment.