From b2c26e397316ca1f9e3f475c7e794a83df574c15 Mon Sep 17 00:00:00 2001 From: walbourn Date: Mon, 24 Oct 2022 17:43:21 -0700 Subject: [PATCH] October 24, 2022 --- CMakeLists.txt | 2 +- Core/DXUT.h | 2 +- HISTORY.md | 13 ++++++++----- README.md | 4 ++-- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f649316..f667883 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.13) -set(DXUT_VERSION 11.28) +set(DXUT_VERSION 11.29) project (DXUT VERSION ${DXUT_VERSION} diff --git a/Core/DXUT.h b/Core/DXUT.h index 67071e7..2872e84 100644 --- a/Core/DXUT.h +++ b/Core/DXUT.h @@ -133,7 +133,7 @@ ((DWORD)((((a)&0xff)<<24)|(((r)&0xff)<<16)|(((g)&0xff)<<8)|((b)&0xff))) #endif -#define DXUT_VERSION 1128 +#define DXUT_VERSION 1129 //-------------------------------------------------------------------------------------- // Structs diff --git a/HISTORY.md b/HISTORY.md index da9602e..f7d30c5 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,25 +4,28 @@ http://go.microsoft.com/fwlink/?LinkId=320437 ## Release History -## August 17, 2022 (11.28) +### October 24, 2022 (11.29) +* Fix for build failure `-Wnarrowing` with MinGW GNU 12.2 + +### August 17, 2022 (11.28) * *breaking change* DDSTextureLoader ``Ex`` functions now use ``DDS_LOADER_FLAGS`` instead of ``bool forceSRGB`` parameter. * CMake and MSBuild project updates -## May 23, 2022 (11.27) +### May 23, 2022 (11.27) * Updated DDSTextureLoader, WICTextureLoader, and ScreenGrab * Add VS 2022 projects, retired VS 2017 projects * Update build switches for SDL recommendations * CMake project cleanup, added CMakePresets.json * Minor code review -## December 2, 2021 +### December 2, 2021 * Minor project update -## June 2, 2021 (11.26) +### June 2, 2021 (11.26) * Updated DDSTextureLoader, WICTextureLoader, and ScreenGrab * Minor code review -## February 7, 2021 +### February 7, 2021 * Added CMake project * Removed Windows Vista support * No code changes diff --git a/README.md b/README.md index 1d62f81..6ee39ea 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ http://go.microsoft.com/fwlink/?LinkId=320437 Copyright (c) Microsoft Corporation. -**August 17, 2022** +**October 24, 2022** DXUT is a "GLUT"-like framework for Direct3D 11.x Win32 desktop applications; primarily samples, demos, and prototypes. -This code is designed to build with Visual Studio 2019 (16.9 or later) or Visual Studio 2022. Use of the Windows 10 May 2020 Update SDK ([19041](https://walbourn.github.io/windows-10-may-2020-update-sdk/)) or later is required. +This code is designed to build with Visual Studio 2019 (16.11 or later) or Visual Studio 2022. Use of the Windows 10 May 2020 Update SDK ([19041](https://walbourn.github.io/windows-10-may-2020-update-sdk/)) or later is required. These components are designed to work without requiring any content from the legacy DirectX SDK. For details, see [Where is the DirectX SDK?](https://aka.ms/dxsdk).