Skip to content

Commit 3e68b04

Browse files
committedMar 1, 2025·
Version 3.10.0
1 parent cb1a7d6 commit 3e68b04

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed
 

‎CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Version 3.10.0 (2025-03-01)
2+
3+
- Added command-line parameter `-o --OutputFile=<FilePath>` that prints the output to a given file instead of the standard output. (Developed by @Devaniti as #26)
4+
- It can be useful for automated processing, where additional messages printed to the standard output e.g., by implicit Vulkan layers can cause problems.
5+
- Added command-line parameter `--MinimizeJson` that prints the JSON output in a compact format, suitable for efficient automated processing. (Developed by @Devaniti as #26)
6+
- Removed command-line parameter `--AllNonSoftware`, which is the default behavior anyway. (Developed by @Devaniti as #26)
7+
- Improved quality of the source code, including:
8+
- Rewrite of the entire output printing code, which results in some changes in the text output formatting. (Developed by @Devaniti as #26)
9+
- Fixes in enum values, including ones that fix the correctness of the JSON output.
10+
- Enabled ClangFormat, reformatted the entire code. (Developed by @Devaniti as #27)
11+
12+
Compiled with DirectX 12 Agility SDK 1.615.1 ("D3d12info.exe") / 1.716.1-preview ("D3d12info\_preview.exe"), AMD AGS 6.2.0, AMD device\_info from 2024-09-24 (commit hash `7379d082f1d8d64c9d1168b84b7f6b2a9702c82f`), NVAPI R570, Intel GPU Detect from 2023-07-18 (commit hash `dd962c44acdad4ea21632e0bd144ab139e8ad8eb`).
13+
114
# Version 3.9.1 (2025-02-09)
215

316
Changes:

‎Src/Utils.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ For more information, see files README.md, LICENSE.txt.
1111

1212
const wchar_t* const PROGRAM_NAME = L"D3d12info";
1313
const char* const PROGRAM_NAME_ANSI = "D3d12info";
14-
const wchar_t* const PROGRAM_VERSION = L"3.9.1";
15-
const uint32_t PROGRAM_VERSION_NUMBER = (3u << 20) | (9u << 10) | (1u);
14+
const wchar_t* const PROGRAM_VERSION = L"3.10.0";
15+
const uint32_t PROGRAM_VERSION_NUMBER = (3u << 20) | (10u << 10) | (0u);
1616

1717
wstring SizeToStr(uint64_t size)
1818
{

0 commit comments

Comments
 (0)
Please sign in to comment.