From 6a1541c132277af7c905a83ccd9d825fc88c1587 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 21 Aug 2025 22:35:17 -0500 Subject: switch to namespace fix send patches --- patchset.proto | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'patchset.proto') diff --git a/patchset.proto b/patchset.proto index f400ed8..96f20ea 100644 --- a/patchset.proto +++ b/patchset.proto @@ -30,7 +30,7 @@ import "google/protobuf/timestamp.proto"; // Import the well-known type for Time // git log -1 --format="%H %aI %cI %an %ae %cn %ce" message Patch { - string repoNamespace = 1; // the base repo git URL + string namespace = 1; // the base repo git namespace bytes data = 2; // the raw data of the whole patch string gH = 3; // after some deliberation, I think I'll just try variable names string gT = 4; @@ -58,9 +58,10 @@ message Patch { bool upstream = 26; // has this patch been applied upstream? } -message Patches { // this is a "PATCH: [1/x]" series `autogenpb:gui:Patch` - string uuid = 1; // `autogenpb:uuid:be926ad9-1111-484c-adf2-d96eeabf3079` - string version = 2; // `autogenpb:version:v0.0.45` +// this is a "PATCH: [1/x]" series +message Patches { // `autogenpb:marshal` `autogenpb:gui:Patch` + string uuid = 1; // `autogenpb:uuid:2679065e-c81d-4a00-aca4-03c158a834fb` + string version = 2; // `autogenpb:version:v2.0.0` repeated Patch Patches = 3; } -- cgit v1.2.3