diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-29 15:41:02 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-29 15:41:02 -0400 |
commit | 9bd56a242666a040bd09b2ebbf6faa4ff473775e (patch) | |
tree | 0c6c8057376649c563672c757a173e4b0347681c /proto | |
parent | 4f1becf510956d9dfc37fff2f92719903568ecf0 (diff) | |
download | lingo2-archipelago-9bd56a242666a040bd09b2ebbf6faa4ff473775e.tar.gz lingo2-archipelago-9bd56a242666a040bd09b2ebbf6faa4ff473775e.tar.bz2 lingo2-archipelago-9bd56a242666a040bd09b2ebbf6faa4ff473775e.zip |
Change version scheme
Diffstat (limited to 'proto')
-rw-r--r-- | proto/data.proto | 8 | ||||
-rw-r--r-- | proto/human.proto | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/proto/data.proto b/proto/data.proto index 044e32c..808198e 100644 --- a/proto/data.proto +++ b/proto/data.proto | |||
@@ -93,6 +93,12 @@ message Vec3d { | |||
93 | optional double z = 3; | 93 | optional double z = 3; |
94 | } | 94 | } |
95 | 95 | ||
96 | message VersionNumber { | ||
97 | optional uint64 major = 1; | ||
98 | optional uint64 minor = 2; | ||
99 | optional uint64 patch = 3; | ||
100 | } | ||
101 | |||
96 | message ProxyIdentifier { | 102 | message ProxyIdentifier { |
97 | optional uint64 panel = 1; | 103 | optional uint64 panel = 1; |
98 | optional string answer = 2; | 104 | optional string answer = 2; |
@@ -275,7 +281,7 @@ message DoorGroup { | |||
275 | } | 281 | } |
276 | 282 | ||
277 | message AllObjects { | 283 | message AllObjects { |
278 | optional uint64 version = 15; | 284 | optional VersionNumber version = 15; |
279 | 285 | ||
280 | repeated Map maps = 7; | 286 | repeated Map maps = 7; |
281 | repeated Room rooms = 1; | 287 | repeated Room rooms = 1; |
diff --git a/proto/human.proto b/proto/human.proto index cd05191..99c1fd7 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
@@ -237,7 +237,7 @@ message HumanDoorGroups { | |||
237 | 237 | ||
238 | message HumanGlobalMetadata { | 238 | message HumanGlobalMetadata { |
239 | repeated string special_names = 1; | 239 | repeated string special_names = 1; |
240 | optional uint64 version = 2; | 240 | optional VersionNumber version = 2; |
241 | } | 241 | } |
242 | 242 | ||
243 | message IdMappings { | 243 | message IdMappings { |