From 564a2ea5424700cd31a0a60447759b8b2f959b9b Mon Sep 17 00:00:00 2001
From: GleamTech
Date: Sun, 1 Dec 2024 05:49:10 -0800
Subject: [PATCH] Version 7.2.0
## 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.
---
Examples/AspNetCoreCS/AspNetCoreCS.csproj | 4 ++--
.../DocumentViewerController.ClientEvents.cs | 4 ++--
.../Controllers/DocumentViewerController.Display.cs | 12 ++++++------
.../DocumentViewerController.FileProvider.cs | 4 ++--
.../DocumentViewerController.Highlight.cs | 4 ++--
.../Controllers/DocumentViewerController.Overview.cs | 4 ++--
.../DocumentViewerController.Protection.cs | 4 ++--
.../DocumentViewerController.UsingLayout.cs | 4 ++--
.../DocumentViewerController.UsingPartial.cs | 4 ++--
.../DocumentViewerController.Watermark.cs | 4 ++--
.../AspNetCoreOnNetFullCS.csproj | 4 ++--
.../DocumentViewerController.ClientEvents.cs | 4 ++--
.../Controllers/DocumentViewerController.Display.cs | 12 ++++++------
.../DocumentViewerController.FileProvider.cs | 4 ++--
.../DocumentViewerController.Highlight.cs | 4 ++--
.../Controllers/DocumentViewerController.Overview.cs | 4 ++--
.../DocumentViewerController.Protection.cs | 4 ++--
.../DocumentViewerController.UsingLayout.cs | 4 ++--
.../DocumentViewerController.UsingPartial.cs | 4 ++--
.../DocumentViewerController.Watermark.cs | 4 ++--
Examples/AspNetMvcCS/AspNetMvcCS.csproj | 4 ++--
.../DocumentViewerController.ClientEvents.cs | 4 ++--
.../Controllers/DocumentViewerController.Display.cs | 12 ++++++------
.../DocumentViewerController.FileProvider.cs | 4 ++--
.../DocumentViewerController.Highlight.cs | 4 ++--
.../Controllers/DocumentViewerController.Overview.cs | 4 ++--
.../DocumentViewerController.Protection.cs | 4 ++--
.../DocumentViewerController.UsingLayout.cs | 4 ++--
.../DocumentViewerController.UsingPartial.cs | 4 ++--
.../DocumentViewerController.Watermark.cs | 4 ++--
Examples/AspNetMvcCS/Packages.config | 4 ++--
Examples/AspNetMvcVB/AspNetMvcVB.vbproj | 4 ++--
.../DocumentViewerController.ClientEvents.vb | 4 ++--
.../Controllers/DocumentViewerController.Display.vb | 12 ++++++------
.../DocumentViewerController.FileProvider.vb | 4 ++--
.../DocumentViewerController.Highlight.vb | 4 ++--
.../Controllers/DocumentViewerController.Overview.vb | 4 ++--
.../DocumentViewerController.Protection.vb | 4 ++--
.../DocumentViewerController.UsingLayout.vb | 4 ++--
.../DocumentViewerController.UsingPartial.vb | 4 ++--
.../DocumentViewerController.Watermark.vb | 4 ++--
Examples/AspNetMvcVB/Packages.config | 4 ++--
Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj | 4 ++--
.../DocumentViewer/ClientEvents.aspx | 4 ++--
.../AspNetWebFormsCS/DocumentViewer/Display.aspx | 12 ++++++------
.../DocumentViewer/FileProvider.aspx | 4 ++--
.../AspNetWebFormsCS/DocumentViewer/Highlight.aspx | 4 ++--
.../AspNetWebFormsCS/DocumentViewer/Overview.aspx | 4 ++--
.../AspNetWebFormsCS/DocumentViewer/Protection.aspx | 4 ++--
.../AspNetWebFormsCS/DocumentViewer/Watermark.aspx | 4 ++--
Examples/AspNetWebFormsCS/packages.config | 4 ++--
Examples/AspNetWebFormsVB/AspNetWebFormsVB.vbproj | 4 ++--
.../DocumentViewer/ClientEvents.aspx | 4 ++--
.../AspNetWebFormsVB/DocumentViewer/Display.aspx | 12 ++++++------
.../DocumentViewer/FileProvider.aspx | 4 ++--
.../AspNetWebFormsVB/DocumentViewer/Highlight.aspx | 4 ++--
.../AspNetWebFormsVB/DocumentViewer/Overview.aspx | 4 ++--
.../AspNetWebFormsVB/DocumentViewer/Protection.aspx | 4 ++--
.../AspNetWebFormsVB/DocumentViewer/Watermark.aspx | 4 ++--
Examples/AspNetWebFormsVB/packages.config | 4 ++--
Examples/NuGet.config | 2 +-
61 files changed, 145 insertions(+), 145 deletions(-)
diff --git a/Examples/AspNetCoreCS/AspNetCoreCS.csproj b/Examples/AspNetCoreCS/AspNetCoreCS.csproj
index a9a6882..ea68ba5 100644
--- a/Examples/AspNetCoreCS/AspNetCoreCS.csproj
+++ b/Examples/AspNetCoreCS/AspNetCoreCS.csproj
@@ -9,8 +9,8 @@
-
-
+
+
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.ClientEvents.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.ClientEvents.cs
index f3163d8..84534dc 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.ClientEvents.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.ClientEvents.cs
@@ -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
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Display.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Display.cs
index f12645a..c2b389f 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Display.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Display.cs
@@ -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
@@ -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,
@@ -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,
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.FileProvider.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.FileProvider.cs
index cb0781c..a7d91b9 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.FileProvider.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.FileProvider.cs
@@ -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
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Highlight.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Highlight.cs
index 2f0c3d2..a374e84 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Highlight.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Highlight.cs
@@ -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 =
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Overview.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Overview.cs
index 279e789..f6aebd2 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Overview.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Overview.cs
@@ -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()
};
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Protection.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Protection.cs
index 6febd65..882e570 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Protection.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Protection.cs
@@ -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
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.UsingLayout.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.UsingLayout.cs
index 1728757..5ceb435 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.UsingLayout.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.UsingLayout.cs
@@ -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"
};
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.UsingPartial.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.UsingPartial.cs
index 6ada930..a9a673f 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.UsingPartial.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.UsingPartial.cs
@@ -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"
};
diff --git a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Watermark.cs b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Watermark.cs
index 0e6e40c..2f7b68e 100644
--- a/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Watermark.cs
+++ b/Examples/AspNetCoreCS/Controllers/DocumentViewerController.Watermark.cs
@@ -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
diff --git a/Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj b/Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj
index 8a7d9df..9f28ed9 100644
--- a/Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj
+++ b/Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.ClientEvents.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.ClientEvents.cs
index 44f382b..0bd7c4b 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.ClientEvents.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.ClientEvents.cs
@@ -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
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Display.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Display.cs
index cedc3b2..f6af292 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Display.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Display.cs
@@ -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
@@ -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,
@@ -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,
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.FileProvider.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.FileProvider.cs
index a017b56..dd5e82e 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.FileProvider.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.FileProvider.cs
@@ -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
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Highlight.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Highlight.cs
index 7d283d8..f746631 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Highlight.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Highlight.cs
@@ -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 =
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Overview.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Overview.cs
index 35e1ca7..c3acf2c 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Overview.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Overview.cs
@@ -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()
};
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Protection.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Protection.cs
index a9e8015..8768b1e 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Protection.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Protection.cs
@@ -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
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.UsingLayout.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.UsingLayout.cs
index bf67661..be64d5f 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.UsingLayout.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.UsingLayout.cs
@@ -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"
};
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.UsingPartial.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.UsingPartial.cs
index c39b79e..99c73f6 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.UsingPartial.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.UsingPartial.cs
@@ -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"
};
diff --git a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Watermark.cs b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Watermark.cs
index 389ab06..530a4be 100644
--- a/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Watermark.cs
+++ b/Examples/AspNetCoreOnNetFullCS/Controllers/DocumentViewerController.Watermark.cs
@@ -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
diff --git a/Examples/AspNetMvcCS/AspNetMvcCS.csproj b/Examples/AspNetMvcCS/AspNetMvcCS.csproj
index 59dea01..3fb5957 100644
--- a/Examples/AspNetMvcCS/AspNetMvcCS.csproj
+++ b/Examples/AspNetMvcCS/AspNetMvcCS.csproj
@@ -46,10 +46,10 @@
- ..\packages\GleamTech.Common.6.1.1\lib\net472\GleamTech.Common.dll
+ ..\packages\GleamTech.Common.6.2.0\lib\net472\GleamTech.Common.dll
- ..\packages\GleamTech.DocumentUltimate.7.1.5\lib\net472\GleamTech.DocumentUltimate.dll
+ ..\packages\GleamTech.DocumentUltimate.7.2.0\lib\net472\GleamTech.DocumentUltimate.dll
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.ClientEvents.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.ClientEvents.cs
index 94bc427..9217680 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.ClientEvents.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.ClientEvents.cs
@@ -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 {
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Display.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Display.cs
index 5bdcecc..b52bc30 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Display.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Display.cs
@@ -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
@@ -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,
@@ -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,
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.FileProvider.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.FileProvider.cs
index 06f815d..3c1cf2a 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.FileProvider.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.FileProvider.cs
@@ -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
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Highlight.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Highlight.cs
index 488b4d1..0084252 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Highlight.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Highlight.cs
@@ -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 =
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Overview.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Overview.cs
index 4ce1ae7..6dd86fd 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Overview.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Overview.cs
@@ -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()
};
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Protection.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Protection.cs
index d4d4d2d..476e922 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Protection.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Protection.cs
@@ -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
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.UsingLayout.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.UsingLayout.cs
index 67ec684..e37b303 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.UsingLayout.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.UsingLayout.cs
@@ -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"
};
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.UsingPartial.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.UsingPartial.cs
index dc0ddbc..9769929 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.UsingPartial.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.UsingPartial.cs
@@ -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"
};
diff --git a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Watermark.cs b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Watermark.cs
index 3b0a503..5157de9 100644
--- a/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Watermark.cs
+++ b/Examples/AspNetMvcCS/Controllers/DocumentViewerController.Watermark.cs
@@ -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
diff --git a/Examples/AspNetMvcCS/Packages.config b/Examples/AspNetMvcCS/Packages.config
index f0ac9db..4bf9d94 100644
--- a/Examples/AspNetMvcCS/Packages.config
+++ b/Examples/AspNetMvcCS/Packages.config
@@ -4,6 +4,6 @@
-
-
+
+
\ No newline at end of file
diff --git a/Examples/AspNetMvcVB/AspNetMvcVB.vbproj b/Examples/AspNetMvcVB/AspNetMvcVB.vbproj
index eefab78..ee5dc4f 100644
--- a/Examples/AspNetMvcVB/AspNetMvcVB.vbproj
+++ b/Examples/AspNetMvcVB/AspNetMvcVB.vbproj
@@ -48,10 +48,10 @@
- ..\packages\GleamTech.Common.6.1.1\lib\net472\GleamTech.Common.dll
+ ..\packages\GleamTech.Common.6.2.0\lib\net472\GleamTech.Common.dll
- ..\packages\GleamTech.DocumentUltimate.7.1.5\lib\net472\GleamTech.DocumentUltimate.dll
+ ..\packages\GleamTech.DocumentUltimate.7.2.0\lib\net472\GleamTech.DocumentUltimate.dll
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.ClientEvents.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.ClientEvents.vb
index ac1df94..9fc8853 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.ClientEvents.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.ClientEvents.vb
@@ -14,8 +14,8 @@ Namespace Controllers
ViewBag.ExampleFileSelector = exampleFileSelector
Dim documentViewer = New DocumentViewer() With {
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = exampleFileSelector.SelectedFile.ToString(),
.ClientEvents = New DocumentViewerClientEvents() With {
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Display.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Display.vb
index 8053efb..513f26d 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Display.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Display.vb
@@ -9,8 +9,8 @@ Namespace Controllers
Dim documentViewer1 = New DocumentViewer With {
.Id = "documentViewer1",
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = "~/App_Data/ExampleFiles/Default.pdf",
.Hidden = True
@@ -18,8 +18,8 @@ Namespace Controllers
Dim documentViewer2 = New DocumentViewer With {
.Id = "documentViewer2",
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = "~/App_Data/ExampleFiles/Default.pdf",
.Hidden = True,
@@ -34,8 +34,8 @@ Namespace Controllers
Dim documentViewer3 = New DocumentViewer With {
.Id = "documentViewer3",
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = "~/App_Data/ExampleFiles/Default.pdf",
.Hidden = True,
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.FileProvider.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.FileProvider.vb
index 3d2386d..7faaa57 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.FileProvider.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.FileProvider.vb
@@ -11,8 +11,8 @@ Namespace Controllers
Public Function FileProvider() As ActionResult
Dim documentViewer = New DocumentViewer() With {
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = New CustomFileProvider() With {
.File = "~/App_Data/ExampleFiles/Default.docx",
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Highlight.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Highlight.vb
index 8aaf530..59a5b7f 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Highlight.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Highlight.vb
@@ -6,8 +6,8 @@ Namespace Controllers
Public Function Highlight() As ActionResult
Dim documentViewer = New DocumentViewer() With {
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = "~/App_Data/ExampleFiles/Default.doc",
.SearchOptions = New DocumentViewerSearchOptions With
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Overview.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Overview.vb
index 14d8e45..0b69d1c 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Overview.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Overview.vb
@@ -19,8 +19,8 @@ Namespace Controllers
ViewBag.ExampleFileSelector = exampleFileSelector
Dim documentViewer = New DocumentViewer() With {
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = exampleFileSelector.SelectedFile.ToString()
}
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Protection.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Protection.vb
index bcf9f1b..f3493df 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Protection.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Protection.vb
@@ -6,8 +6,8 @@ Namespace Controllers
Public Function Protection() As ActionResult
Dim documentViewer = New DocumentViewer() With {
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = "~/App_Data/ExampleFiles/Default.pdf",
.DeniedPermissions = DocumentViewerPermissions.Download _
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.UsingLayout.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.UsingLayout.vb
index 803ec86..7a15ccd 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.UsingLayout.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.UsingLayout.vb
@@ -6,8 +6,8 @@ Namespace Controllers
Public Function UsingLayout() As ActionResult
Dim documentViewer = New DocumentViewer() With {
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = "~/App_Data/ExampleFiles/Default.pdf"
}
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.UsingPartial.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.UsingPartial.vb
index 67c52ce..82a5d80 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.UsingPartial.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.UsingPartial.vb
@@ -18,8 +18,8 @@ Namespace Controllers
Private Function GetDocumentViewerModel() As DocumentViewer
Dim documentViewer = New DocumentViewer() With {
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = "~/App_Data/ExampleFiles/Default.pdf"
}
diff --git a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Watermark.vb b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Watermark.vb
index a837a3c..4ad3edd 100644
--- a/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Watermark.vb
+++ b/Examples/AspNetMvcVB/Controllers/DocumentViewerController.Watermark.vb
@@ -8,8 +8,8 @@ Namespace Controllers
Public Function Watermark() As ActionResult
Dim documentViewer = New DocumentViewer() With {
- .Width = 800,
- .Height = 600,
+ .Width = 960,
+ .Height = 720,
.Resizable = True,
.Document = "~/App_Data/ExampleFiles/Default.doc"
}
diff --git a/Examples/AspNetMvcVB/Packages.config b/Examples/AspNetMvcVB/Packages.config
index f0ac9db..4bf9d94 100644
--- a/Examples/AspNetMvcVB/Packages.config
+++ b/Examples/AspNetMvcVB/Packages.config
@@ -4,6 +4,6 @@
-
-
+
+
\ No newline at end of file
diff --git a/Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj b/Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj
index 3e646cc..7f21fb1 100644
--- a/Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj
+++ b/Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj
@@ -51,10 +51,10 @@
- ..\packages\GleamTech.Common.6.1.1\lib\net472\GleamTech.Common.dll
+ ..\packages\GleamTech.Common.6.2.0\lib\net472\GleamTech.Common.dll
- ..\packages\GleamTech.DocumentUltimate.7.1.5\lib\net472\GleamTech.DocumentUltimate.dll
+ ..\packages\GleamTech.DocumentUltimate.7.2.0\lib\net472\GleamTech.DocumentUltimate.dll
diff --git a/Examples/AspNetWebFormsCS/DocumentViewer/ClientEvents.aspx b/Examples/AspNetWebFormsCS/DocumentViewer/ClientEvents.aspx
index ba86357..c7a98ed 100644
--- a/Examples/AspNetWebFormsCS/DocumentViewer/ClientEvents.aspx
+++ b/Examples/AspNetWebFormsCS/DocumentViewer/ClientEvents.aspx
@@ -102,8 +102,8 @@
@@ -24,8 +24,8 @@