Skip to content

Commit

Permalink
Version 9.0.5
Browse files Browse the repository at this point in the history
## Version 9.0.5 - August 6, 2024

  - **Fixed:** FileManager and FileUploader will render a placeholder tag along with the script tag.
    We need a tag other than script tag for the component even if we render DOM on the client side.
    For example, Kendo UI Window, removes/moves script tags from content html so component is rendered to wrong place
    and not inside the window.

    Kendo UI Window has this code which caused the issue:
      // remove script blocks to prevent double-execution
      element.find("script").filter(executableScript).remove();

  - **Improved:** FileManager and FileUploader will now be resized automatically when the parent DOM element resizes via using
    ResizeObserver in supported browsers. This espacially useful when component width or height is given in percentage and not in pixels.
    For example, when you put FileManager or FileUploader inside Kendo UI Window, they will be resized when the window is maximized.

  - **Fixed:** Attempt to fix intermittent UnauthorizedAccessException in DocumentCache for .lock files.
    This issue is hard to replicate, but in our tests we didn't the observe it again after some locking fixes.
    Let us know if you still get this error intermittently:
      Access to the path "[DocumentCache]:\lock-1hshdfq~w44gb5~w44gb5~lpnqmy.json.lock" is denied due to insufficient permissions.
      Please make sure the current windows identity "computer\user" has the required permissions on the path.
  • Loading branch information
GleamTech committed Aug 6, 2024
1 parent 72f484f commit 8e413df
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions Examples/AspNetCoreCS/AspNetCoreCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="6.0.6" />
<PackageReference Include="GleamTech.FileUltimate" Version="9.0.3" />
<PackageReference Include="GleamTech.Common" Version="6.0.8" />
<PackageReference Include="GleamTech.FileUltimate" Version="9.0.5" />
</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="6.0.6" />
<PackageReference Include="GleamTech.FileUltimate" Version="9.0.3" />
<PackageReference Include="GleamTech.Common" Version="6.0.8" />
<PackageReference Include="GleamTech.FileUltimate" Version="9.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions Examples/AspNetMvcCS/AspNetMvcCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.6.0.6\lib\net472\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.6.0.8\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.FileUltimate">
<HintPath>..\packages\GleamTech.FileUltimate.9.0.3\lib\net472\GleamTech.FileUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.FileUltimate.9.0.5\lib\net472\GleamTech.FileUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.7.0.9\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.7.0.10\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.ImageUltimate">
<HintPath>..\packages\GleamTech.ImageUltimate.6.0.0\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
Expand Down
6 changes: 3 additions & 3 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="3.2.9" targetFramework="net472" />
<package id="Microsoft.AspNet.WebPages" version="3.2.9" targetFramework="net472" />
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net472" />
<package id="GleamTech.Common" version="6.0.6" />
<package id="GleamTech.Common" version="6.0.8" />
<package id="GleamTech.VideoUltimate" version="4.0.0" />
<package id="GleamTech.ImageUltimate" version="6.0.0" />
<package id="GleamTech.DocumentUltimate" version="7.0.9" />
<package id="GleamTech.FileUltimate" version="9.0.3" />
<package id="GleamTech.DocumentUltimate" version="7.0.10" />
<package id="GleamTech.FileUltimate" version="9.0.5" />
</packages>
6 changes: 3 additions & 3 deletions Examples/AspNetMvcVB/AspNetMvcVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.6.0.6\lib\net472\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.6.0.8\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.FileUltimate">
<HintPath>..\packages\GleamTech.FileUltimate.9.0.3\lib\net472\GleamTech.FileUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.FileUltimate.9.0.5\lib\net472\GleamTech.FileUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.7.0.9\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.7.0.10\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.ImageUltimate">
<HintPath>..\packages\GleamTech.ImageUltimate.6.0.0\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
Expand Down
6 changes: 3 additions & 3 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="3.2.9" targetFramework="net472" />
<package id="Microsoft.AspNet.WebPages" version="3.2.9" targetFramework="net472" />
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net472" />
<package id="GleamTech.Common" version="6.0.6" />
<package id="GleamTech.Common" version="6.0.8" />
<package id="GleamTech.VideoUltimate" version="4.0.0" />
<package id="GleamTech.ImageUltimate" version="6.0.0" />
<package id="GleamTech.DocumentUltimate" version="7.0.9" />
<package id="GleamTech.FileUltimate" version="9.0.3" />
<package id="GleamTech.DocumentUltimate" version="7.0.10" />
<package id="GleamTech.FileUltimate" version="9.0.5" />
</packages>
6 changes: 3 additions & 3 deletions Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.FileUltimate">
<HintPath>..\packages\GleamTech.FileUltimate.9.0.3\lib\net472\GleamTech.FileUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.FileUltimate.9.0.5\lib\net472\GleamTech.FileUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.7.0.9\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.7.0.10\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.ImageUltimate">
<HintPath>..\packages\GleamTech.ImageUltimate.6.0.0\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
Expand All @@ -62,7 +62,7 @@
<HintPath>..\packages\GleamTech.VideoUltimate.4.0.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.6.0.6\lib\net472\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.6.0.8\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down
6 changes: 3 additions & 3 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="6.0.6" />
<package id="GleamTech.Common" version="6.0.8" />
<package id="GleamTech.VideoUltimate" version="4.0.0" />
<package id="GleamTech.ImageUltimate" version="6.0.0" />
<package id="GleamTech.DocumentUltimate" version="7.0.9" />
<package id="GleamTech.FileUltimate" version="9.0.3" />
<package id="GleamTech.DocumentUltimate" version="7.0.10" />
<package id="GleamTech.FileUltimate" version="9.0.5" />
</packages>
6 changes: 3 additions & 3 deletions Examples/AspNetWebFormsVB/AspNetWebFormsVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.FileUltimate">
<HintPath>..\packages\GleamTech.FileUltimate.9.0.3\lib\net472\GleamTech.FileUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.FileUltimate.9.0.5\lib\net472\GleamTech.FileUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.7.0.9\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.7.0.10\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="GleamTech.ImageUltimate">
<HintPath>..\packages\GleamTech.ImageUltimate.6.0.0\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
Expand All @@ -79,7 +79,7 @@
</Reference>
<Reference Include="GleamTech.Common">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\GleamTech.Common.6.0.6\lib\net472\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.6.0.8\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down
6 changes: 3 additions & 3 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="6.0.6" />
<package id="GleamTech.Common" version="6.0.8" />
<package id="GleamTech.VideoUltimate" version="4.0.0" />
<package id="GleamTech.ImageUltimate" version="6.0.0" />
<package id="GleamTech.DocumentUltimate" version="7.0.9" />
<package id="GleamTech.FileUltimate" version="9.0.3" />
<package id="GleamTech.DocumentUltimate" version="7.0.10" />
<package id="GleamTech.FileUltimate" version="9.0.5" />
</packages>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Integrate a file manager into your ASP.NET application or site rapidly.
- Offer a structured and neat download area.
- Preview documents (70+ file formats, including PDF & Microsoft Office), images, audios and videos.

<kbd>![File Manager and File Uploader for ASP.NET](fileultimate-screenshot.png)</kbd>
![File Manager and File Uploader for ASP.NET](fileultimate-screenshot.png)

**Note:** This project contains a fully working version of the product, however without a license key it will run in trial mode. For more information, please see [ASP.NET File Manager and ASP.NET File Uploader](https://www.gleamtech.com/fileultimate) product page.

Expand Down

0 comments on commit 8e413df

Please sign in to comment.