From de0a487152e602753169f535bd6bc785e6189e10 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Mon, 16 Feb 2026 20:32:07 +0100 Subject: [PATCH 1/3] =?UTF-8?q?=E2=9C=A8=20add=20context7=20ai=20chat=20wi?= =?UTF-8?q?dget=20script=20to=20the=20layout=20template?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .docfx/templates/cuemon/layout/_master.tmpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.docfx/templates/cuemon/layout/_master.tmpl b/.docfx/templates/cuemon/layout/_master.tmpl index 8f33d32df..336a8d73d 100644 --- a/.docfx/templates/cuemon/layout/_master.tmpl +++ b/.docfx/templates/cuemon/layout/_master.tmpl @@ -134,6 +134,9 @@ + + + {{/redirect_url}} \ No newline at end of file From 19feb185eb6394952107e64263b3d0922646456c Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Mon, 16 Feb 2026 20:32:36 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=90=9B=20fix=20StatisticalRegions=20t?= =?UTF-8?q?o=20return=20IEnumerable=20instead=20of=20IReadOnlyList=20(cons?= =?UTF-8?q?istency=20>=20breaking=20change)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Cuemon.Core/Globalization/World.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cuemon.Core/Globalization/World.cs b/src/Cuemon.Core/Globalization/World.cs index c6ed1eb75..eb4d150bb 100644 --- a/src/Cuemon.Core/Globalization/World.cs +++ b/src/Cuemon.Core/Globalization/World.cs @@ -48,7 +48,7 @@ public static class World /// The list includes the World region (code "001") and all geographic regions. /// The collection is immutable and cached for the lifetime of the application. /// - public static IReadOnlyList StatisticalRegions { get; } = UnM49Data.Value.Regions; + public static IEnumerable StatisticalRegions { get; } = UnM49Data.Value.Regions; /// /// Gets a region or country by its UN M.49 code. From 9daf6a2cbae52be7e41c4997afeba2ee24842665 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Tue, 17 Feb 2026 05:05:25 +0100 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=93=9D=20update=20documentation=20for?= =?UTF-8?q?=20StatisticalRegions=20to=20clarify=20return=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Cuemon.Core/Globalization/World.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Cuemon.Core/Globalization/World.cs b/src/Cuemon.Core/Globalization/World.cs index eb4d150bb..4901e2e10 100644 --- a/src/Cuemon.Core/Globalization/World.cs +++ b/src/Cuemon.Core/Globalization/World.cs @@ -43,10 +43,9 @@ public static class World /// /// Gets all UN M.49 geographic regions. /// - /// A read-only list of all instances. + /// A sequence of all instances. /// - /// The list includes the World region (code "001") and all geographic regions. - /// The collection is immutable and cached for the lifetime of the application. + /// The sequence includes the World region (code "001") and all geographic regions. /// public static IEnumerable StatisticalRegions { get; } = UnM49Data.Value.Regions;