From 973d1ed4a7304732d1f3d1f20ba597a34fe9d3a1 Mon Sep 17 00:00:00 2001 From: James Boehme Date: Sun, 9 Aug 2026 20:57:27 -0600 Subject: [PATCH 1/3] fix: repair break introduced by C# 14 --- client/data/Methods/Hardware.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/data/Methods/Hardware.cs b/client/data/Methods/Hardware.cs index 6bc19e7..73a1d56 100644 --- a/client/data/Methods/Hardware.cs +++ b/client/data/Methods/Hardware.cs @@ -1212,7 +1212,7 @@ private unsafe static SmartAttribute MakeNvmeAttribute(byte* attr, byte id, stri byte[] attrReversedArray = attrSpan.ToArray(); // byte[].Reverse() returns and IEnumerable which must be further casted into an array, leaving us with a big endian byte array. - var attrArray = attrReversedArray.Reverse().ToArray(); + var attrArray = Enumerable.Reverse(attrReversedArray).ToArray(); // Convert the byte array to a string and remove the extraneous dashes. var attrString = BitConverter.ToString(attrArray).Replace("-", string.Empty); From eb7742671157b677fe86adb575e34f736a92293d Mon Sep 17 00:00:00 2001 From: James Boehme Date: Mon, 10 Aug 2026 17:18:20 -0600 Subject: [PATCH 2/3] build: lock C# version to 15.0 --- client/specify_client.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/specify_client.csproj b/client/specify_client.csproj index d69ae3f..ee652c3 100644 --- a/client/specify_client.csproj +++ b/client/specify_client.csproj @@ -18,7 +18,7 @@ false specify_client.App specify-client-favicon.ico - latest + 15.0 From 7b01d9d514ba5ad005cc95085bd619cacff647c3 Mon Sep 17 00:00:00 2001 From: James Boehme Date: Mon, 10 Aug 2026 17:18:20 -0600 Subject: [PATCH 3/3] build: lock C# version to 14.0 --- client/specify_client.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/specify_client.csproj b/client/specify_client.csproj index d69ae3f..95e7625 100644 --- a/client/specify_client.csproj +++ b/client/specify_client.csproj @@ -18,7 +18,7 @@ false specify_client.App specify-client-favicon.ico - latest + 14.0