diff --git a/Pages/About.razor b/Pages/About.razor
index ec39ce4..d0769ab 100644
--- a/Pages/About.razor
+++ b/Pages/About.razor
@@ -1,5 +1,6 @@
@* Copyright (C) Jonathan Shull - See license file at github.com/amytho/pdf-acc-toolset *@
@page "/about"
+@using Pdf_Acc_Toolset.Services;
About
@@ -8,6 +9,8 @@
About
+
Version @Config.Version
+
Purpose
The Pdf Acc (Accessibility) Toolset is a utility for making PDFs accessible. It has a variety of tools to assist in the remediation process. Most of them deal with the tag tree. Since many operations are repetitive by nature, they are easily automated. The toolset can also help in setting basic PDF metadata. These features will expand over time to cover more parts of the accessibility process.
diff --git a/Pages/Save.razor b/Pages/Save.razor
index a292dbe..d759dbb 100644
--- a/Pages/Save.razor
+++ b/Pages/Save.razor
@@ -14,6 +14,17 @@
You can choose to run the remaining tasks or just export the file.
+
+ If you are having export errors try the below options:
+
+
+ - "Save Changes" during the import process.
+ This rewrites some of the metadata which can help if it is corrupted.
+ - Convert the PDF to v1.7 or greater. This can be done in Acrobat via the File -> Save As -> Optimized PDF. Select the latest PDF/Acrobat version.
+ - Export the PDF to a non-PDF format. Convert the new file back into a PDF with modern software.
+ - Create a blank PDF in Microsoft Word or Libre Writer. Export to a PDF. Combine this new PDF with the old PDF. Save the file. Remove the new page. This will force a conversion to a newer version.
+
+
PDF Summary
diff --git a/Services/Config.cs b/Services/Config.cs
index ccc964b..2f79b7b 100644
--- a/Services/Config.cs
+++ b/Services/Config.cs
@@ -3,7 +3,7 @@ namespace Pdf_Acc_Toolset.Services;
public static class Config
{
- public static string Version { get; set; } = "1.0.1";
+ public static string Version { get; set; } = "1.0.2";
public static string Env { get; set; } = "Development";
}