summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-15 19:43:55 -0500
committerJeff Carr <[email protected]>2025-10-15 19:43:55 -0500
commit5e6c01dd9a7b3b8a659fa8f2cc82b7613afd029c (patch)
treec9ad9e502887ed41c245c050acf6ac7c068ff545
parentfcd8b4cb38a30e38faa8c7a7941c73aa55698fb7 (diff)
never try to use a 0 ENUM
-rw-r--r--forgeConfig.proto13
1 files changed, 7 insertions, 6 deletions
diff --git a/forgeConfig.proto b/forgeConfig.proto
index 6328d7d..8bd7325 100644
--- a/forgeConfig.proto
+++ b/forgeConfig.proto
@@ -38,12 +38,13 @@ message ForgeConfig { // `autogenpb:nom
}
enum ForgeMode {
- NEWUSER = 0; //
- MASTER = 1; // "release mode"
- DEVEL = 2; // "patch mode"
- USER = 3; // "work mode"
- NORMAL = 4; // "normal mode" // use this when you are developing code
- CLEAN = 5; // indicates "clean" was run
+ UNKNOWN = 0; //
+ NEWUSER = 1; //
+ MASTER = 2; // "release mode"
+ DEVEL = 3; // "patch mode"
+ USER = 4; // "work mode"
+ NORMAL = 5; // "normal mode" // use this when you are developing code
+ CLEAN = 6; // indicates "clean" was run
}
message ForgeConfigs { // `autogenpb:marshal` `autogenpb:nomutex`