-
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 7.9.1 - March 23, 2021 - **Fixed:** "Add to zip" action displayed "Could not find file" error even if the zip was correctly generated. The problem probably started happening with v7.9.0 (after improvements to ArchiveFileSystem). - **Improved:** Added implicit string operator to FileTypeSet (type for AllowedFileTypes and DeniedFileTypes properties) for easier API usage: ```c# accessControl.AllowedFileTypes = "*.jpg|*.gif"; ``` Also collection initializer is now possible: ```c# accessControl.AllowedFileTypes = new FileTypeSet { "*.jpg", "*.gif" }; ``` - **Improved:** Added example codes to more places in Docs, especially for AllowedPermissions, DeniedPermissions, AllowedFileTypes DeniedFileTypes properties. - **Fixed:** Inherited properties were not being displayed in Docs for FileManager*EventArgs and FileUploader*EventArgs. - **Fixed:** GleamTechWebConfiguration.LocklessSessionFixEnabled property which was added back in v7.9.0, caused early session timeout issue (e.g. 2 minutes) in the host application. The default property is now changed from true to false for preventing the issue. Note that this only effected ASP.NET Classic applications but not ASP.NET Core applications. - **Improved:** Document Viewer: - **Fixed:** Duplicate file names will now be allowed in PDF Portfolio because surprisingly there are people who add attachments with duplicate names to an email. For example if there are 2 attachments named "test.pdf", the second one will be renamed to "test (2).pdf". DocumentViewer will no longer display error "PDF already contains an embedded file named ..." for emails with duplicate attachments.
- Loading branch information
Showing
10 changed files
with
44 additions
and
44 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
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="4.5.0" /> | ||
<package id="GleamTech.VideoUltimate" version="2.5.3" /> | ||
<package id="GleamTech.ImageUltimate" version="4.5.0" /> | ||
<package id="GleamTech.DocumentUltimate" version="5.9.0" /> | ||
<package id="GleamTech.FileUltimate" version="7.9.0" /> | ||
<package id="GleamTech.Common" version="4.5.1" /> | ||
<package id="GleamTech.VideoUltimate" version="2.5.5" /> | ||
<package id="GleamTech.ImageUltimate" version="4.6.0" /> | ||
<package id="GleamTech.DocumentUltimate" version="5.9.1" /> | ||
<package id="GleamTech.FileUltimate" version="7.9.1" /> | ||
</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
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="4.5.0" /> | ||
<package id="GleamTech.VideoUltimate" version="2.5.3" /> | ||
<package id="GleamTech.ImageUltimate" version="4.5.0" /> | ||
<package id="GleamTech.DocumentUltimate" version="5.9.0" /> | ||
<package id="GleamTech.FileUltimate" version="7.9.0" /> | ||
<package id="GleamTech.Common" version="4.5.1" /> | ||
<package id="GleamTech.VideoUltimate" version="2.5.5" /> | ||
<package id="GleamTech.ImageUltimate" version="4.6.0" /> | ||
<package id="GleamTech.DocumentUltimate" version="5.9.1" /> | ||
<package id="GleamTech.FileUltimate" version="7.9.1" /> | ||
</packages> |