Skip to content

Commit

Permalink
Version 7.9.1
Browse files Browse the repository at this point in the history
## 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
GleamTech committed Mar 23, 2021
1 parent e4f74ae commit 3097db8
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 44 deletions.
4 changes: 2 additions & 2 deletions Examples/AspNetCoreCS/AspNetCoreCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="4.5.0" />
<PackageReference Include="GleamTech.FileUltimate" Version="7.9.0" />
<PackageReference Include="GleamTech.Common" Version="4.5.1" />
<PackageReference Include="GleamTech.FileUltimate" Version="7.9.1" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="4.5.0" />
<PackageReference Include="GleamTech.FileUltimate" Version="7.9.0" />
<PackageReference Include="GleamTech.Common" Version="4.5.1" />
<PackageReference Include="GleamTech.FileUltimate" Version="7.9.1" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions Examples/AspNetMvcCS/AspNetMvcCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,20 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.FileUltimate">
<HintPath>..\packages\GleamTech.FileUltimate.7.9.0\lib\net40\GleamTech.FileUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.FileUltimate.7.9.1\lib\net40\GleamTech.FileUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.5.9.0\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.5.9.1\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.ImageUltimate">
<HintPath>..\packages\GleamTech.ImageUltimate.4.5.0\lib\net40\GleamTech.ImageUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.ImageUltimate.4.6.0\lib\net40\GleamTech.ImageUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.3\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.5\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.Common">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\GleamTech.Common.4.5.0\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.5.1\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
Expand Down
10 changes: 5 additions & 5 deletions Examples/AspNetMvcCS/Packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
<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>
10 changes: 5 additions & 5 deletions Examples/AspNetMvcVB/AspNetMvcVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,20 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.FileUltimate">
<HintPath>..\packages\GleamTech.FileUltimate.7.9.0\lib\net40\GleamTech.FileUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.FileUltimate.7.9.1\lib\net40\GleamTech.FileUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.5.9.0\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.5.9.1\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.ImageUltimate">
<HintPath>..\packages\GleamTech.ImageUltimate.4.5.0\lib\net40\GleamTech.ImageUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.ImageUltimate.4.6.0\lib\net40\GleamTech.ImageUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.3\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.5\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.Common">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\GleamTech.Common.4.5.0\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.5.1\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down
10 changes: 5 additions & 5 deletions Examples/AspNetMvcVB/Packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
<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>
10 changes: 5 additions & 5 deletions Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,20 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.FileUltimate">
<HintPath>..\packages\GleamTech.FileUltimate.7.9.0\lib\net40\GleamTech.FileUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.FileUltimate.7.9.1\lib\net40\GleamTech.FileUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.5.9.0\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.5.9.1\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.ImageUltimate">
<HintPath>..\packages\GleamTech.ImageUltimate.4.5.0\lib\net40\GleamTech.ImageUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.ImageUltimate.4.6.0\lib\net40\GleamTech.ImageUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.3\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.5\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.Common">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\GleamTech.Common.4.5.0\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.5.1\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
10 changes: 5 additions & 5 deletions Examples/AspNetWebFormsCS/packages.config
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>
10 changes: 5 additions & 5 deletions Examples/AspNetWebFormsVB/AspNetWebFormsVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,20 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.FileUltimate">
<HintPath>..\packages\GleamTech.FileUltimate.7.9.0\lib\net40\GleamTech.FileUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.FileUltimate.7.9.1\lib\net40\GleamTech.FileUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.5.9.0\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.5.9.1\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.ImageUltimate">
<HintPath>..\packages\GleamTech.ImageUltimate.4.5.0\lib\net40\GleamTech.ImageUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.ImageUltimate.4.6.0\lib\net40\GleamTech.ImageUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.3\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.5\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.Common">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\GleamTech.Common.4.5.0\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.5.1\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
10 changes: 5 additions & 5 deletions Examples/AspNetWebFormsVB/packages.config
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>

0 comments on commit 3097db8

Please sign in to comment.