Skip to content

Commit bd17eb2

Browse files
authored
October 27, 2025 (#252)
1 parent 7834b7d commit bd17eb2

7 files changed

Lines changed: 12 additions & 6 deletions

File tree

.nuget/directxmesh_desktop_2019.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Windows desktop applications using Visual Studio 2019 (16.11) or Visual Studio 2022 on Windows 8.1 or later.
1111

1212
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
13-
<releaseNotes>Matches the July 9, 2025 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the October 27, 2025 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
1616
<icon>images\icon.jpg</icon>

.nuget/directxmesh_desktop_win10.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Windows desktop applications using Visual Studio 2022 on Windows 10 / Windows 11 including both DirectX 11 and DirectX 12.
1111

1212
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
13-
<releaseNotes>Matches the July 9, 2025 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the October 27, 2025 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
1616
<icon>images\icon.jpg</icon>

.nuget/directxmesh_uwp.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Universal Windows Platform apps on Windows 10 / Windows 11 using Visual Studio 2022.
1111

1212
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
13-
<releaseNotes>Matches the July 9, 2025 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the October 27, 2025 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
1616
<icon>images\icon.jpg</icon>

CHANGELOG.md

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

77
## Release History
88

9+
### October 27, 2025
10+
* Bug fixes for Meshlet generation reported by customers
11+
* Minor code review
12+
* Added October 2025 GDK projects for VS 2022
13+
* CMake project update to use 3.21 minimum
14+
915
### July 9, 2025
1016
* Reformat source using updated .editorconfig settings and general lint cleanup
1117
* WaveFrontReader non-text data file error handling

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.21)
55

6-
set(DIRECTXMESH_VERSION 1.6.9)
6+
set(DIRECTXMESH_VERSION 1.7.0)
77

88
project(DirectXMesh
99
VERSION ${DIRECTXMESH_VERSION}

DirectXMesh/DirectXMesh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include <DirectXCollision.h>
4141
#include <DirectXPackedVector.h>
4242

43-
#define DIRECTX_MESH_VERSION 169
43+
#define DIRECTX_MESH_VERSION 170
4444

4545
#if defined(_WIN32) && defined(DIRECTX_MESH_EXPORT)
4646
#ifdef __GNUC__

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=324981
66

77
Copyright (c) Microsoft Corporation.
88

9-
## July 9, 2025
9+
## October 27, 2025
1010

1111
This package contains DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.
1212

0 commit comments

Comments
 (0)