From 4a97f1d3643595b3e8bcb16ca0bb7d875035ccff Mon Sep 17 00:00:00 2001 From: Evgenii Kozlov Date: Wed, 19 Mar 2025 00:13:17 +0100 Subject: [PATCH] DROID-3482 Protocol | Enhancement | MW 0.40.0-rc9 (#2173) --- gradle/libs.versions.toml | 2 +- protocol/src/main/proto/models.proto | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 532828e247..1846fa3055 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -middlewareVersion = "v0.40.0-rc8" +middlewareVersion = "v0.40.0-rc9" kotlinVersion = '2.0.21' kspVersion = "2.0.21-1.0.25" diff --git a/protocol/src/main/proto/models.proto b/protocol/src/main/proto/models.proto index 5d9b5f38b2..08e610e4b1 100644 --- a/protocol/src/main/proto/models.proto +++ b/protocol/src/main/proto/models.proto @@ -757,7 +757,7 @@ message SpaceObjectHeader { message ObjectType { string url = 1; // leave empty in case you want to create the new one - string name = 2; // name of objectType (can be localized for bundled types) + string name = 2; // name of objectType in singular form (can be localized for bundled types) repeated RelationLink relationLinks = 3; // cannot contain more than one Relation with the same RelationType Layout layout = 4; string iconEmoji = 5; // emoji symbol @@ -772,6 +772,7 @@ message ObjectType { bool restrictObjectCreation = 14; // restricts creating objects of this type for users int64 iconColor = 15; // color of object type icon string iconName = 16; // name of object type icon + string pluralName = 17; // name of objectType in plural form (can be localized for bundled types) enum Layout { basic = 0;