Skip to content

Commit 762657d

Browse files
authored
October 28, 2024 (#502)
1 parent fabe5a1 commit 762657d

6 files changed

+17
-5
lines changed

.nuget/directxtk_desktop_2019.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SpriteBatch - simple & efficient 2D sprite rendering
3030
SpriteFont - bitmap based text rendering
3131
VertexTypes - structures for commonly used vertex data formats
3232
WICTextureLoader - WIC-based image file texture loader</description>
33-
<releaseNotes>Matches the September 4, 2024 release on GitHub.
33+
<releaseNotes>Matches the October 28, 2024 release on GitHub.
3434

3535
DirectX Tool Kit for Audio in this package uses XAudio2Redist NuGet package to support Windows 7 or later.</releaseNotes>
3636
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248929</projectUrl>

.nuget/directxtk_desktop_win10.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SpriteBatch - simple &amp; efficient 2D sprite rendering
3030
SpriteFont - bitmap based text rendering
3131
VertexTypes - structures for commonly used vertex data formats
3232
WICTextureLoader - WIC-based image file texture loader</description>
33-
<releaseNotes>Matches the September 4, 2024 release on GitHub.
33+
<releaseNotes>Matches the October 28, 2024 release on GitHub.
3434

3535
DirectX Tool Kit for Audio in this package uses XAudio 2.9 which requires Windows 10 or later.</releaseNotes>
3636
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248929</projectUrl>

.nuget/directxtk_uwp.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SpriteBatch - simple &amp; efficient 2D sprite rendering
3030
SpriteFont - bitmap based text rendering
3131
VertexTypes - structures for commonly used vertex data formats
3232
WICTextureLoader - WIC-based image file texture loader</description>
33-
<releaseNotes>Matches the September 4, 2024 release on GitHub.</releaseNotes>
33+
<releaseNotes>Matches the October 28, 2024 release on GitHub.</releaseNotes>
3434
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248929</projectUrl>
3535
<repository type="git" url="https://github.com/microsoft/DirectXTK.git" />
3636
<icon>images\icon.jpg</icon>

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
66

77
## Release History
88

9+
### October 28, 2024
10+
* All enums now use ``uint32_t`` as the underlying type rather than ``unsigned long`` or ``int``.
11+
* Added `DDS_LOADER_INGNORE_MIPS` flag to DDSTextureLoader
12+
* Refactored CMO structures into their own header
13+
* xwbool:
14+
* Add "GNU-style" *--long-options* to the command-line tools (all existing switches are still supported)
15+
* Refactored code to use shared header
16+
* MakeSpriteFont: supports `--version` and `--help` and accepts either `/` or `-` style command-line parameters.
17+
* CMake and MSBuild project updates
18+
919
### September 4, 2024
1020
* *DirectX Tool Kit for Audio* update
1121
* Added ``IsValid`` method to **AudioEmitter** and **AudioListener**

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required (VERSION 3.20)
55

6-
set(DIRECTXTK_VERSION 1.8.9)
6+
set(DIRECTXTK_VERSION 1.9.0)
77

88
if(WINDOWS_STORE OR (DEFINED XBOX_CONSOLE_TARGET))
99
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ http://go.microsoft.com/fwlink/?LinkId=248929
66

77
Copyright (c) Microsoft Corporation.
88

9-
**September 4, 2024**
9+
**October 28, 2024**
1010

1111
This package contains the "DirectX Tool Kit", a collection of helper classes for writing Direct3D 11 C++ code for Universal Windows Platform (UWP) apps for Windows 11, Windows 10, Xbox One, and Win32 desktop applications for Windows 7 Service Pack 1 or later.
1212

@@ -102,6 +102,8 @@ For a full change history, see [CHANGELOG.md](https://github.com/microsoft/Direc
102102

103103
* Xbox One support for DirectX 11 requires the legacy Xbox One XDK. See February 2023 or earlier releases of *DirectX Tool Kit* for the required project files.
104104

105+
* As of the October 2024 release, the xwbtool command-line tool also supports GNU-style long options using ``--``. All existing switches continue to function. MakeSpriteFont supports only `--version` and ``--help`` for POSIX-style parameters.
106+
105107
## Support
106108

107109
For questions, consider using [Stack Overflow](https://stackoverflow.com/questions/tagged/directxtk) with the *directxtk* tag, or the [DirectX Discord Server](https://discord.gg/directx) in the *dx9-dx11-developers* channel.

0 commit comments

Comments
 (0)