Skip to content

Commit a238aff

Browse files
authored
July 9, 2025 (#337)
1 parent 09508a6 commit a238aff

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
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 March 20, 2025 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the July 9, 2025 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_desktop_win10.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 March 20, 2025 release on GitHub.
37+
<releaseNotes>Matches the July 9, 2025 release on GitHub.
3838

3939
DirectX Tool Kit for Audio in this package uses XAudio 2.9 which requires Windows 10 or later.</releaseNotes>
4040
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615561</projectUrl>

.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 March 20, 2025 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the July 9, 2025 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>

CHANGELOG.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+
### July 9, 2025
10+
* GamePad, Keyboard, and Mouse _GameInput_ implementation now supports v0, v1, and v2 of the API
11+
* Additional bounds checking for CMO and SDKMESH readers
12+
* Reformat source using updated .editorconfig settings and general lint cleanup
13+
* Minor code review
14+
* CMake project updates
15+
916
### March 20, 2025
1017
* C++17 `std::byte` support for `FromMemory` functions
1118
* GamePad, Keyboard, and Mouse _GameInput_ implementation now supports both v0 and v1 of the API

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required (VERSION 3.20)
55

6-
set(DIRECTXTK12_VERSION 1.6.2)
6+
set(DIRECTXTK12_VERSION 1.6.3)
77

88
if(XBOX_CONSOLE_TARGET STREQUAL "durango")
99
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")

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-
# March 20, 2025
9+
## July 9, 2025
1010

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

build/preparerelease.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ else {
6868

6969
$newversion = $newrawversion[0] + "." + $newrawversion[1] + "." + $newrawversion[2]
7070

71-
$rawreleasedate = $(Get-Content $readme) | Select-String -Pattern "\*\*[A-Z][a-z]+\S.\d+,?\S.\d\d\d\d\*\*"
71+
$rawreleasedate = $(Get-Content $readme) | Select-String -Pattern "\#\#\s.[A-Z][a-z]+\S.\d+,?\S.\d\d\d\d"
7272
if ([string]::IsNullOrEmpty($rawreleasedate)) {
7373
Write-Error "ERROR: Failed to current release date!" -ErrorAction Stop
7474
}
75-
$releasedate = $rawreleasedate -replace '\*',''
75+
$releasedate = $rawreleasedate -replace '## ',''
7676

7777
if($releasedate -eq $newreleasedate) {
7878
Write-Error ("ERROR: Release "+$releasedate+" already exists!") -ErrorAction Stop
@@ -100,7 +100,7 @@ if($UpdateVersion) {
100100
(Get-Content $cmake).Replace("set(DIRECTXTK12_VERSION $version)","set(DIRECTXTK12_VERSION $newversion)") | Set-Content $cmake
101101
}
102102

103-
(Get-Content $readme).Replace("$rawreleasedate", "**$newreleasedate**") | Set-Content $readme
103+
(Get-Content $readme).Replace("$rawreleasedate", "# $newreleasedate") | Set-Content $readme
104104

105105
Get-ChildItem -Path ($reporoot + "\.nuget") -Filter *.nuspec | Foreach-Object {
106106
(Get-Content -Path $_.Fullname).Replace("$releasedate", "$newreleasedate") | Set-Content -Path $_.Fullname -Encoding utf8

0 commit comments

Comments
 (0)