Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit360f612

Browse files
authored
March 26, 2025 (#223)
1 parentd87264e commit360f612

File tree

9 files changed

+24
-15
lines changed

9 files changed

+24
-15
lines changed

‎.nuget/uvatlas_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
UVAtlas, a shared source library for creating and packing an isochart texture atlas.</description>
13-
<releaseNotes>Matches theOctober 29, 2024 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches theMarch 26, 2025 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=512686</projectUrl>
1515
<repositorytype="git"url="https://github.com/microsoft/UVAtlas.git" />
1616
<icon>images\icon.jpg</icon>

‎.nuget/uvatlas_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 8.1 or later.
1111

1212
UVAtlas, a shared source library for creating and packing an isochart texture atlas.</description>
13-
<releaseNotes>Matches theOctober 29, 2024 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches theMarch 26, 2025 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=512686</projectUrl>
1515
<repositorytype="git"url="https://github.com/microsoft/UVAtlas.git" />
1616
<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/UVAtlas/
66

77
##Release History
88

9+
###March 26, 2025
10+
* Retired support for Windows 7 and Windows 8.0
11+
* Minor code review
12+
* CMake project updates including support for BUILD_SHARED_LIBS (i.e. DLL vs. static library)
13+
* uvatlastool:
14+
* Updated for March 2025 DirectXTex & DirectXMesh releases
15+
916
###October 29, 2024
1017
* All enums now use``uint32_t`` as the underlying type rather than``unsigned long`` or``int``.
1118
* uvatlastool:

‎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(UVATLAS_VERSION 1.8.9)
6+
set(UVATLAS_VERSION 1.9.0)
77

88
project (UVAtlas
99
VERSION${UVATLAS_VERSION}

‎README.md‎

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

77
Copyright (c) Microsoft Corporation.
88

9-
**October 29, 2024**
9+
**March 26, 2025**
1010

1111
This package contains UVAtlas, a shared source library for creating and packing an isochart texture atlas.
1212

@@ -68,6 +68,8 @@ FOR SECURITY ADVISORIES, see [GitHub](https://github.com/microsoft/UVAtlas/secur
6868

6969
For a full change history, see[CHANGELOG.md](https://github.com/microsoft/UVAtlas/blob/main/CHANGELOG.md).
7070

71+
* Starting with the March 2025 release, Windows 7 and Windows 8.0 support has been retired.
72+
7173
* Starting with the December 2020 release, this library makes use of typed enum bitmask flags per the recommendation of the_C++ Standard_ section*17.5.2.1.3 Bitmask types*. This is consistent with Direct3D 12's use of the``DEFINE_ENUM_FLAG_OPERATORS`` macro. This may have*breaking change* impacts to client code:
7274

7375
* You cannot pass the``0`` literal as your option flags value. Instead you must make use of the appropriate default enum value:``UVATLAS_DEFAULT`` or``UVATLAS_IMT_DEFAULT``.

‎UVAtlas/inc/UVAtlas.h‎

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

4343
#include<DirectXMath.h>
4444

45-
#defineUVATLAS_VERSION189
45+
#defineUVATLAS_VERSION190
4646

4747
#ifdef UVATLAS_EXPORT
4848
#defineUVATLAS_API__declspec(dllexport)

‎UVAtlasTool/UVAtlasTool_2019.vcxproj‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -315,14 +315,14 @@
315315
</ItemGroup>
316316
<ImportProject="$(VCTargetsPath)\Microsoft.Cpp.targets" />
317317
<ImportGroupLabel="ExtensionTargets">
318-
<ImportProject="..\packages\directxmesh_desktop_2019.2024.10.29.1\build\native\directxmesh_desktop_2019.targets"Condition="Exists('..\packages\directxmesh_desktop_2019.2024.10.29.1\build\native\directxmesh_desktop_2019.targets')" />
319-
<ImportProject="..\packages\directxtex_desktop_2019.2024.10.29.1\build\native\directxtex_desktop_2019.targets"Condition="Exists('..\packages\directxtex_desktop_2019.2024.10.29.1\build\native\directxtex_desktop_2019.targets')" />
318+
<ImportProject="..\packages\directxmesh_desktop_2019.2025.3.25.2\build\native\directxmesh_desktop_2019.targets"Condition="Exists('..\packages\directxmesh_desktop_2019.2025.3.25.2\build\native\directxmesh_desktop_2019.targets')" />
319+
<ImportProject="..\packages\directxtex_desktop_2019.2025.3.25.2\build\native\directxtex_desktop_2019.targets"Condition="Exists('..\packages\directxtex_desktop_2019.2025.3.25.2\build\native\directxtex_desktop_2019.targets')" />
320320
</ImportGroup>
321321
<TargetName="EnsureNuGetPackageBuildImports"BeforeTargets="PrepareForBuild">
322322
<PropertyGroup>
323323
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
324324
</PropertyGroup>
325-
<ErrorCondition="!Exists('..\packages\directxmesh_desktop_2019.2024.10.29.1\build\native\directxmesh_desktop_2019.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\packages\directxmesh_desktop_2019.2024.10.29.1\build\native\directxmesh_desktop_2019.targets'))" />
326-
<ErrorCondition="!Exists('..\packages\directxtex_desktop_2019.2024.10.29.1\build\native\directxtex_desktop_2019.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\packages\directxtex_desktop_2019.2024.10.29.1\build\native\directxtex_desktop_2019.targets'))" />
325+
<ErrorCondition="!Exists('..\packages\directxmesh_desktop_2019.2025.3.25.2\build\native\directxmesh_desktop_2019.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\packages\directxmesh_desktop_2019.2025.3.25.2\build\native\directxmesh_desktop_2019.targets'))" />
326+
<ErrorCondition="!Exists('..\packages\directxtex_desktop_2019.2025.3.25.2\build\native\directxtex_desktop_2019.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\packages\directxtex_desktop_2019.2025.3.25.2\build\native\directxtex_desktop_2019.targets'))" />
327327
</Target>
328328
</Project>

‎UVAtlasTool/UVAtlasTool_2022.vcxproj‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -315,14 +315,14 @@
315315
</ItemGroup>
316316
<ImportProject="$(VCTargetsPath)\Microsoft.Cpp.targets" />
317317
<ImportGroupLabel="ExtensionTargets">
318-
<ImportProject="..\packages\directxmesh_desktop_2019.2024.10.29.1\build\native\directxmesh_desktop_2019.targets"Condition="Exists('..\packages\directxmesh_desktop_2019.2024.10.29.1\build\native\directxmesh_desktop_2019.targets')" />
319-
<ImportProject="..\packages\directxtex_desktop_2019.2024.10.29.1\build\native\directxtex_desktop_2019.targets"Condition="Exists('..\packages\directxtex_desktop_2019.2024.10.29.1\build\native\directxtex_desktop_2019.targets')" />
318+
<ImportProject="..\packages\directxmesh_desktop_2019.2025.3.25.2\build\native\directxmesh_desktop_2019.targets"Condition="Exists('..\packages\directxmesh_desktop_2019.2025.3.25.2\build\native\directxmesh_desktop_2019.targets')" />
319+
<ImportProject="..\packages\directxtex_desktop_2019.2025.3.25.2\build\native\directxtex_desktop_2019.targets"Condition="Exists('..\packages\directxtex_desktop_2019.2025.3.25.2\build\native\directxtex_desktop_2019.targets')" />
320320
</ImportGroup>
321321
<TargetName="EnsureNuGetPackageBuildImports"BeforeTargets="PrepareForBuild">
322322
<PropertyGroup>
323323
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
324324
</PropertyGroup>
325-
<ErrorCondition="!Exists('..\packages\directxmesh_desktop_2019.2024.10.29.1\build\native\directxmesh_desktop_2019.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\packages\directxmesh_desktop_2019.2024.10.29.1\build\native\directxmesh_desktop_2019.targets'))" />
326-
<ErrorCondition="!Exists('..\packages\directxtex_desktop_2019.2024.10.29.1\build\native\directxtex_desktop_2019.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\packages\directxtex_desktop_2019.2024.10.29.1\build\native\directxtex_desktop_2019.targets'))" />
325+
<ErrorCondition="!Exists('..\packages\directxmesh_desktop_2019.2025.3.25.2\build\native\directxmesh_desktop_2019.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\packages\directxmesh_desktop_2019.2025.3.25.2\build\native\directxmesh_desktop_2019.targets'))" />
326+
<ErrorCondition="!Exists('..\packages\directxtex_desktop_2019.2025.3.25.2\build\native\directxtex_desktop_2019.targets')"Text="$([System.String]::Format('$(ErrorText)', '..\packages\directxtex_desktop_2019.2025.3.25.2\build\native\directxtex_desktop_2019.targets'))" />
327327
</Target>
328328
</Project>

‎UVAtlasTool/packages.config‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<packageid="directxmesh_desktop_2019"version="2024.10.29.1"targetFramework="native" />
4-
<packageid="directxtex_desktop_2019"version="2024.10.29.1"targetFramework="native" />
3+
<packageid="directxmesh_desktop_2019"version="2025.3.25.2"targetFramework="native" />
4+
<packageid="directxtex_desktop_2019"version="2025.3.25.2"targetFramework="native" />
55
</packages>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp