Files
kua-agent 6610acfa44 feat: rebrand to MMD PDF, single corporate theme, and remove original text under an edit
- Services/PdfRedactText.cs: strip text whose origin falls inside a CoverAnnotation
  from the page content stream at save time, hooked into PdfBurn.DrawAnnotationsIntoDoc.
  Fixes edited values staying recoverable by text extraction.
- Themes/MMD.xaml replaces all thirteen themes; picker and accent strip removed; no dark mode.
- Rename KillerPDF -> MMD PDF across code, resources, packaging and locale strings; new icon.
- Remove the upstream author credit and the in-app install button.
2026-08-27 07:37:09 +02:00

18 lines
671 B
C#

namespace MmdPdf
{
/// <summary>
/// Build-time constants written or verified by release.ps1.
/// </summary>
internal static class BuildInfo
{
/// <summary>
/// SHA256 of pdfium.dll (original bytes, before Costura compression).
/// Updated by release.ps1 immediately before each build.
/// All-zeros means the check is disabled (dev / SkipSign builds).
/// </summary>
internal const string PdfiumSha256 = "BCA96944D731DD72877116D3472083C847FE307FC58CA39BCE16CBE998C478F1";
internal const string PdfiumSha256Disabled = "0000000000000000000000000000000000000000000000000000000000000000";
}
}