From a0fecfdec970a53bebf11cea8d8c37c53ee0fd0f Mon Sep 17 00:00:00 2001 From: Marcel Baumgartner Date: Sun, 16 Apr 2023 15:14:17 +0200 Subject: [PATCH] Update Changelog.razor --- Moonlight/Shared/Views/Changelog.razor | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/Moonlight/Shared/Views/Changelog.razor b/Moonlight/Shared/Views/Changelog.razor index ad68c1e2..521a15d3 100644 --- a/Moonlight/Shared/Views/Changelog.razor +++ b/Moonlight/Shared/Views/Changelog.razor @@ -1,11 +1,25 @@ @page "/changelog" @{ - List changelog = new List() + List changelog = new List { - new[] {"title", "body1", "body2"}, - new[] {"title2", "body3", "body4", "body5"}, + new[] + { + "Patch 1, 16.04.2023", + "Loading messages have been implemented", + "Default subscription config has been implemented", + "Blazor hub has been optimized for large amount of users", + "Backup error handling improved", + "Client side javascript sorted", + "Sorted user server list implemented" + }, + new[] + { + "Patch 2, 16.04.2023", + "Fixed xterm addons" + } }; + int i = 0; }