diff options
| -rw-r--r-- | patchset.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/patchset.proto b/patchset.proto index 406ee3c..f7f33c0 100644 --- a/patchset.proto +++ b/patchset.proto @@ -53,6 +53,8 @@ message Patch { string comment = 22; // the git commit message (in patch form) repeated string Files = 23; // the filenames this patch changes google.protobuf.Timestamp ctime = 24; // create time of the patch + bool applied = 25; // have you applied this patch? + bool upstream = 26; // has this patch been applied upstream? } message Patches { // this is a "PATCH: [1/x]" series `autogenpb:gui:Patch` @@ -75,7 +77,6 @@ message Patchset { // `autogenpb:mars string endBranchHash = 11; // string state = 12; // the state of the patch string uuid = 13; // identify each patchset somehow - } message Patchsets { // `autogenpb:marshal` `autogenpb:gui` |
