Skip to content

Commit 813d186

Browse files
authored
October 28, 2023 (#190)
1 parent 9b236c6 commit 813d186

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.nuget/directxtk12_desktop_2019.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ SpriteBatch - simple & efficient 2D sprite rendering
3434
SpriteFont - bitmap based text rendering
3535
VertexTypes - structures for commonly used vertex data formats
3636
WICTextureLoader - WIC-based image file texture loader</description>
37-
<releaseNotes>Matches the September 1, 2023 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the October 28, 2023 release on GitHub.</releaseNotes>
3838
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615561</projectUrl>
3939
<repository type="git" url="https://github.com/microsoft/DirectXTK12.git" />
4040
<icon>images\icon.jpg</icon>

.nuget/directxtk12_uwp.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ SpriteBatch - simple &amp; efficient 2D sprite rendering
3434
SpriteFont - bitmap based text rendering
3535
VertexTypes - structures for commonly used vertex data formats
3636
WICTextureLoader - WIC-based image file texture loader</description>
37-
<releaseNotes>Matches the September 1, 2023 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the October 28, 2023 release on GitHub.</releaseNotes>
3838
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615561</projectUrl>
3939
<repository type="git" url="https://github.com/microsoft/DirectXTK12.git" />
4040
<icon>images\icon.jpg</icon>

CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33

44
cmake_minimum_required (VERSION 3.20)
55

6-
set(DIRECTXTK12_VERSION 1.5.5)
6+
set(DIRECTXTK12_VERSION 1.5.6)
77

8-
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")
8+
if(WINDOWS_STORE OR (DEFINED XBOX_CONSOLE_TARGET))
9+
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")
10+
endif()
911

1012
project (DirectXTK12
1113
VERSION ${DIRECTXTK12_VERSION}

HISTORY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
66

77
## Release History
88

9+
### October 28, 2023
10+
* Added ``CreateUploadBuffer`` and ``CreateUAVBuffer`` helpers
11+
* Fixed validation bug with WIC loader when using autogen and force RGBA together
12+
* Fixed minor link issue with a Xbox PIX custom memory method
13+
* Xbox shader compilation now uses ``-HV 2021``
14+
* Additional methods for *DirectX Tool Kit for Audio* emitter for linear and inverse-square falloff curves
15+
916
### September 1, 2023
1017
* GraphicsMemory updated to use Xbox PIX custom memory events with optional tags
1118
* Retired ARM (32-bit) support for the UWP platform

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ http://go.microsoft.com/fwlink/?LinkID=615561
66

77
Copyright (c) Microsoft Corporation.
88

9-
**September 1, 2023**
9+
**October 28, 2023**
1010

1111
This package contains the "DirectX Tool Kit", a collection of helper classes for writing Direct3D 12 C++ code for Universal Windows Platform (UWP) apps for Windows 11 and Windows 10, game titles for Xbox Series X\|S and Xbox One, and Win32 desktop applications for Windows 11 and Windows 10.
1212

0 commit comments

Comments
 (0)