Skip to content

Commit

Permalink
Version 7.2.0
Browse files Browse the repository at this point in the history
## Version 7.2.0 - December 1, 2024

  - **Improved:** Updated PDF.js library to 4.8.69 for stability and performance.

  - **Fixed:** Attachment annotations should not be re-added when browsing back nested attachments.
    If document was not a pdf portfolio file, attachment annotations were not added and attachments pane was not being activated.

  - **Improved:** Stability and performance of DICOM formats.
  • Loading branch information
GleamTech committed Dec 1, 2024
1 parent 9e8fc37 commit 564a2ea
Show file tree
Hide file tree
Showing 61 changed files with 145 additions and 145 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.1.1" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="7.1.5" />
<PackageReference Include="GleamTech.Common" Version="6.2.0" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="7.2.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public IActionResult ClientEvents()

var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = exampleFileSelector.SelectedFile.ToString(),
ClientEvents = new DocumentViewerClientEvents
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public IActionResult Display()
var documentViewer1 = new DocumentViewer
{
Id = "documentViewer1",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true
Expand All @@ -21,8 +21,8 @@ public IActionResult Display()
var documentViewer2 = new DocumentViewer
{
Id = "documentViewer2",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true,
Expand All @@ -39,8 +39,8 @@ public IActionResult Display()
var documentViewer3 = new DocumentViewer
{
Id = "documentViewer3",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public IActionResult FileProvider()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,

// See below for CustomFileProvider class which implements FileProvider base class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public IActionResult Highlight()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.doc",
SearchOptions =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public IActionResult Overview()

var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = exampleFileSelector.SelectedFile.ToString()
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public IActionResult Protection()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
DeniedPermissions = DocumentViewerPermissions.Download
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public IActionResult UsingLayout()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf"
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ private DocumentViewer GetDocumentViewerModel()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf"
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public IActionResult Watermark()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.doc",
DocumentOptions = new DocumentOptions
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.1.1" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="7.1.5" />
<PackageReference Include="GleamTech.Common" Version="6.2.0" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="7.2.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public IActionResult ClientEvents()

var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = exampleFileSelector.SelectedFile.ToString(),
ClientEvents = new DocumentViewerClientEvents
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public IActionResult Display()
var documentViewer1 = new DocumentViewer
{
Id = "documentViewer1",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true
Expand All @@ -23,8 +23,8 @@ public IActionResult Display()
var documentViewer2 = new DocumentViewer
{
Id = "documentViewer2",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true,
Expand All @@ -41,8 +41,8 @@ public IActionResult Display()
var documentViewer3 = new DocumentViewer
{
Id = "documentViewer3",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public IActionResult FileProvider()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,

// See below for CustomFileProvider class which implements FileProvider base class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public IActionResult Highlight()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.doc",
SearchOptions =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public IActionResult Overview()

var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = exampleFileSelector.SelectedFile.ToString()
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public IActionResult Protection()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
DeniedPermissions = DocumentViewerPermissions.Download
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public IActionResult UsingLayout()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf"
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ private DocumentViewer GetDocumentViewerModel()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf"
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public IActionResult Watermark()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.doc",
DocumentOptions = new DocumentOptions
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetMvcCS/AspNetMvcCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.6.1.1\lib\net472\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.6.2.0\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.7.1.5\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.7.2.0\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public ActionResult ClientEvents()

var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = exampleFileSelector.SelectedFile.ToString(),
ClientEvents = new DocumentViewerClientEvents {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public ActionResult Display()
var documentViewer1 = new DocumentViewer
{
Id = "documentViewer1",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true
Expand All @@ -22,8 +22,8 @@ public ActionResult Display()
var documentViewer2 = new DocumentViewer
{
Id = "documentViewer2",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true,
Expand All @@ -40,8 +40,8 @@ public ActionResult Display()
var documentViewer3 = new DocumentViewer
{
Id = "documentViewer3",
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
Hidden = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public ActionResult FileProvider()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,

// See below for CustomFileProvider class which implements FileProvider base class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public ActionResult Highlight()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.doc",
SearchOptions =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public ActionResult Overview()

var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = exampleFileSelector.SelectedFile.ToString()
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public ActionResult Protection()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf",
DeniedPermissions = DocumentViewerPermissions.Download
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public ActionResult UsingLayout()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf"
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ private DocumentViewer GetDocumentViewerModel()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.pdf"
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public ActionResult Watermark()
{
var documentViewer = new DocumentViewer
{
Width = 800,
Height = 600,
Width = 960,
Height = 720,
Resizable = true,
Document = "~/App_Data/ExampleFiles/Default.doc",
DocumentOptions = new DocumentOptions
Expand Down
Loading

0 comments on commit 564a2ea

Please sign in to comment.