From fee205037f3ec87bd951b7114c0189e31bd16160 Mon Sep 17 00:00:00 2001 From: Simon Brown Date: Thu, 19 Mar 2020 09:42:16 +0000 Subject: [PATCH] Added a 16:10 ratio paper size. --- Structurizr.Core/View/PaperSize.cs | 1 + docs/changelog.md | 1 + 2 files changed, 2 insertions(+) diff --git a/Structurizr.Core/View/PaperSize.cs b/Structurizr.Core/View/PaperSize.cs index 5e7c02c..14c476e 100644 --- a/Structurizr.Core/View/PaperSize.cs +++ b/Structurizr.Core/View/PaperSize.cs @@ -37,6 +37,7 @@ public class PaperSize public static readonly PaperSize Slide_4_3 = new PaperSize("Slide_4_3", "Slide 4:3", Orientation.Landscape, 3306, 2480); public static readonly PaperSize Slide_16_9 = new PaperSize("Slide_16_9", "Slide 16:9", Orientation.Landscape, 3508, 1973); + public static readonly PaperSize Slide_16_10 = new PaperSize("Slide_16_10", "Slide 16:10", Orientation.Landscape, 3508, 2193); public string Key { get; } public String Name { get; } diff --git a/docs/changelog.md b/docs/changelog.md index a2ecfef..ea1b650 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,7 @@ ## 0.9.7 (unreleased) - Added an ExternalSoftwareSystemBoundariesVisible property to ContainerView, to set whether software system boundaries should be visible for "external" containers (those outside the software system in scope). +- Added a 16:10 ratio paper size. ## 0.9.6 (29th February 2020)