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: +

+ +

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"; }