-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Version 8.6.0 - February 23, 2023 - **Changed:** .NET Framework target is changed from net461 to net472. So from now on, you need to have a .NET Framework 4.7.2 or above project to reference our .NET Framework DLL (not related to our .netstandard2.0 DLL). Minimum supported development environment version is changed from Visual Studio 2012 to Visual Studio 2015 (first to support net472 targeting pack). Minimum supported deployment server OS is still Windows Server 2008 R2 SP1 (first to support net472 runtime). Minimum supported deployment client OS is still Windows 7 SP1 (first to support net472 runtime). - **Improved:** FileCache will now log information and errors about trimming and migrating. - Migration related details and errors will be logged to CacheMigrate.log in cache folder (and important one also to GleamTech.log). - Trimming related details and errors will be logged to CacheTrim.log in cache folder (and important one also to GleamTech.log). - Updated cache versioning, CacheVersion's first 2 parts are FileCache version, second 2 parts are sub-class cache version. e.g. 2.0.1.0 -> FileCache, 2.0.2.0 -> DocumentCache, 2.0.3.0 -> ThumbnailCache. - Improved migration handling (especially in FileCache sublasses) and stability. - **Changed:** GleamTechConfiguration.LogEnabled property -> The default value is now true. GleamTech.log can be found under the temporary folder specified by GleamTechConfiguration.TemporaryFolder. - **Changed:** Thumbnail cache subfolder under temporary folder will be renamed: "ImageCache" -> "ThumbnailCache"
- Loading branch information
Showing
23 changed files
with
99 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net461" /> | ||
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net461" /> | ||
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net461" /> | ||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" /> | ||
<package id="GleamTech.Common" version="5.5.5" /> | ||
<package id="GleamTech.VideoUltimate" version="3.6.1" /> | ||
<package id="GleamTech.ImageUltimate" version="5.6.1" /> | ||
<package id="GleamTech.DocumentUltimate" version="6.6.2" /> | ||
<package id="GleamTech.FileUltimate" version="8.5.1" /> | ||
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net472" /> | ||
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net472" /> | ||
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net472" /> | ||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net472" /> | ||
<package id="GleamTech.Common" version="5.6.0" /> | ||
<package id="GleamTech.VideoUltimate" version="3.7.0" /> | ||
<package id="GleamTech.ImageUltimate" version="5.7.0" /> | ||
<package id="GleamTech.DocumentUltimate" version="6.7.0" /> | ||
<package id="GleamTech.FileUltimate" version="8.6.0" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net461" /> | ||
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net461" /> | ||
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net461" /> | ||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" /> | ||
<package id="GleamTech.Common" version="5.5.5" /> | ||
<package id="GleamTech.VideoUltimate" version="3.6.1" /> | ||
<package id="GleamTech.ImageUltimate" version="5.6.1" /> | ||
<package id="GleamTech.DocumentUltimate" version="6.6.2" /> | ||
<package id="GleamTech.FileUltimate" version="8.5.1" /> | ||
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net472" /> | ||
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net472" /> | ||
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net472" /> | ||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net472" /> | ||
<package id="GleamTech.Common" version="5.6.0" /> | ||
<package id="GleamTech.VideoUltimate" version="3.7.0" /> | ||
<package id="GleamTech.ImageUltimate" version="5.7.0" /> | ||
<package id="GleamTech.DocumentUltimate" version="6.7.0" /> | ||
<package id="GleamTech.FileUltimate" version="8.6.0" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<packages> | ||
<package id="GleamTech.Common" version="5.5.5" /> | ||
<package id="GleamTech.VideoUltimate" version="3.6.1" /> | ||
<package id="GleamTech.ImageUltimate" version="5.6.1" /> | ||
<package id="GleamTech.DocumentUltimate" version="6.6.2" /> | ||
<package id="GleamTech.FileUltimate" version="8.5.1" /> | ||
<package id="GleamTech.Common" version="5.6.0" /> | ||
<package id="GleamTech.VideoUltimate" version="3.7.0" /> | ||
<package id="GleamTech.ImageUltimate" version="5.7.0" /> | ||
<package id="GleamTech.DocumentUltimate" version="6.7.0" /> | ||
<package id="GleamTech.FileUltimate" version="8.6.0" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.