From d938e2d753e678d0ca1c08e933be48f7835a303a Mon Sep 17 00:00:00 2001 From: castano Date: Thu, 12 Jun 2008 01:20:46 +0000 Subject: [PATCH] Update changelog. Update version. --- ChangeLog | 4 ++++ VERSION | 2 +- project/vc8/nvtt/nvtt.rc | 8 ++++---- src/nvimage/DirectDrawSurface.cpp | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 66f64fb..71e0a85 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +NVIDIA Texture Tools version 2.0.4 + * Fix error in RGB format output; reported by jonsoh. See issue 49. + * Added support RGB format dithering by jonsoh. Fixes issue 50 and 51. + NVIDIA Texture Tools version 2.0.3 * More accurate DXT3 compressor. Fixes issue 38. * Remove legacy compressors. Fix issue 34. diff --git a/VERSION b/VERSION index 50ffc5a..2165f8f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.3 +2.0.4 diff --git a/project/vc8/nvtt/nvtt.rc b/project/vc8/nvtt/nvtt.rc index 38a202b..40f7082 100644 --- a/project/vc8/nvtt/nvtt.rc +++ b/project/vc8/nvtt/nvtt.rc @@ -53,8 +53,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,0,3,0 - PRODUCTVERSION 2,0,3,0 + FILEVERSION 2,0,4,0 + PRODUCTVERSION 2,0,4,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -71,12 +71,12 @@ BEGIN BEGIN VALUE "CompanyName", "NVIDIA Corporation" VALUE "FileDescription", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "FileVersion", "2, 0, 3, 0" + VALUE "FileVersion", "2, 0, 4, 0" VALUE "InternalName", "nvtt" VALUE "LegalCopyright", "Copyright (C) 2007" VALUE "OriginalFilename", "nvtt.dll" VALUE "ProductName", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "ProductVersion", "2, 0, 3, 0" + VALUE "ProductVersion", "2, 0, 4, 0" END END BLOCK "VarFileInfo" diff --git a/src/nvimage/DirectDrawSurface.cpp b/src/nvimage/DirectDrawSurface.cpp index cac2627..cb01208 100644 --- a/src/nvimage/DirectDrawSurface.cpp +++ b/src/nvimage/DirectDrawSurface.cpp @@ -532,7 +532,7 @@ DDSHeader::DDSHeader() // Store version information on the reserved header attributes. this->reserved[9] = MAKEFOURCC('N', 'V', 'T', 'T'); - this->reserved[10] = (2 << 16) | (0 << 8) | (3); // major.minor.revision + this->reserved[10] = (2 << 16) | (0 << 8) | (4); // major.minor.revision this->pf.size = 32; this->pf.flags = 0;