From 376c6674989e67d1391f1a8230bca101818803aa Mon Sep 17 00:00:00 2001 From: Robert Brands Date: Mon, 18 Nov 2024 15:30:29 +0100 Subject: [PATCH] Users/rbrands/2024 01 24 (#143) * Json decoration fixed * Version update * Federation attribute fixed * Tem * Version update for .NET 6/7 --------- Co-authored-by: Robert Brands (RiwaAdmin) --- MeetUpFunctions/Constants.cs | 2 +- MeetUpPlanner/Client/MeetUpPlanner.Client.csproj | 14 +++++++------- MeetUpPlanner/Client/Pages/About.razor | 7 ++++--- MeetUpPlanner/Client/Pages/Index.razor | 3 ++- MeetUpPlanner/Server/Controllers/UtilController.cs | 2 +- MeetUpPlanner/Server/MeetUpPlanner.Server.csproj | 4 ++-- MeetUpPlanner/Shared/CalendarItem.cs | 2 +- MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj | 2 +- MeetUpPlanner/Shared/Participant.cs | 2 +- 9 files changed, 20 insertions(+), 18 deletions(-) diff --git a/MeetUpFunctions/Constants.cs b/MeetUpFunctions/Constants.cs index a48942f..cbf5323 100644 --- a/MeetUpFunctions/Constants.cs +++ b/MeetUpFunctions/Constants.cs @@ -22,7 +22,7 @@ public static class Constants public const string DEFAULT_DISCLAIMER = "Disclaimer"; public const string DEFAULT_GUEST_DISCLAIMER = "Guest Disclaimer"; - public const string VERSION = "2024-01-24"; + public const string VERSION = "2024-11-28"; public const int ADMINOVERBOOKFACTOR = 1; // no overbooking any more, because not needed public const int LOG_TTL = 30 * 24 * 3600; // 30 days TTL for Log items diff --git a/MeetUpPlanner/Client/MeetUpPlanner.Client.csproj b/MeetUpPlanner/Client/MeetUpPlanner.Client.csproj index 537c7a4..45dc499 100644 --- a/MeetUpPlanner/Client/MeetUpPlanner.Client.csproj +++ b/MeetUpPlanner/Client/MeetUpPlanner.Client.csproj @@ -6,16 +6,16 @@ - + - + - - - - - + + + + + diff --git a/MeetUpPlanner/Client/Pages/About.razor b/MeetUpPlanner/Client/Pages/About.razor index dde24b1..ad1b31d 100644 --- a/MeetUpPlanner/Client/Pages/About.razor +++ b/MeetUpPlanner/Client/Pages/About.razor @@ -8,8 +8,9 @@

- Diese kleine Anwendung habe ich in den "Corona"-Zeiten entwickelt, damit Radausfahrten so organisiert werden können, dass - die Teilnehmer sich registrieren können und alle Kontakte nachvollziehbar sind. + Diese kleine Anwendung habe ich ursprünglich in den "Corona"-Zeiten entwickelt, damit Radausfahrten so organisiert werden können, dass + die Teilnehmer sich registrieren können und alle Kontakte nachvollziehbar sind. Aber darüberhinaus hat sich der MeetUpPlanner als nützliches Tool + für die Verabredung von Ausfahrten oder anderen Aktivitäten bewährt.

Folgende Ziele habe ich mir für die App gesetzt: @@ -51,7 +52,7 @@

@code { - private const string clientVersion = "2024-01-24"; + private const string clientVersion = "2024-11-18"; private string serverVersion = "tbd"; private string functionsVersion = "tbd"; diff --git a/MeetUpPlanner/Client/Pages/Index.razor b/MeetUpPlanner/Client/Pages/Index.razor index 9cd661c..99c13db 100644 --- a/MeetUpPlanner/Client/Pages/Index.razor +++ b/MeetUpPlanner/Client/Pages/Index.razor @@ -46,7 +46,8 @@
- Zur eindeutigen Nachverfolgbarkeit bitte Vor- und Nachname eingeben. In der Teilnehmerliste der Ausfahrten werden nur die Vornamen angezeigt. + Zur Anmeldung und eventuelle Rückfragen bitte Vor- und Nachname eingeben. Der Name wird zunächst nur hier im Browser lokal gespeichert und erst bei der Anmeldung + zu einer Ausfahrt zentral auf dem Server gespeichert. In der Teilnehmerliste der Ausfahrten werden nur die Vornamen und der abgekürzte Nachname angezeigt.
diff --git a/MeetUpPlanner/Server/Controllers/UtilController.cs b/MeetUpPlanner/Server/Controllers/UtilController.cs index 1247f7e..3c5d594 100644 --- a/MeetUpPlanner/Server/Controllers/UtilController.cs +++ b/MeetUpPlanner/Server/Controllers/UtilController.cs @@ -20,7 +20,7 @@ public class UtilController : ControllerBase { private readonly MeetUpFunctions _meetUpFunctions; private readonly ILogger logger; - const string serverVersion = "2024-01-24"; + const string serverVersion = "2024-11-18"; string functionsVersion = "tbd"; public UtilController(ILogger logger, MeetUpFunctions meetUpFunctions) diff --git a/MeetUpPlanner/Server/MeetUpPlanner.Server.csproj b/MeetUpPlanner/Server/MeetUpPlanner.Server.csproj index 49ac7ab..d5bb2c8 100644 --- a/MeetUpPlanner/Server/MeetUpPlanner.Server.csproj +++ b/MeetUpPlanner/Server/MeetUpPlanner.Server.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/MeetUpPlanner/Shared/CalendarItem.cs b/MeetUpPlanner/Shared/CalendarItem.cs index eeb3daa..b2e2b0f 100644 --- a/MeetUpPlanner/Shared/CalendarItem.cs +++ b/MeetUpPlanner/Shared/CalendarItem.cs @@ -26,7 +26,7 @@ public class CalendarItem : CosmosDBEntity public string HostFirstName { get; set; } [JsonProperty(PropertyName = "hostLastName", NullValueHandling = NullValueHandling.Ignore), MaxLength(100), Required(ErrorMessage = "Gastgeber bitte eingeben.")] public string HostLastName { get; set; } - [JsonProperty(PropertyName = "hostAddressName", NullValueHandling = NullValueHandling.Ignore), MaxLength(100)] + [JsonProperty(PropertyName = "hostAdressInfo", NullValueHandling = NullValueHandling.Ignore), MaxLength(100)] public string HostAdressInfo { get; set; } [JsonProperty(PropertyName = "withoutHost")] public Boolean WithoutHost { get; set; } = false; diff --git a/MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj b/MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj index 151ff75..a03ca61 100644 --- a/MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj +++ b/MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj @@ -6,7 +6,7 @@ - + diff --git a/MeetUpPlanner/Shared/Participant.cs b/MeetUpPlanner/Shared/Participant.cs index a0b4b6c..6d1bf06 100644 --- a/MeetUpPlanner/Shared/Participant.cs +++ b/MeetUpPlanner/Shared/Participant.cs @@ -28,7 +28,7 @@ public class Participant : CosmosDBEntity public Boolean IsWaiting { get; set; } = false; [JsonProperty(PropertyName = "isCoGuide")] public Boolean IsCoGuide { get; set; } = false; - [JsonProperty(PropertyName = "federaton")] + [JsonProperty(PropertyName = "federation")] public string Federation { get; set; } public Participant()