Releases: GleamTech/ImageUltimate
ImageUltimate v6.5.3
Version 6.5.3 - May 6, 2025
- Improved: Updated GleamTech.Common.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.5.2
Version 6.5.2 - April 18, 2025
- Improved: Updated GleamTech.Common.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.5.1
Version 6.5.1 - April 11, 2025
- Fixed: Exception when you have app.UseGleamTech() in your project and when the "Referer" http header contained an invalid URL:
This was observed especially when certain pages like /Customer/Home/Forbidden or /Customer/Error/HandleError were accessed.
System.UriFormatException: Invalid URI: The format of the URI could not be determined. at GleamTech.AspNet.Core.WebActivationMiddlewareExtensions...
This is because as the original url was invalid, it was redirected to the error pages which contained "Referer" http header
referring to the original url with the problem.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.5.0
Version 6.5.0 - April 1, 2025
-
Added: Better multi-platform suppport. Image conversions require native dependencies which we already bundled
in our DLL for win-x64 and win-x86 platforms. In addition to these, we now also bundle dependencies for these platforms:- win-arm64
- linux-x64, linux-arm64
- osx-x64, osx-arm64
Only win-* dependencies are bundled in our DLL and our AssemblyResolver will handle those, i.e automatically resolve them.
linux-* and osx-* dependencies are bundled only in our NuGet package in runtimes//native folders,
this is because it's nearly impossible to load/resolve native files in custom folders on non-Windows platforms (especially Linux).
However .NET SDK handles this issue at build time: At build time, SDK will put runtimeTargets entries in .deps.json file
for each native file (.dll, .so, .dylib) that come/flow from a NuGet PackageReference.
This way, .NET Runtime can resolve these native files by reading the .deps.json file.So in short, reference our NuGet package (not our DLL directly) especially if you are targeting linux-* and osx-*.
-
Improved: Stability and performance of image processing and image formats.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.4.5
Version 6.4.5 - March 30, 2025
-
Improved: Preparing for multi-platform support other than win-x64 and win-x86.
-
Improved: Updated GleamTech.Common.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.4.0
Version 6.4.0 - March 8, 2025
-
Changed: Minimum supported .NET Core framework is changed from 2.1 to 3.1 as the "System.*" nuget package dependencies
with version 6.x does not work on 2.1 (e.g. System.Runtime.CompilerServices.Unsafe 6.x needs minimum .NET Core 3.1).
Note that ASP.NET Core 2.1 or 2.3 on .NET Framework 4.7.2+ project (legacy) is still supported. -
Improved: Stability and performance of image processing and image formats.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.3.1
Version 6.3.1 - March 3, 2025
- Improved: Updated GleamTech.Common.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.3.0
Version 6.3.0 - January 7, 2025
-
Improved: Stability and performance of image processing and image formats.
-
Fixed: Stalling problem for some files (bigger than 4MB?) when using AzureBlobFileSystem in .NET Framework projects (could effect ImageCache).
-
Improved: Updated GleamTech.Common.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.2.0
Version 6.2.0 - December 1, 2024
- Improved: Stability and performance of image processing and image formats.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+
ImageUltimate v6.0.2
Version 6.0.2 - September 1, 2024
- Improved: Delete legacy folders and left-over temporary files under GleamTechConfiguration.TemporaryFolder on startup.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2015+
- ASP.NET MVC (VB) - Visual Studio 2015+
- ASP.NET WebForms (C#) - Visual Studio 2015+
- ASP.NET WebForms (VB) - Visual Studio 2015+