From e4c37c5d5dc734fb94149af4a6273f35f818bdca Mon Sep 17 00:00:00 2001 From: yuuko Date: Sun, 24 Nov 2024 00:49:25 -0800 Subject: chore: rework depotdownloader patches for 2.7 --- .../0001-emit-json-in-.DepotDownload.patch | 51 ---------------------- 1 file changed, 51 deletions(-) delete mode 100644 srcds-pkgs/depotdownloader-json/0001-emit-json-in-.DepotDownload.patch (limited to 'srcds-pkgs/depotdownloader-json/0001-emit-json-in-.DepotDownload.patch') diff --git a/srcds-pkgs/depotdownloader-json/0001-emit-json-in-.DepotDownload.patch b/srcds-pkgs/depotdownloader-json/0001-emit-json-in-.DepotDownload.patch deleted file mode 100644 index 6a58ac6..0000000 --- a/srcds-pkgs/depotdownloader-json/0001-emit-json-in-.DepotDownload.patch +++ /dev/null @@ -1,51 +0,0 @@ -From 5ca2011ef9c6463c6e5953101792b663b6546373 Mon Sep 17 00:00:00 2001 -From: yuuko -Date: Fri, 31 Mar 2023 16:03:32 -0700 -Subject: [PATCH] emit json in .DepotDownload - ---- - DepotDownloader/ContentDownloader.cs | 1 + - DepotDownloader/ProtoManifest.cs | 8 ++++++++ - 2 files changed, 9 insertions(+) - -diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs -index 7cee83f7..3bf79aa5 100644 ---- a/DepotDownloader/ContentDownloader.cs -+++ b/DepotDownloader/ContentDownloader.cs -@@ -929,6 +929,7 @@ namespace DepotDownloader - - newProtoManifest = new ProtoManifest(depotManifest, depot.manifestId); - newProtoManifest.SaveToFile(newManifestFileName, out checksum); -+ newProtoManifest.SaveToJSON(newManifestFileName.Replace(".bin", ".json")); - File.WriteAllBytes(newManifestFileName + ".sha", checksum); - - Console.WriteLine(" Done!"); -diff --git a/DepotDownloader/ProtoManifest.cs b/DepotDownloader/ProtoManifest.cs -index 70389a05..c5e12cfc 100644 ---- a/DepotDownloader/ProtoManifest.cs -+++ b/DepotDownloader/ProtoManifest.cs -@@ -2,6 +2,8 @@ - using System.Collections.Generic; - using System.IO; - using System.IO.Compression; -+using System.Text; -+using System.Text.Json; - using ProtoBuf; - using SteamKit2; - -@@ -142,6 +144,12 @@ namespace DepotDownloader - } - } - -+ public void SaveToJSON(string filename) -+ { -+ var jsonBytes = new UTF8Encoding(true).GetBytes(JsonSerializer.Serialize(this)); -+ File.Open(filename, FileMode.Create).Write(jsonBytes, 0, jsonBytes.Length); -+ } -+ - public void SaveToFile(string filename, out byte[] checksum) - { - using (var ms = new MemoryStream()) --- -2.38.4 - -- cgit v1.2.3